VOM: deprecate TAP add ip-punt redirect dump
[vpp.git] / extras / vom / vom / tap_interface_cmds.hpp
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 #ifndef __VOM_TAP_INTERFACE_CMDS_H__
17 #define __VOM_TAP_INTERFACE_CMDS_H__
18
19 #include "vom/interface.hpp"
20 #include "vom/tap_interface.hpp"
21 #include "vom/dump_cmd.hpp"
22 #include "vom/rpc_cmd.hpp"
23
24 #include <vapi/interface.api.vapi.hpp>
25 #include <vapi/tap.api.vapi.hpp>
26 #include <vapi/tapv2.api.vapi.hpp>
27
28 namespace VOM {
29 namespace tap_interface_cmds {
30
31 /**
32  * A functor class that creates an interface
33  */
34 class tapv2_create_cmd : public interface::create_cmd<vapi::Tap_create_v2>
35 {
36 public:
37   tapv2_create_cmd(HW::item<handle_t>& item,
38                    const std::string& name,
39                    const route::prefix_t& prefix,
40                    const l2_address_t& l2_address);
41
42   /**
43    * Issue the command to VPP/HW
44    */
45   rc_t issue(connection& con);
46   /**
47    * convert to string format for debug purposes
48    */
49   std::string to_string() const;
50
51 private:
52   const route::prefix_t& m_prefix;
53   const l2_address_t& m_l2_address;
54 };
55
56 /**
57  * A functor class that deletes a Tap interface
58  */
59 class tapv2_delete_cmd : public interface::delete_cmd<vapi::Tap_delete_v2>
60 {
61 public:
62   tapv2_delete_cmd(HW::item<handle_t>& item);
63
64   /**
65    * Issue the command to VPP/HW
66    */
67   rc_t issue(connection& con);
68   /**
69    * convert to string format for debug purposes
70    */
71   std::string to_string() const;
72 };
73
74 /**
75  * A cmd class that Dumps all the Vpp Interfaces
76  */
77 class tapv2_dump_cmd : public VOM::dump_cmd<vapi::Sw_interface_tap_v2_dump>
78 {
79 public:
80   /**
81    * Default Constructor
82    */
83   tapv2_dump_cmd();
84
85   /**
86    * Issue the command to VPP/HW
87    */
88   rc_t issue(connection& con);
89   /**
90    * convert to string format for debug purposes
91    */
92   std::string to_string() const;
93
94   /**
95    * Comparison operator - only used for UT
96    */
97   bool operator==(const tapv2_dump_cmd& i) const;
98 };
99
100 }; // namespace tap_interface_cmds 
101 }; // namespace VOM
102
103 #endif