vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / vom / qos_mark.cpp
1 /*
2  * Copyright (c) 2019 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/qos_mark.hpp"
17 #include "vom/api_types.hpp"
18 #include "vom/qos_mark_cmds.hpp"
19 #include "vom/qos_types_api.hpp"
20 #include "vom/singular_db_funcs.hpp"
21
22 namespace VOM {
23 namespace QoS {
24
25 singular_db<mark::key_t, mark> mark::m_db;
26
27 mark::event_handler mark::m_evh;
28
29 mark::mark(const interface& itf, const map& m, const source_t& src)
30   : m_config(false)
31   , m_itf(itf.singular())
32   , m_map(m.singular())
33   , m_src(src)
34 {
35 }
36
37 mark::mark(const mark& m)
38   : m_config(m.m_config)
39   , m_itf(m.m_itf)
40   , m_map(m.m_map)
41   , m_src(m.m_src)
42 {
43 }
44
45 mark::~mark()
46 {
47   sweep();
48   m_db.release(key(), this);
49 }
50
51 const mark::key_t
52 mark::key() const
53 {
54   return (std::make_pair(m_itf->key(), m_src));
55 }
56
57 bool
58 mark::operator==(const mark& m) const
59 {
60   return (key() == m.key() && m_map->id() == m.m_map->id());
61 }
62
63 void
64 mark::sweep()
65 {
66   if (m_config) {
67     HW::enqueue(new mark_cmds::delete_cmd(m_config, m_itf->handle(), m_src));
68   }
69   HW::write();
70 }
71
72 void
73 mark::replay()
74 {
75   if (m_config) {
76     HW::enqueue(
77       new mark_cmds::create_cmd(m_config, m_itf->handle(), m_map->id(), m_src));
78   }
79 }
80
81 std::string
82 mark::to_string() const
83 {
84   std::ostringstream s;
85   s << "qos-mark:[" << m_itf->to_string() << ", map:" << m_map->id()
86     << ", src:" << m_src.to_string();
87
88   return (s.str());
89 }
90
91 void
92 mark::update(const mark& r)
93 {
94   if (rc_t::OK != m_config.rc()) {
95     HW::enqueue(
96       new mark_cmds::create_cmd(m_config, m_itf->handle(), m_map->id(), m_src));
97   }
98 }
99
100 std::shared_ptr<mark>
101 mark::find_or_add(const mark& temp)
102 {
103   return (m_db.find_or_add(temp.key(), temp));
104 }
105
106 std::shared_ptr<mark>
107 mark::find(const key_t& k)
108 {
109   return (m_db.find(k));
110 }
111
112 std::shared_ptr<mark>
113 mark::singular() const
114 {
115   return find_or_add(*this);
116 }
117
118 void
119 mark::dump(std::ostream& os)
120 {
121   db_dump(m_db, os);
122 }
123
124 mark::event_handler::event_handler()
125 {
126   OM::register_listener(this);
127   inspect::register_handler({ "qos-mark" }, "QoS Mark", this);
128 }
129
130 void
131 mark::event_handler::handle_replay()
132 {
133   m_db.replay();
134 }
135
136 void
137 mark::event_handler::handle_populate(const client_db::key_t& key)
138 {
139   std::shared_ptr<mark_cmds::dump_cmd> cmd =
140     std::make_shared<mark_cmds::dump_cmd>();
141
142   HW::enqueue(cmd);
143   HW::write();
144
145   for (auto& rr : *cmd) {
146     auto& payload = rr.get_payload();
147
148     std::shared_ptr<interface> itf = interface::find(payload.mark.sw_if_index);
149     std::shared_ptr<map> map = map::find(payload.mark.map_id);
150
151     VOM_LOG(log_level_t::DEBUG) << "data: " << payload.mark.sw_if_index;
152
153     if (itf && map) {
154       mark qm(*itf, *map, from_api(payload.mark.output_source));
155       OM::commit(key, qm);
156
157       VOM_LOG(log_level_t::DEBUG) << "read: " << qm.to_string();
158     } else {
159       VOM_LOG(log_level_t::ERROR)
160         << "no interface or map:" << payload.mark.sw_if_index << ", "
161         << payload.mark.map_id;
162     }
163   }
164 }
165
166 dependency_t
167 mark::event_handler::order() const
168 {
169   return (dependency_t::ENTRY);
170 }
171
172 void
173 mark::event_handler::show(std::ostream& os)
174 {
175   db_dump(m_db, os);
176 }
177
178 }; // namespace QoS
179 }; // namespace VOM
180
181 /*
182  * fd.io coding-style-patch-verification: ON
183  *
184  * Local Variables:
185  * eval: (c-set-style "mozilla")
186  * End:
187  */