blob: aeff3a8ddd7213c0c2ce8b8a1bbb8936c9120beb [file] [log] [blame]
Neale Ranns55d03782017-10-21 06:34:22 -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_L2_EMULATION_CMDS_H__
17#define __VOM_L2_EMULATION_CMDS_H__
18
19#include "vom/l2_emulation.hpp"
20#include "vom/rpc_cmd.hpp"
21
22#include <vapi/l2e.api.vapi.hpp>
23
24namespace VOM {
25namespace l2_emulation_cmds {
26
27/**
28 * A functor class that enable L2 emulation to an interface
29 */
30class enable_cmd : public rpc_cmd<HW::item<bool>, rc_t, vapi::L2_emulation>
31{
32public:
33 /**
34 * Constructor
35 */
36 enable_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 enable_cmd& i) const;
51
52private:
53 /**
54 * The interface to bind
55 */
56 const handle_t m_itf;
57};
58
59/**
60 * A cmd class that Unbinds L2 configuration from an interface
61 */
62class disable_cmd : public rpc_cmd<HW::item<bool>, rc_t, vapi::L2_emulation>
63{
64public:
65 /**
66 * Constructor
67 */
68 disable_cmd(HW::item<bool>& item, const handle_t& itf);
69
70 /**
71 * Issue the command to VPP/HW
72 */
73 rc_t issue(connection& con);
74 /**
75 * convert to string format for debug purposes
76 */
77 std::string to_string() const;
78
79 /**
80 * Comparison operator - only used for UT
81 */
82 bool operator==(const disable_cmd& i) const;
83
84private:
85 /**
86 * The interface to bind
87 */
88 const handle_t m_itf;
89};
90
91}; // namespace l2_emulation_cmds
92}; // namespace VOM
93
94/*
95 * fd.io coding-style-patch-verification: ON
96 *
97 * Local Variables:
98 * eval: (c-set-style "mozilla")
99 * End:
100 */
101
102#endif