]> git.proxmox.com Git - mirror_ovs.git/blame - ovsdb/server.h
json: Move from lib to include/openvswitch.
[mirror_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
ee89ea7b 19#include "openvswitch/hmap.h"
b19bab5b 20#include "openvswitch/list.h"
ee89ea7b 21#include "openvswitch/shash.h"
b4e8d170
BP
22
23struct ovsdb;
24struct ovsdb_server;
e317253b
BP
25
26/* Abstract representation of an OVSDB client connection, not tied to any
27 * particular network protocol. Protocol implementations
28 * (e.g. jsonrpc-server.c) embed this in a larger data structure. */
29struct ovsdb_session {
b4e8d170 30 struct ovsdb_server *server;
ca6ba700 31 struct ovs_list completions;/* Completed triggers. */
da897f41 32 struct hmap waiters; /* "ovsdb_lock_waiter *"s by lock name. */
e317253b
BP
33};
34
b4e8d170 35void ovsdb_session_init(struct ovsdb_session *, struct ovsdb_server *);
e317253b
BP
36void ovsdb_session_destroy(struct ovsdb_session *);
37
da897f41
BP
38struct ovsdb_lock_waiter *ovsdb_session_get_lock_waiter(
39 const struct ovsdb_session *, const char *lock_name);
40
41/* A database lock.
42 *
43 * A lock always has one or more "lock waiters" kept on a list. The waiter at
44 * the head of the list owns the lock. */
45struct ovsdb_lock {
6e492d81 46 struct hmap_node hmap_node; /* In ovsdb_server's "locks" hmap. */
da897f41
BP
47 struct ovsdb_server *server; /* The containing server. */
48 char *name; /* Unique name. */
ca6ba700 49 struct ovs_list waiters; /* Contains "struct ovsdb_lock_waiter"s. */
da897f41
BP
50};
51
52struct ovsdb_lock_waiter *ovsdb_lock_get_owner(const struct ovsdb_lock *);
53
54/* How to obtain a lock. */
55enum ovsdb_lock_mode {
56 OVSDB_LOCK_WAIT, /* By waiting for it to become available. */
57 OVSDB_LOCK_STEAL /* By stealing it from the owner. */
58};
59
60/* A session's request for a database lock. */
61struct ovsdb_lock_waiter {
6e492d81
BP
62 struct hmap_node session_node; /* In ->session->locks's hmap. */
63 struct ovsdb_lock *lock; /* The lock being waited for. */
64
da897f41
BP
65 enum ovsdb_lock_mode mode;
66 char *lock_name;
67
da897f41 68 struct ovsdb_session *session;
ca6ba700 69 struct ovs_list lock_node; /* In ->lock->waiters's list. */
da897f41
BP
70};
71
72struct ovsdb_session *ovsdb_lock_waiter_remove(struct ovsdb_lock_waiter *);
73void ovsdb_lock_waiter_destroy(struct ovsdb_lock_waiter *);
74bool ovsdb_lock_waiter_is_owner(const struct ovsdb_lock_waiter *);
75
e317253b
BP
76/* Abstract representation of an OVSDB server not tied to any particular
77 * network protocol. Protocol implementations (e.g. jsonrpc-server.c) embed
78 * this in a larger data structure. */
79struct ovsdb_server {
b4e8d170 80 struct shash dbs; /* Maps from a db name to a "struct ovsdb *". */
da897f41 81 struct hmap locks; /* Contains "struct ovsdb_lock"s indexed by name. */
e317253b
BP
82};
83
b4e8d170
BP
84void ovsdb_server_init(struct ovsdb_server *);
85bool ovsdb_server_add_db(struct ovsdb_server *, struct ovsdb *);
0a3b723b 86bool ovsdb_server_remove_db(struct ovsdb_server *, struct ovsdb *);
e317253b
BP
87void ovsdb_server_destroy(struct ovsdb_server *);
88
da897f41
BP
89struct ovsdb_lock_waiter *ovsdb_server_lock(struct ovsdb_server *,
90 struct ovsdb_session *,
91 const char *lock_name,
92 enum ovsdb_lock_mode,
93 struct ovsdb_session **victimp);
94
e317253b 95#endif /* ovsdb/server.h */