VOM: logging, populate and stats fixes
[vpp.git] / src / vpp-api / vom / sub_interface.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/sub_interface.hpp"
17 #include "vom/sub_interface_cmds.hpp"
18
19 namespace VOM {
20 /**
21  * Construct a new object matching the desried state
22  */
23 sub_interface::sub_interface(const interface& parent,
24                              admin_state_t state,
25                              vlan_id_t vlan)
26   : interface(mk_name(parent, vlan), parent.type(), state)
27   , m_parent(parent.singular())
28   , m_vlan(vlan)
29 {
30 }
31
32 sub_interface::~sub_interface()
33 {
34   sweep();
35   release();
36 }
37
38 sub_interface::sub_interface(const sub_interface& o)
39   : interface(o)
40   , m_parent(o.m_parent)
41   , m_vlan(o.m_vlan)
42 {
43 }
44
45 bool
46 sub_interface::operator==(const sub_interface& s) const
47 {
48   return (interface::operator==(s) && (m_parent->key() == s.m_parent->key()) &&
49           (m_vlan == s.m_vlan));
50 }
51
52 std::string
53 sub_interface::mk_name(const interface& parent, vlan_id_t vlan)
54 {
55   return (parent.name() + "." + std::to_string(vlan));
56 }
57
58 std::queue<cmd*>&
59 sub_interface::mk_create_cmd(std::queue<cmd*>& q)
60 {
61   q.push(new sub_interface_cmds::create_cmd(m_hdl, name(), m_parent->handle(),
62                                             m_vlan));
63
64   return (q);
65 }
66
67 std::queue<cmd*>&
68 sub_interface::mk_delete_cmd(std::queue<cmd*>& q)
69 {
70   q.push(new sub_interface_cmds::delete_cmd(m_hdl));
71
72   return (q);
73 }
74
75 std::shared_ptr<sub_interface>
76 sub_interface::singular() const
77 {
78   return std::dynamic_pointer_cast<sub_interface>(singular_i());
79 }
80
81 std::shared_ptr<interface>
82 sub_interface::singular_i() const
83 {
84   return m_db.find_or_add(key(), *this);
85 }
86
87 std::shared_ptr<sub_interface>
88 sub_interface::find(const key_t& k)
89 {
90   return std::dynamic_pointer_cast<sub_interface>(m_db.find(k));
91 }
92
93 }; // namespace VOM
94
95 /*
96  * fd.io coding-style-patch-verification: ON
97  *
98  * Local Variables:
99  * eval: (c-set-style "mozilla")
100  * End:
101  */