blob: 9389896c009aebae7eac5f8aaba195110cd1068a [file] [log] [blame]
Neale Ranns9ef1c0a2017-11-03 04:39:05 -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#ifndef __VOM_ARP_PROXY_BINDING_CMDS_H__
17#define __VOM_ARP_PROXY_BINDING_CMDS_H__
18
19#include "vom/arp_proxy_binding.hpp"
Neale Ranns0053de62018-05-22 08:40:52 -070020#include "vom/dump_cmd.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070021
Neale Ranns7e9affb2018-12-05 04:34:27 -080022#include <vapi/ip.api.vapi.hpp>
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070023
24namespace VOM {
25namespace arp_proxy_binding_cmds {
26/**
27 * A command class that binds the LLDP config to the interface
28 */
29class bind_cmd
Neale Ranns208c29a2018-04-11 08:08:30 -070030 : public rpc_cmd<HW::item<bool>, vapi::Proxy_arp_intfc_enable_disable>
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070031{
32public:
33 /**
34 * Constructor
35 */
36 bind_cmd(HW::item<bool>& item, const handle_t& itf);
37
38 /**
39 * Issue the command to VPP/HW
40 */
41 rc_t issue(connection& con);
42 /**
43 * convert to string format for debug purposes
44 */
45 std::string to_string() const;
46
47 /**
48 * Comparison operator - only used for UT
49 */
50 bool operator==(const bind_cmd& i) const;
51
52private:
53 /**
54 * Reference to the HW::item of the interface to bind
55 */
56 const handle_t& m_itf;
57};
58
59/**
60 * A cmd class that Unbinds ArpProxy Config from an interface
61 */
62class unbind_cmd
Neale Ranns208c29a2018-04-11 08:08:30 -070063 : public rpc_cmd<HW::item<bool>, vapi::Proxy_arp_intfc_enable_disable>
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070064{
65public:
66 /**
67 * Constructor
68 */
69 unbind_cmd(HW::item<bool>& item, const handle_t& itf);
70
71 /**
72 * Issue the command to VPP/HW
73 */
74 rc_t issue(connection& con);
75 /**
76 * convert to string format for debug purposes
77 */
78 std::string to_string() const;
79
80 /**
81 * Comparison operator - only used for UT
82 */
83 bool operator==(const unbind_cmd& i) const;
84
85private:
86 /**
87 * Reference to the HW::item of the interface to unbind
88 */
89 const handle_t& m_itf;
90};
Neale Ranns0053de62018-05-22 08:40:52 -070091
92/**
93 * A cmd class that Dumps all the Proxy ARP configs
94 */
95class dump_cmd : public VOM::dump_cmd<vapi::Proxy_arp_intfc_dump>
96{
97public:
98 /**
99 * Constructor
100 */
101 dump_cmd() = default;
102
103 /**
104 * Issue the command to VPP/HW
105 */
106 rc_t issue(connection& con);
107 /**
108 * convert to string format for debug purposes
109 */
110 std::string to_string() const;
111
112 /**
113 * Comparison operator - only used for UT
114 */
115 bool operator==(const dump_cmd& i) const;
116
117private:
118 /**
119 * HW reutrn code
120 */
121 HW::item<bool> item;
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700122};
Neale Ranns0053de62018-05-22 08:40:52 -0700123
124}; // namespace cmds
125}; // namespace VOM
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700126
127/*
128 * fd.io coding-style-patch-verification: ON
129 *
130 * Local Variables:
131 * eval: (c-set-style "mozilla")
132 * End:
133 */
134
135#endif