ovn: Make it possible for CMS to detect when the OVN system is up-to-date.
[cascardo/ovs.git] / ovn / controller / ofctrl.h
1 /* Copyright (c) 2015, 2016 Nicira, Inc.
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
17 #ifndef OFCTRL_H
18 #define OFCTRL_H 1
19
20 #include <stdint.h>
21
22 #include "openvswitch/meta-flow.h"
23 #include "ovsdb-idl.h"
24
25 struct controller_ctx;
26 struct hmap;
27 struct match;
28 struct ofpbuf;
29 struct ovsrec_bridge;
30 struct group_table;
31
32 /* Interface for OVN main loop. */
33 void ofctrl_init(void);
34 enum mf_field_id ofctrl_run(const struct ovsrec_bridge *br_int);
35 void ofctrl_put(struct group_table *group_table, int64_t nb_cfg);
36 void ofctrl_wait(void);
37 void ofctrl_destroy(void);
38 int64_t ofctrl_get_cur_cfg(void);
39
40 struct ovn_flow *ofctrl_dup_flow(struct ovn_flow *source);
41
42 /* Flow table interfaces to the rest of ovn-controller. */
43 void ofctrl_add_flow(uint8_t table_id, uint16_t priority,
44                      const struct match *, const struct ofpbuf *ofpacts,
45                      const struct uuid *uuid);
46
47 void ofctrl_remove_flows(const struct uuid *uuid);
48
49 void ofctrl_set_flow(uint8_t table_id, uint16_t priority,
50                      const struct match *, const struct ofpbuf *ofpacts,
51                      const struct uuid *uuid);
52
53 void ofctrl_flow_table_clear(void);
54
55 void ovn_flow_table_clear(void);
56
57 #endif /* ovn/ofctrl.h */