blob: 626a9cd29a9f84e875c5a757f636b46313613625 [file] [log] [blame]
Neale Ranns812ed392017-10-16 04:20:13 -07001/*
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/route_domain.hpp"
17#include "vom/cmd.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070018#include "vom/route_domain_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070019
20namespace VOM {
Neale Ranns10e7a9f2017-11-14 08:40:43 -080021
22route_domain::event_handler route_domain::m_evh;
23
Neale Ranns812ed392017-10-16 04:20:13 -070024/**
25 * A DB of al the interfaces, key on the name
26 */
27singular_db<route::table_id_t, route_domain> route_domain::m_db;
28
29/**
30 * Construct a new object matching the desried state
31 */
32route_domain::route_domain(route::table_id_t id)
33 : m_hw_v4(true)
34 , m_hw_v6(true)
35 , m_table_id(id)
36{
37}
38
39route_domain::route_domain(const route_domain& o)
40 : m_hw_v4(o.m_hw_v4)
41 , m_hw_v6(o.m_hw_v6)
42 , m_table_id(o.m_table_id)
43{
44}
45
Neale Rannsfd920602017-11-23 12:15:00 -080046bool
47route_domain::operator==(const route_domain& r) const
48{
49 return (m_table_id == r.m_table_id);
50}
51
Neale Ranns812ed392017-10-16 04:20:13 -070052route::table_id_t
53route_domain::table_id() const
54{
55 return (m_table_id);
56}
57
58route_domain::key_t
59route_domain::key() const
60{
61 return (table_id());
62}
63
64void
65route_domain::sweep()
66{
67 if (m_hw_v4) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070068 HW::enqueue(
69 new route_domain_cmds::delete_cmd(m_hw_v4, l3_proto_t::IPV4, m_table_id));
Neale Ranns812ed392017-10-16 04:20:13 -070070 }
71 if (m_hw_v6) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070072 HW::enqueue(
73 new route_domain_cmds::delete_cmd(m_hw_v6, l3_proto_t::IPV6, m_table_id));
Neale Ranns812ed392017-10-16 04:20:13 -070074 }
75 HW::write();
76}
77
78void
79route_domain::replay()
80{
81 if (m_hw_v4) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070082 HW::enqueue(
83 new route_domain_cmds::create_cmd(m_hw_v4, l3_proto_t::IPV4, m_table_id));
Neale Ranns812ed392017-10-16 04:20:13 -070084 }
85 if (m_hw_v6) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070086 HW::enqueue(
87 new route_domain_cmds::create_cmd(m_hw_v6, l3_proto_t::IPV6, m_table_id));
Neale Ranns812ed392017-10-16 04:20:13 -070088 }
89}
90
91route_domain::~route_domain()
92{
93 sweep();
94
95 // not in the DB anymore.
96 m_db.release(m_table_id, this);
97}
98
99std::string
100route_domain::to_string() const
101{
102 std::ostringstream s;
103 s << "route-domain:["
Neale Rannsd3464b52017-12-07 08:48:02 -0800104 << "table-id:" << m_table_id << " v4:" << m_hw_v4.to_string()
105 << " v6:" << m_hw_v6.to_string() << "]";
Neale Ranns812ed392017-10-16 04:20:13 -0700106
107 return (s.str());
108}
109
110std::shared_ptr<route_domain>
Neale Ranns7016b002018-01-25 07:28:19 -0800111route_domain::find(const key_t& k)
Neale Ranns812ed392017-10-16 04:20:13 -0700112{
Neale Ranns7016b002018-01-25 07:28:19 -0800113 return (m_db.find(k));
Neale Ranns812ed392017-10-16 04:20:13 -0700114}
115
116void
117route_domain::update(const route_domain& desired)
118{
119 /*
120 * create the table if it is not yet created
121 */
122 if (rc_t::OK != m_hw_v4.rc()) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700123 HW::enqueue(
124 new route_domain_cmds::create_cmd(m_hw_v4, l3_proto_t::IPV4, m_table_id));
Neale Ranns812ed392017-10-16 04:20:13 -0700125 }
126 if (rc_t::OK != m_hw_v6.rc()) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700127 HW::enqueue(
128 new route_domain_cmds::create_cmd(m_hw_v6, l3_proto_t::IPV6, m_table_id));
Neale Ranns812ed392017-10-16 04:20:13 -0700129 }
130}
131
132std::shared_ptr<route_domain>
133route_domain::get_default()
134{
135 route_domain rd(route::DEFAULT_TABLE);
136
137 return (find_or_add(rd));
138}
139
140std::shared_ptr<route_domain>
141route_domain::find_or_add(const route_domain& temp)
142{
143 return (m_db.find_or_add(temp.m_table_id, temp));
144}
145
146std::shared_ptr<route_domain>
147route_domain::singular() const
148{
149 return find_or_add(*this);
150}
151
152void
153route_domain::dump(std::ostream& os)
154{
155 m_db.dump(os);
156}
Neale Ranns10e7a9f2017-11-14 08:40:43 -0800157
158void
159route_domain::event_handler::handle_populate(const client_db::key_t& key)
160{
Neale Ranns812ed392017-10-16 04:20:13 -0700161}
Neale Ranns10e7a9f2017-11-14 08:40:43 -0800162
163route_domain::event_handler::event_handler()
164{
165 OM::register_listener(this);
166 inspect::register_handler({ "rd", "route-domain" }, "Route Domains", this);
167}
168
169void
170route_domain::event_handler::handle_replay()
171{
172 m_db.replay();
173}
174
175dependency_t
176route_domain::event_handler::order() const
177{
178 return (dependency_t::TABLE);
179}
180
181void
182route_domain::event_handler::show(std::ostream& os)
183{
184 m_db.dump(os);
185}
186
187}; // namespace VOPM
188
Neale Ranns812ed392017-10-16 04:20:13 -0700189/*
190 * fd.io coding-style-patch-verification: ON
191 *
192 * Local Variables:
193 * eval: (c-set-style "mozilla")
194 * End:
195 */