blob: cc255ac0daf53ca8929bfa8fe931d109acce8fb3 [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_DUMP_CMD_H__
17#define __VOM_DUMP_CMD_H__
18
19#include <future>
20
21#include "vom/cmd.hpp"
22#include "vom/hw.hpp"
23
24#include <vapi/vapi.hpp>
25
26namespace VOM {
27/**
28 * A function type def for calculating a message's size
29 */
30typedef unsigned int (*get_msg_size_t)(void*);
31
32/**
33 * A base class for VPP dump commands.
34 * Dump commands are one of the sub-set of command types to VPP. Here the
35 * client
36 * makes a read request on the resource and VPP responds with all the
37 * records.
38 * This command is executed synchronously. Once complete the client can
39 * 'pop'
40 * the records from the command object
41 */
42template <typename MSG>
43class dump_cmd : public cmd
44{
45public:
46 typedef MSG msg_t;
47 typedef typename MSG::resp_type record_t;
48
49 typedef typename vapi::Result_set<typename MSG::resp_type>::const_iterator
50 const_iterator;
51
52 /**
53 * Default Constructor
54 */
55 dump_cmd()
56 : cmd()
57 {
58 }
59
60 /**
61 * Destructor
62 */
63 virtual ~dump_cmd() {}
64
65 const_iterator begin() { return (m_dump->get_result_set().begin()); }
66
67 const_iterator end() { return (m_dump->get_result_set().end()); }
68
69 /**
70 * Wait for the issue of the command to complete
71 */
72 rc_t wait()
73 {
74 std::future_status status;
75 std::future<rc_t> result;
76
77 result = m_promise.get_future();
78 status = result.wait_for(std::chrono::seconds(5));
79
80 if (status != std::future_status::ready) {
81 return (rc_t::TIMEOUT);
82 }
83
84 return (result.get());
85 }
86
87 /**
88 * Call operator called when the dump is complete
89 */
90 vapi_error_e operator()(MSG& d)
91 {
92 m_promise.set_value(rc_t::OK);
93
94 return (VAPI_OK);
95 }
96
97 /**
98 * Retire/cancel a long running command
99 */
100 virtual void retire(connection& con) {}
101
102protected:
103 /**
104 * The underlying promise that implements the synchornous nature
105 * of the command issue
106 */
107 std::promise<rc_t> m_promise;
108
109 /**
110 * Dump commands should not be issued whilst the HW is disabled
111 */
112 void succeeded() {}
113
114 /**
115 * The HW::cmd_q is a friend so it can call suceedded.
116 */
117 friend class HW::cmd_q;
118
119 /**
120 * The VAPI event registration
121 */
122 std::unique_ptr<MSG> m_dump;
123};
124};
125
126/*
127 * fd.io coding-style-patch-verification: ON
128 *
129 * Local Variables:
130 * eval: (c-set-style "mozilla")
131 * End:
132 */
133
134#endif