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