7053390b7c73884c121a07339b78c158fc607115
[vpp.git] / src / vpp-api / vom / arp_proxy_binding.cpp
1 /*
2  * Copyright (c) 2017 Cisco and/or its affiliates.
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 #include "vom/arp_proxy_binding.hpp"
17 #include "vom/arp_proxy_binding_cmds.hpp"
18
19 namespace VOM {
20
21 /**
22  * A DB of all ARP proxy bindings configs
23  */
24 singular_db<interface::key_t, arp_proxy_binding> arp_proxy_binding::m_db;
25
26 arp_proxy_binding::event_handler arp_proxy_binding::m_evh;
27
28 arp_proxy_binding::arp_proxy_binding(const interface& itf,
29                                      const arp_proxy_config& proxy_cfg)
30   : m_itf(itf.singular())
31   , m_arp_proxy_cfg(proxy_cfg.singular())
32   , m_binding(true)
33 {
34 }
35
36 arp_proxy_binding::arp_proxy_binding(const arp_proxy_binding& o)
37   : m_itf(o.m_itf)
38   , m_arp_proxy_cfg(o.m_arp_proxy_cfg)
39   , m_binding(o.m_binding)
40 {
41 }
42
43 arp_proxy_binding::~arp_proxy_binding()
44 {
45   sweep();
46
47   // not in the DB anymore.
48   m_db.release(m_itf->key(), this);
49 }
50
51 void
52 arp_proxy_binding::sweep()
53 {
54   if (m_binding) {
55     HW::enqueue(
56       new arp_proxy_binding_cmds::unbind_cmd(m_binding, m_itf->handle()));
57   }
58   HW::write();
59 }
60
61 void
62 arp_proxy_binding::dump(std::ostream& os)
63 {
64   m_db.dump(os);
65 }
66
67 void
68 arp_proxy_binding::replay()
69 {
70   if (m_binding) {
71     HW::enqueue(
72       new arp_proxy_binding_cmds::bind_cmd(m_binding, m_itf->handle()));
73   }
74 }
75
76 std::string
77 arp_proxy_binding::to_string() const
78 {
79   std::ostringstream s;
80   s << "ArpProxy-binding: " << m_itf->to_string();
81
82   return (s.str());
83 }
84
85 void
86 arp_proxy_binding::update(const arp_proxy_binding& desired)
87 {
88   /*
89  * the desired state is always that the interface should be created
90  */
91   if (!m_binding) {
92     HW::enqueue(
93       new arp_proxy_binding_cmds::bind_cmd(m_binding, m_itf->handle()));
94   }
95 }
96
97 std::shared_ptr<arp_proxy_binding>
98 arp_proxy_binding::find_or_add(const arp_proxy_binding& temp)
99 {
100   return (m_db.find_or_add(temp.m_itf->key(), temp));
101 }
102
103 std::shared_ptr<arp_proxy_binding>
104 arp_proxy_binding::singular() const
105 {
106   return find_or_add(*this);
107 }
108
109 arp_proxy_binding::event_handler::event_handler()
110 {
111   OM::register_listener(this);
112   inspect::register_handler({ "arp-proxy-binding" }, "ARP proxy bindings",
113                             this);
114 }
115
116 void
117 arp_proxy_binding::event_handler::handle_replay()
118 {
119   m_db.replay();
120 }
121
122 void
123 arp_proxy_binding::event_handler::handle_populate(const client_db::key_t& key)
124 {
125   // FIXME
126 }
127
128 dependency_t
129 arp_proxy_binding::event_handler::order() const
130 {
131   return (dependency_t::BINDING);
132 }
133
134 void
135 arp_proxy_binding::event_handler::show(std::ostream& os)
136 {
137   m_db.dump(os);
138 }
139 }
140 /*
141  * fd.io coding-style-patch-verification: ON
142  *
143  * Local Variables:
144  * eval: (c-set-style "mozilla")
145  * End:
146  */