blob: 1db2571a5586f0270ddf2ee58f1c4fa3ac2cde64 [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_NAT_STATIC_CMDS_H__
17#define __VOM_NAT_STATIC_CMDS_H__
18
19#include "nat_static.hpp"
20#include "vom/dump_cmd.hpp"
21
22#include <vapi/nat.api.vapi.hpp>
23
24namespace VOM {
25namespace nat_static_cmds {
26
27/**
28 * A command class that creates NAT 44 static mapping
29 */
30class create_44_cmd
31 : public rpc_cmd<HW::item<bool>, rc_t, vapi::Nat44_add_del_static_mapping>
32{
33public:
34 /**
35 * Constructor
36 */
37 create_44_cmd(HW::item<bool>& item,
38 route::table_id_t id,
39 const boost::asio::ip::address_v4& inside,
40 const boost::asio::ip::address_v4& outside);
41
42 /**
43 * Issue the command to VPP/HW
44 */
45 rc_t issue(connection& con);
46
47 /**
48 * convert to string format for debug purposes
49 */
50 std::string to_string() const;
51
52 /**
53 * Comparison operator - only used for UT
54 */
55 bool operator==(const create_44_cmd& i) const;
56
57private:
58 route::table_id_t m_id;
59 const boost::asio::ip::address_v4 m_inside;
60 const boost::asio::ip::address_v4 m_outside;
61};
62
63/**
64 * A cmd class that deletes a NAT 44 static mapping
65 */
66class delete_44_cmd
67 : public rpc_cmd<HW::item<bool>, rc_t, vapi::Nat44_add_del_static_mapping>
68{
69public:
70 /**
71 * Constructor
72 */
73 delete_44_cmd(HW::item<bool>& item,
74 route::table_id_t id,
75 const boost::asio::ip::address_v4& inside,
76 const boost::asio::ip::address_v4& outside);
77
78 /**
79 * Issue the command to VPP/HW
80 */
81 rc_t issue(connection& con);
82
83 /**
84 * convert to string format for debug purposes
85 */
86 std::string to_string() const;
87
88 /**
89 * Comparison operator - only used for UT
90 */
91 bool operator==(const delete_44_cmd& i) const;
92
93private:
94 route::table_id_t m_id;
95 const boost::asio::ip::address_v4 m_inside;
96 const boost::asio::ip::address_v4 m_outside;
97};
98
99/**
100 * A cmd class that Dumps all the nat_statics
101 */
102class dump_44_cmd : public dump_cmd<vapi::Nat44_static_mapping_dump>
103{
104public:
105 /**
106 * Constructor
107 */
108 dump_44_cmd();
109 dump_44_cmd(const dump_44_cmd& d);
110
111 /**
112 * Issue the command to VPP/HW
113 */
114 rc_t issue(connection& con);
115 /**
116 * convert to string format for debug purposes
117 */
118 std::string to_string() const;
119
120 /**
121 * Comparison operator - only used for UT
122 */
123 bool operator==(const dump_44_cmd& i) const;
124
125private:
126 /**
127 * HW reutrn code
128 */
129 HW::item<bool> item;
130};
131}; // namespace nat_static_cmds
132}; // namespace vom
133
134/*
135 * fd.io coding-style-patch-verification: ON
136 *
137 * Local Variables:
138 * eval: (c-set-style "mozilla")
139 * End:
140 */
141
142#endif