]> git.proxmox.com Git - mirror_ovs.git/blame - lib/rconn.h
dpif-netdev: Reorder elements in dp_netdev_port structure.
[mirror_ovs.git] / lib / rconn.h
CommitLineData
064af421 1/*
f33368ee 2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2015 Nicira, Inc.
064af421 3 *
a14bc59f
BP
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
064af421 7 *
a14bc59f
BP
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
064af421
BP
15 */
16
17#ifndef RCONN_H
18#define RCONN_H 1
19
064af421
BP
20#include <stdbool.h>
21#include <stdint.h>
22#include <time.h>
dbba996b 23#include "openvswitch/types.h"
a3d1ff00 24#include "ovs-thread.h"
064af421
BP
25
26/* A wrapper around vconn that provides queuing and optionally reliability.
27 *
28 * An rconn maintains a message transmission queue of bounded length specified
29 * by the caller. The rconn does not guarantee reliable delivery of
30 * queued messages: all queued messages are dropped when reconnection becomes
31 * necessary.
32 *
33 * An rconn optionally provides reliable communication, in this sense: the
34 * rconn will re-connect, with exponential backoff, when the underlying vconn
35 * disconnects.
9f5e8906
BP
36 *
37 *
38 * Thread-safety
39 * =============
40 *
41 * Fully thread-safe.
064af421
BP
42 */
43
44struct vconn;
45struct rconn_packet_counter;
46
f125905c 47struct rconn *rconn_create(int inactivity_probe_interval,
6042457b
SH
48 int max_backoff, uint8_t dscp,
49 uint32_t allowed_versions);
f125905c 50void rconn_set_dscp(struct rconn *rc, uint8_t dscp);
e182670b 51uint32_t rconn_get_allowed_versions(const struct rconn *);
0442efd9 52uint8_t rconn_get_dscp(const struct rconn *rc);
064af421
BP
53void rconn_set_max_backoff(struct rconn *, int max_backoff);
54int rconn_get_max_backoff(const struct rconn *);
55void rconn_set_probe_interval(struct rconn *, int inactivity_probe_interval);
56int rconn_get_probe_interval(const struct rconn *);
57
eb15cdbb
BP
58void rconn_connect(struct rconn *, const char *target, const char *name);
59void rconn_connect_unreliably(struct rconn *,
60 struct vconn *, const char *name);
064af421
BP
61void rconn_reconnect(struct rconn *);
62void rconn_disconnect(struct rconn *);
63void rconn_destroy(struct rconn *);
64
65void rconn_run(struct rconn *);
66void rconn_run_wait(struct rconn *);
67struct ofpbuf *rconn_recv(struct rconn *);
68void rconn_recv_wait(struct rconn *);
69int rconn_send(struct rconn *, struct ofpbuf *, struct rconn_packet_counter *);
70int rconn_send_with_limit(struct rconn *, struct ofpbuf *,
71 struct rconn_packet_counter *, int queue_limit);
064af421
BP
72
73void rconn_add_monitor(struct rconn *, struct vconn *);
74
75const char *rconn_get_name(const struct rconn *);
eb15cdbb
BP
76void rconn_set_name(struct rconn *, const char *new_name);
77const char *rconn_get_target(const struct rconn *);
78
064af421
BP
79bool rconn_is_alive(const struct rconn *);
80bool rconn_is_connected(const struct rconn *);
7778bd15 81bool rconn_is_admitted(const struct rconn *);
064af421 82int rconn_failure_duration(const struct rconn *);
064af421 83
27527aa0 84int rconn_get_version(const struct rconn *);
064af421
BP
85
86const char *rconn_get_state(const struct rconn *);
064af421 87time_t rconn_get_last_connection(const struct rconn *);
2cdcb898 88time_t rconn_get_last_disconnect(const struct rconn *);
064af421 89unsigned int rconn_get_connection_seqno(const struct rconn *);
88a20d6e 90int rconn_get_last_error(const struct rconn *);
0d085684 91unsigned int rconn_count_txqlen(const struct rconn *);
064af421 92
a6441685 93/* Counts packets and bytes queued into an rconn by a given source. */
064af421 94struct rconn_packet_counter {
a3d1ff00
BP
95 struct ovs_mutex mutex;
96 unsigned int n_packets OVS_GUARDED; /* Number of packets queued. */
97 unsigned int n_bytes OVS_GUARDED; /* Number of bytes queued. */
98 int ref_cnt OVS_GUARDED; /* Number of owners. */
064af421
BP
99};
100
101struct rconn_packet_counter *rconn_packet_counter_create(void);
102void rconn_packet_counter_destroy(struct rconn_packet_counter *);
a6441685
BP
103void rconn_packet_counter_inc(struct rconn_packet_counter *, unsigned n_bytes);
104void rconn_packet_counter_dec(struct rconn_packet_counter *, unsigned n_bytes);
064af421 105
a3d1ff00
BP
106unsigned int rconn_packet_counter_n_packets(
107 const struct rconn_packet_counter *);
108unsigned int rconn_packet_counter_n_bytes(const struct rconn_packet_counter *);
109
064af421 110#endif /* rconn.h */