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