blob: ae3c6753d245fa77cc103a27d20da8a863a66dcf [file] [log] [blame]
Neale Ranns812ed392017-10-16 04:20:13 -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_RPC_CMD_H__
17#define __VOM_RPC_CMD_H__
18
19#include <future>
20
21#include "vom/cmd.hpp"
22#include "vom/logger.hpp"
23
24namespace VOM {
25/**
26 * A base class for all RPC commands to VPP.
27 * RPC commands are one of the sub-set of command types to VPP
28 * that modify/create state in VPP and thus return an error code.
29 * Commands are issued in one thread context, but read in another. The
30 * command has an associated std::promise that is met by the RX thread.
31 * this allows the sender, which waits on the promise's future, to
32 * experience a synchronous command.
33 *
34 * The command is templatised on the type of the HW::item to be set by
35 * the command, and the data returned in the promise,
36 */
37template <typename HWITEM, typename DATA, typename MSG>
38class rpc_cmd : public cmd
39{
40public:
41 /**
42 * convenient typedef
43 */
44 typedef MSG msg_t;
45
46 /**
47 * Constructor taking the HW item that will be updated by the command
48 */
49 rpc_cmd(HWITEM& item)
50 : cmd()
51 , m_hw_item(item)
52 , m_promise()
53 {
54 }
55
56 /**
57 * Desructor
58 */
59 virtual ~rpc_cmd() {}
60
61 /**
62 * return the HW item the command updates
63 */
64 HWITEM& item() { return m_hw_item; }
65
66 /**
67 * return the const HW item the command updates
68 */
69 const HWITEM& item() const { return m_hw_item; }
70
71 /**
72 * Fulfill the commands promise. Called from the RX thread
73 */
Mohsin Kazmi5a4f96a2017-11-20 10:23:47 +010074 void fulfill(const DATA& d)
75 {
76 m_promise.set_value(d);
77
78 /*
79 * we reset the promise after setting the value to reuse it
80 * when we run the retire command from the same cmd object
81 */
82 m_promise = std::promise<DATA>();
83 }
Neale Ranns812ed392017-10-16 04:20:13 -070084
85 /**
86 * Wait on the commands promise. i.e. block on the completion
87 * of the command.
88 */
89 DATA wait()
90 {
91 std::future_status status;
92 std::future<DATA> result;
93
94 result = m_promise.get_future();
95 status = result.wait_for(std::chrono::seconds(5));
96
97 if (status != std::future_status::ready) {
98 return (DATA(rc_t::TIMEOUT));
99 }
100
101 return (result.get());
102 }
103
104 /**
105 * Called by the HW Command Q when it is disabled to indicate the
106 * command can be considered successful without issuing it to HW
107 */
108 virtual void succeeded() { m_hw_item.set(rc_t::OK); }
109
110 /**
111 * call operator used as a callback by VAPI when the reply is available
112 */
113 virtual vapi_error_e operator()(MSG& reply)
114 {
115 int retval = reply.get_response().get_payload().retval;
116 VOM_LOG(log_level_t::DEBUG) << to_string() << " " << retval;
117 fulfill(rc_t::from_vpp_retval(retval));
118
119 return (VAPI_OK);
120 }
121
122 /**
123 * Retire/cancel a long running command
124 */
125 virtual void retire(connection& con) {}
126
127protected:
128 /**
129 * A reference to an object's HW::item that the command will update
130 */
131 HWITEM& m_hw_item;
132
133 /**
134 * The promise that implements the synchronous issue
135 */
136 std::promise<DATA> m_promise;
137};
138};
139
140/*
141 * fd.io coding-style-patch-verification: ON
142 *
143 * Local Variables:
144 * eval: (c-set-style "mozilla")
145 * End:
146 */
147
148#endif