49b95b0fd4b3c793e1e95fcb042287c13892874a
[cascardo/ovs.git] / ovn / controller / ofctrl.h
1 /* Copyright (c) 2015 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);
36 void ofctrl_wait(void);
37 void ofctrl_destroy(void);
38
39 struct ovn_flow *ofctrl_dup_flow(struct ovn_flow *source);
40
41 /* Flow table interfaces to the rest of ovn-controller. */
42 void ofctrl_add_flow(uint8_t table_id, uint16_t priority,
43                      const struct match *, const struct ofpbuf *ofpacts,
44                      const struct uuid *uuid);
45
46 void ofctrl_remove_flows(const struct uuid *uuid);
47
48 void ofctrl_set_flow(uint8_t table_id, uint16_t priority,
49                      const struct match *, const struct ofpbuf *ofpacts,
50                      const struct uuid *uuid);
51
52 void ofctrl_flow_table_clear(void);
53
54 void ovn_flow_table_clear(void);
55
56 #endif /* ovn/ofctrl.h */