vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / vom / arp_proxy_config.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_config.hpp"
17 #include "vom/api_types.hpp"
18 #include "vom/arp_proxy_config_cmds.hpp"
19 #include "vom/prefix.hpp"
20 #include "vom/singular_db_funcs.hpp"
21
22 namespace VOM {
23 singular_db<arp_proxy_config::key_t, arp_proxy_config> arp_proxy_config::m_db;
24
25 arp_proxy_config::event_handler arp_proxy_config::m_evh;
26
27 arp_proxy_config::arp_proxy_config(const boost::asio::ip::address_v4& low,
28                                    const boost::asio::ip::address_v4& high)
29   : m_low(low)
30   , m_high(high)
31   , m_config(true)
32 {
33 }
34
35 arp_proxy_config::arp_proxy_config(const arp_proxy_config& o)
36   : m_low(o.m_low)
37   , m_high(o.m_high)
38   , m_config(o.m_config)
39 {
40 }
41
42 arp_proxy_config::~arp_proxy_config()
43 {
44   sweep();
45
46   // not in the DB anymore.
47   m_db.release(std::make_pair(m_low, m_high), this);
48 }
49
50 void
51 arp_proxy_config::sweep()
52 {
53   if (m_config) {
54     HW::enqueue(
55       new arp_proxy_config_cmds::unconfig_cmd(m_config, m_low, m_high));
56   }
57   HW::write();
58 }
59
60 void
61 arp_proxy_config::dump(std::ostream& os)
62 {
63   db_dump(m_db, os);
64 }
65
66 void
67 arp_proxy_config::replay()
68 {
69   if (m_config) {
70     HW::enqueue(new arp_proxy_config_cmds::config_cmd(m_config, m_low, m_high));
71   }
72 }
73
74 std::string
75 arp_proxy_config::to_string() const
76 {
77   std::ostringstream s;
78   s << "ARP-proxy:"
79     << " low:" << m_low.to_string() << " high:" << m_high.to_string();
80
81   return (s.str());
82 }
83
84 void
85 arp_proxy_config::update(const arp_proxy_config& desired)
86 {
87   if (!m_config) {
88     HW::enqueue(new arp_proxy_config_cmds::config_cmd(m_config, m_low, m_high));
89   }
90 }
91
92 std::shared_ptr<arp_proxy_config>
93 arp_proxy_config::find_or_add(const arp_proxy_config& temp)
94 {
95   return (m_db.find_or_add(std::make_pair(temp.m_low, temp.m_high), temp));
96 }
97
98 std::shared_ptr<arp_proxy_config>
99 arp_proxy_config::singular() const
100 {
101   return find_or_add(*this);
102 }
103
104 arp_proxy_config::event_handler::event_handler()
105 {
106   OM::register_listener(this);
107   inspect::register_handler({ "arp-proxy-config" }, "ARP Proxy configurations",
108                             this);
109 }
110
111 void
112 arp_proxy_config::event_handler::handle_replay()
113 {
114   m_db.replay();
115 }
116
117 void
118 arp_proxy_config::event_handler::handle_populate(const client_db::key_t& key)
119 {
120   std::shared_ptr<arp_proxy_config_cmds::dump_cmd> cmd =
121     std::make_shared<arp_proxy_config_cmds::dump_cmd>();
122
123   HW::enqueue(cmd);
124   HW::write();
125
126   for (auto& record : *cmd) {
127     auto& payload = record.get_payload();
128
129     boost::asio::ip::address lo = from_api(payload.proxy.low);
130     boost::asio::ip::address hi = from_api(payload.proxy.hi);
131
132     arp_proxy_config ap(lo.to_v4(), hi.to_v4());
133     OM::commit(key, ap);
134   }
135 }
136
137 dependency_t
138 arp_proxy_config::event_handler::order() const
139 {
140   return (dependency_t::GLOBAL);
141 }
142
143 void
144 arp_proxy_config::event_handler::show(std::ostream& os)
145 {
146   db_dump(m_db, os);
147 }
148
149 std::ostream&
150 operator<<(std::ostream& os, const arp_proxy_config::key_t& key)
151 {
152   os << "[" << key.first << ", " << key.second << "]";
153
154   return (os);
155 }
156 }
157 /*
158  * fd.io coding-style-patch-verification: ON
159  *
160  * Local Variables:
161  * eval: (c-set-style "mozilla")
162  * End:
163  */