vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / vom / l2_emulation.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/l2_emulation.hpp"
17 #include "vom/l2_emulation_cmds.hpp"
18 #include "vom/singular_db_funcs.hpp"
19
20 namespace VOM {
21 /**
22  * A DB of all the L2 Configs
23  */
24 singular_db<l2_emulation::key_t, l2_emulation> l2_emulation::m_db;
25
26 l2_emulation::event_handler l2_emulation::m_evh;
27
28 /**
29  * Construct a new object matching the desried state
30  */
31 l2_emulation::l2_emulation(const interface& itf)
32   : m_itf(itf.singular())
33   , m_emulation(0)
34 {
35 }
36
37 l2_emulation::l2_emulation(const l2_emulation& o)
38   : m_itf(o.m_itf)
39   , m_emulation(0)
40 {
41 }
42
43 const l2_emulation::key_t&
44 l2_emulation::key() const
45 {
46   return (m_itf->key());
47 }
48
49 bool
50 l2_emulation::operator==(const l2_emulation& l) const
51 {
52   return ((*m_itf == *l.m_itf));
53 }
54
55 std::shared_ptr<l2_emulation>
56 l2_emulation::find(const key_t& key)
57 {
58   return (m_db.find(key));
59 }
60
61 void
62 l2_emulation::sweep()
63 {
64   if (m_emulation && handle_t::INVALID != m_itf->handle()) {
65     HW::enqueue(
66       new l2_emulation_cmds::disable_cmd(m_emulation, m_itf->handle()));
67   }
68
69   // no need to undo the VTR operation.
70   HW::write();
71 }
72
73 void
74 l2_emulation::replay()
75 {
76   if (m_emulation && handle_t::INVALID != m_itf->handle()) {
77     HW::enqueue(
78       new l2_emulation_cmds::enable_cmd(m_emulation, m_itf->handle()));
79   }
80 }
81
82 l2_emulation::~l2_emulation()
83 {
84   sweep();
85
86   // not in the DB anymore.
87   m_db.release(m_itf->key(), this);
88 }
89
90 std::string
91 l2_emulation::to_string() const
92 {
93   std::ostringstream s;
94   s << "L2-emulation:[" << m_itf->to_string() << "]";
95
96   return (s.str());
97 }
98
99 void
100 l2_emulation::update(const l2_emulation& desired)
101 {
102   /*
103    * the desired state is always that the interface should be created
104    */
105   if (rc_t::OK != m_emulation.rc()) {
106     HW::enqueue(
107       new l2_emulation_cmds::enable_cmd(m_emulation, m_itf->handle()));
108   }
109 }
110
111 std::shared_ptr<l2_emulation>
112 l2_emulation::find_or_add(const l2_emulation& temp)
113 {
114   return (m_db.find_or_add(temp.m_itf->key(), temp));
115 }
116
117 std::shared_ptr<l2_emulation>
118 l2_emulation::singular() const
119 {
120   return find_or_add(*this);
121 }
122
123 void
124 l2_emulation::dump(std::ostream& os)
125 {
126   db_dump(m_db, os);
127 }
128
129 l2_emulation::event_handler::event_handler()
130 {
131   OM::register_listener(this);
132   inspect::register_handler({ "l2e" }, "L2 Emulation", this);
133 }
134
135 void
136 l2_emulation::event_handler::handle_replay()
137 {
138   m_db.replay();
139 }
140
141 void
142 l2_emulation::event_handler::handle_populate(const client_db::key_t& key)
143 {
144   /**
145    * This is done while populating the bridge-domain
146    */
147 }
148
149 dependency_t
150 l2_emulation::event_handler::order() const
151 {
152   return (dependency_t::BINDING);
153 }
154
155 void
156 l2_emulation::event_handler::show(std::ostream& os)
157 {
158   db_dump(m_db, os);
159 }
160 }
161
162 /*
163  * fd.io coding-style-patch-verification: ON
164  *
165  * Local Variables:
166  * eval: (c-set-style "mozilla")
167  * End:
168  */