mirror of
https://github.com/openvswitch/ovs
synced 2025-10-17 14:28:02 +00:00
This provides clients a way to coordinate their access to the database. This is a voluntary, not mandatory, locking protocols, that is, clients are not prevented from modifying the database unless they cooperate with the locking protocol. It is also not related to any of the ACID properties of database transactions. It is strictly a way for clients to coordinate among themselves. The following commit will introduce one user.
130 lines
3.3 KiB
C
130 lines
3.3 KiB
C
/* Copyright (c) 2009, 2010, 2011 Nicira Networks
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at:
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "trigger.h"
|
|
|
|
#include <assert.h>
|
|
#include <limits.h>
|
|
|
|
#include "json.h"
|
|
#include "jsonrpc.h"
|
|
#include "ovsdb.h"
|
|
#include "poll-loop.h"
|
|
#include "server.h"
|
|
|
|
static bool ovsdb_trigger_try(struct ovsdb_trigger *, long long int now);
|
|
static void ovsdb_trigger_complete(struct ovsdb_trigger *);
|
|
|
|
void
|
|
ovsdb_trigger_init(struct ovsdb_session *session,
|
|
struct ovsdb_trigger *trigger,
|
|
struct json *request, long long int now)
|
|
{
|
|
trigger->session = session;
|
|
list_push_back(&trigger->session->db->triggers, &trigger->node);
|
|
trigger->request = request;
|
|
trigger->result = NULL;
|
|
trigger->created = now;
|
|
trigger->timeout_msec = LLONG_MAX;
|
|
ovsdb_trigger_try(trigger, now);
|
|
}
|
|
|
|
void
|
|
ovsdb_trigger_destroy(struct ovsdb_trigger *trigger)
|
|
{
|
|
list_remove(&trigger->node);
|
|
json_destroy(trigger->request);
|
|
json_destroy(trigger->result);
|
|
}
|
|
|
|
bool
|
|
ovsdb_trigger_is_complete(const struct ovsdb_trigger *trigger)
|
|
{
|
|
return trigger->result != NULL;
|
|
}
|
|
|
|
struct json *
|
|
ovsdb_trigger_steal_result(struct ovsdb_trigger *trigger)
|
|
{
|
|
struct json *result = trigger->result;
|
|
trigger->result = NULL;
|
|
return result;
|
|
}
|
|
|
|
void
|
|
ovsdb_trigger_run(struct ovsdb *db, long long int now)
|
|
{
|
|
struct ovsdb_trigger *t, *next;
|
|
bool run_triggers;
|
|
|
|
run_triggers = db->run_triggers;
|
|
db->run_triggers = false;
|
|
LIST_FOR_EACH_SAFE (t, next, node, &db->triggers) {
|
|
if (run_triggers || now - t->created >= t->timeout_msec) {
|
|
ovsdb_trigger_try(t, now);
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ovsdb_trigger_wait(struct ovsdb *db, long long int now)
|
|
{
|
|
if (db->run_triggers) {
|
|
poll_immediate_wake();
|
|
} else {
|
|
long long int deadline = LLONG_MAX;
|
|
struct ovsdb_trigger *t;
|
|
|
|
LIST_FOR_EACH (t, node, &db->triggers) {
|
|
if (t->created < LLONG_MAX - t->timeout_msec) {
|
|
long long int t_deadline = t->created + t->timeout_msec;
|
|
if (deadline > t_deadline) {
|
|
deadline = t_deadline;
|
|
if (now >= deadline) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (deadline < LLONG_MAX) {
|
|
poll_timer_wait_until(deadline);
|
|
}
|
|
}
|
|
}
|
|
|
|
static bool
|
|
ovsdb_trigger_try(struct ovsdb_trigger *t, long long int now)
|
|
{
|
|
t->result = ovsdb_execute(t->session->db, t->session,
|
|
t->request, now - t->created, &t->timeout_msec);
|
|
if (t->result) {
|
|
ovsdb_trigger_complete(t);
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
static void
|
|
ovsdb_trigger_complete(struct ovsdb_trigger *t)
|
|
{
|
|
assert(t->result != NULL);
|
|
list_remove(&t->node);
|
|
list_push_back(&t->session->completions, &t->node);
|
|
}
|