blob: 2e1b9422bf759fd8bd7f35ba243214709d73ed32 [file] [log] [blame]
Dave Barachfe6bdfd2017-01-20 19:50:09 -05001/*
2 *------------------------------------------------------------------
3 * vat_helper_macros.h - collect api client helper macros in one place
4 *
5 * Copyright (c) 2016 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *------------------------------------------------------------------
18 */
19#ifndef __vat_helper_macros_h__
20#define __vat_helper_macros_h__
21
22/* M: construct, but don't yet send a message */
Jon Loeliger614e97d2017-01-31 13:47:08 -060023#define M(T, mp) \
Dave Barach2d6b2d62017-01-25 16:32:08 -050024do { \
Florin Coras90a63982017-12-19 04:50:01 -080025 socket_client_main_t *scm = vam->socket_client_main; \
Dave Barach2d6b2d62017-01-25 16:32:08 -050026 vam->result_ready = 0; \
Florin Coras90a63982017-12-19 04:50:01 -080027 if (scm && scm->socket_enable) \
28 mp = vl_socket_client_msg_alloc (sizeof(*mp)); \
Dave Barach59b25652017-09-10 15:04:27 -040029 else \
30 mp = vl_msg_api_alloc_as_if_client(sizeof(*mp)); \
Dave Barach69eeadc2020-04-14 09:52:26 -040031 clib_memset (mp, 0, sizeof (*mp)); \
Dave Barach2d6b2d62017-01-25 16:32:08 -050032 mp->_vl_msg_id = ntohs (VL_API_##T+__plugin_msg_base); \
Dave Barach69eeadc2020-04-14 09:52:26 -040033 mp->client_index = vam->my_client_index; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050034} while(0);
35
Dave Barach59b25652017-09-10 15:04:27 -040036/* MPING: construct a control-ping message, don't send it yet */
37#define MPING(T, mp) \
38do { \
Florin Coras90a63982017-12-19 04:50:01 -080039 socket_client_main_t *scm = vam->socket_client_main; \
Dave Barach59b25652017-09-10 15:04:27 -040040 vam->result_ready = 0; \
Dave Barach69eeadc2020-04-14 09:52:26 -040041 if (scm && scm->socket_enable) \
Florin Coras90a63982017-12-19 04:50:01 -080042 mp = vl_socket_client_msg_alloc (sizeof(*mp)); \
Dave Barach59b25652017-09-10 15:04:27 -040043 else \
44 mp = vl_msg_api_alloc_as_if_client(sizeof(*mp)); \
Dave Barach69eeadc2020-04-14 09:52:26 -040045 clib_memset (mp, 0, sizeof (*mp)); \
Dave Barach59b25652017-09-10 15:04:27 -040046 mp->_vl_msg_id = ntohs (VL_API_##T+__plugin_msg_base); \
47 mp->client_index = vam->my_client_index; \
Florin Coras90a63982017-12-19 04:50:01 -080048 if (scm) \
Dave Barach69eeadc2020-04-14 09:52:26 -040049 scm->control_pings_outstanding++; \
Dave Barach59b25652017-09-10 15:04:27 -040050} while(0);
51
Jon Loeliger614e97d2017-01-31 13:47:08 -060052#define M2(T, mp, n) \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050053do { \
Florin Coras90a63982017-12-19 04:50:01 -080054 socket_client_main_t *scm = vam->socket_client_main; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050055 vam->result_ready = 0; \
Dave Barach69eeadc2020-04-14 09:52:26 -040056 if (scm && scm->socket_enable) \
57 mp = vl_socket_client_msg_alloc (sizeof(*mp) + n); \
Dave Barach59b25652017-09-10 15:04:27 -040058 else \
59 mp = vl_msg_api_alloc_as_if_client(sizeof(*mp) + n); \
Dave Barach69eeadc2020-04-14 09:52:26 -040060 clib_memset (mp, 0, sizeof (*mp)); \
Dave Barach2d6b2d62017-01-25 16:32:08 -050061 mp->_vl_msg_id = ntohs (VL_API_##T+__plugin_msg_base); \
Dave Barach69eeadc2020-04-14 09:52:26 -040062 mp->client_index = vam->my_client_index; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050063} while(0);
64
Filip Tehlarabfe3652021-07-23 18:24:19 +000065#define PING(_tm, mp_ping) \
66 do \
67 { \
68 if (!(_tm)->ping_id) \
69 (_tm)->ping_id = \
70 vl_msg_api_get_msg_index ((u8 *) (VL_API_CONTROL_PING_CRC)); \
71 mp_ping = vl_msg_api_alloc_as_if_client (sizeof (*mp_ping)); \
72 mp_ping->_vl_msg_id = htons ((_tm)->ping_id); \
73 mp_ping->client_index = vam->my_client_index; \
74 vam->result_ready = 0; \
75 } \
76 while (0);
77
Dave Barachfe6bdfd2017-01-20 19:50:09 -050078/* S: send a message */
Dave Barach59b25652017-09-10 15:04:27 -040079#define S(mp) \
80do { \
Florin Coras90a63982017-12-19 04:50:01 -080081 socket_client_main_t *scm = vam->socket_client_main; \
Dave Barach69eeadc2020-04-14 09:52:26 -040082 if (scm && scm->socket_enable) \
Florin Coras90a63982017-12-19 04:50:01 -080083 vl_socket_client_write (); \
Dave Barach59b25652017-09-10 15:04:27 -040084 else \
85 vl_msg_api_send_shmem (vam->vl_input_queue, (u8 *)&mp); \
86 } while (0);
Dave Barachfe6bdfd2017-01-20 19:50:09 -050087
88/* W: wait for results, with timeout */
Dave Barach59b25652017-09-10 15:04:27 -040089#define W(ret) \
90do { \
91 f64 timeout = vat_time_now (vam) + 1.0; \
Florin Coras90a63982017-12-19 04:50:01 -080092 socket_client_main_t *scm = vam->socket_client_main; \
Dave Barach59b25652017-09-10 15:04:27 -040093 ret = -99; \
94 \
Dave Barach69eeadc2020-04-14 09:52:26 -040095 if (scm && scm->socket_enable) \
Florin Coras90a63982017-12-19 04:50:01 -080096 vl_socket_client_read (5); \
Dave Barach59b25652017-09-10 15:04:27 -040097 while (vat_time_now (vam) < timeout) { \
98 if (vam->result_ready == 1) { \
99 ret = vam->retval; \
100 break; \
101 } \
102 vat_suspend (vam->vlib_main, 1e-5); \
Dave Barach69eeadc2020-04-14 09:52:26 -0400103 } \
Dave Barachfe6bdfd2017-01-20 19:50:09 -0500104} while(0);
105
Dave Barach69eeadc2020-04-14 09:52:26 -0400106/* W2: wait for results, with timeout */ \
Dave Barach59b25652017-09-10 15:04:27 -0400107#define W2(ret, body) \
108do { \
109 f64 timeout = vat_time_now (vam) + 1.0; \
Florin Coras90a63982017-12-19 04:50:01 -0800110 socket_client_main_t *scm = vam->socket_client_main; \
Dave Barach59b25652017-09-10 15:04:27 -0400111 ret = -99; \
112 \
Dave Barach69eeadc2020-04-14 09:52:26 -0400113 if (scm && scm->socket_enable) \
Florin Coras90a63982017-12-19 04:50:01 -0800114 vl_socket_client_read (5); \
Dave Barach59b25652017-09-10 15:04:27 -0400115 while (vat_time_now (vam) < timeout) { \
116 if (vam->result_ready == 1) { \
117 (body); \
118 ret = vam->retval; \
119 break; \
120 } \
121 vat_suspend (vam->vlib_main, 1e-5); \
Dave Barach69eeadc2020-04-14 09:52:26 -0400122 } \
Dave Barachfe6bdfd2017-01-20 19:50:09 -0500123} while(0);
124
Dave Barach21a43842019-07-09 10:04:18 -0400125#define VAT_PLUGIN_REGISTER(plug) \
126clib_error_t * vat_plugin_register (vat_main_t *vam) \
127{ \
128 plug##_test_main_t * mp = &plug##_test_main; \
129 u8 * name; \
130 \
131 mp->vat_main = vam; \
132 \
133 /* Ask the vpp engine for the first assigned message-id */ \
134 name = format (0, #plug "_%08x%c", api_version, 0); \
135 mp->msg_id_base = \
136 vl_client_get_first_plugin_msg_id ((char *) name); \
137 vec_free(name); \
138 \
139 if (mp->msg_id_base != (u16) ~0) \
140 plug##_api_hookup (vam); \
141 else \
142 return clib_error_return (0, #plug " plugin not loaded...");\
143 return 0; \
144}
145
Dave Barachfe6bdfd2017-01-20 19:50:09 -0500146
147#endif /* __vat_helper_macros_h__ */