]> git.proxmox.com Git - ovs.git/blame - ovsdb/server.h
Global replace of Nicira Networks.
[ovs.git] / ovsdb / server.h
CommitLineData
e0edde6f 1/* Copyright (c) 2011, 2012 Nicira, Inc.
e317253b
BP
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef SERVER_H
17#define SERVER_H 1
18
19#include "hmap.h"
20#include "list.h"
21
22/* Abstract representation of an OVSDB client connection, not tied to any
23 * particular network protocol. Protocol implementations
24 * (e.g. jsonrpc-server.c) embed this in a larger data structure. */
25struct ovsdb_session {
26 struct ovsdb *db;
27 struct list completions; /* Completed triggers. */
da897f41 28 struct hmap waiters; /* "ovsdb_lock_waiter *"s by lock name. */
e317253b
BP
29};
30
31void ovsdb_session_init(struct ovsdb_session *, struct ovsdb *);
32void ovsdb_session_destroy(struct ovsdb_session *);
33
da897f41
BP
34struct ovsdb_lock_waiter *ovsdb_session_get_lock_waiter(
35 const struct ovsdb_session *, const char *lock_name);
36
37/* A database lock.
38 *
39 * A lock always has one or more "lock waiters" kept on a list. The waiter at
40 * the head of the list owns the lock. */
41struct ovsdb_lock {
6e492d81 42 struct hmap_node hmap_node; /* In ovsdb_server's "locks" hmap. */
da897f41
BP
43 struct ovsdb_server *server; /* The containing server. */
44 char *name; /* Unique name. */
da897f41
BP
45 struct list waiters; /* Contains "struct ovsdb_lock_waiter"s. */
46};
47
48struct ovsdb_lock_waiter *ovsdb_lock_get_owner(const struct ovsdb_lock *);
49
50/* How to obtain a lock. */
51enum ovsdb_lock_mode {
52 OVSDB_LOCK_WAIT, /* By waiting for it to become available. */
53 OVSDB_LOCK_STEAL /* By stealing it from the owner. */
54};
55
56/* A session's request for a database lock. */
57struct ovsdb_lock_waiter {
6e492d81
BP
58 struct hmap_node session_node; /* In ->session->locks's hmap. */
59 struct ovsdb_lock *lock; /* The lock being waited for. */
60
da897f41
BP
61 enum ovsdb_lock_mode mode;
62 char *lock_name;
63
da897f41 64 struct ovsdb_session *session;
6e492d81 65 struct list lock_node; /* In ->lock->waiters's list. */
da897f41
BP
66};
67
68struct ovsdb_session *ovsdb_lock_waiter_remove(struct ovsdb_lock_waiter *);
69void ovsdb_lock_waiter_destroy(struct ovsdb_lock_waiter *);
70bool ovsdb_lock_waiter_is_owner(const struct ovsdb_lock_waiter *);
71
e317253b
BP
72/* Abstract representation of an OVSDB server not tied to any particular
73 * network protocol. Protocol implementations (e.g. jsonrpc-server.c) embed
74 * this in a larger data structure. */
75struct ovsdb_server {
76 struct ovsdb *db;
da897f41 77 struct hmap locks; /* Contains "struct ovsdb_lock"s indexed by name. */
e317253b
BP
78};
79
80void ovsdb_server_init(struct ovsdb_server *, struct ovsdb *);
81void ovsdb_server_destroy(struct ovsdb_server *);
82
da897f41
BP
83struct ovsdb_lock_waiter *ovsdb_server_lock(struct ovsdb_server *,
84 struct ovsdb_session *,
85 const char *lock_name,
86 enum ovsdb_lock_mode,
87 struct ovsdb_session **victimp);
88
e317253b 89#endif /* ovsdb/server.h */