blob: 57722338e2ad3cac0127b09b65711c17d80b647c [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 { \
25 vam->result_ready = 0; \
26 mp = vl_msg_api_alloc_as_if_client(sizeof(*mp)); \
27 memset (mp, 0, sizeof (*mp)); \
28 mp->_vl_msg_id = ntohs (VL_API_##T+__plugin_msg_base); \
29 mp->client_index = vam->my_client_index; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050030} while(0);
31
Jon Loeliger614e97d2017-01-31 13:47:08 -060032#define M2(T, mp, n) \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050033do { \
34 vam->result_ready = 0; \
35 mp = vl_msg_api_alloc_as_if_client(sizeof(*mp)+(n)); \
36 memset (mp, 0, sizeof (*mp)); \
Dave Barach2d6b2d62017-01-25 16:32:08 -050037 mp->_vl_msg_id = ntohs (VL_API_##T+__plugin_msg_base); \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050038 mp->client_index = vam->my_client_index; \
39} while(0);
40
Dave Barachfe6bdfd2017-01-20 19:50:09 -050041/* S: send a message */
Jon Loeliger7bc770c2017-01-31 14:03:33 -060042#define S(mp) (vl_msg_api_send_shmem (vam->vl_input_queue, (u8 *)&mp))
Dave Barachfe6bdfd2017-01-20 19:50:09 -050043
44/* W: wait for results, with timeout */
Jon Loeliger56c7b012017-02-01 12:31:41 -060045#define W(ret) \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050046do { \
Jon Loeliger1f9191f2017-01-31 15:27:19 -060047 f64 timeout = vat_time_now (vam) + 1.0; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050048 \
49 while (vat_time_now (vam) < timeout) { \
50 if (vam->result_ready == 1) { \
Jon Loeliger56c7b012017-02-01 12:31:41 -060051 ret = vam->retval; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050052 } \
53 vat_suspend (vam->vlib_main, 1e-5); \
54 } \
Jon Loeliger56c7b012017-02-01 12:31:41 -060055 ret = -99; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050056} while(0);
57
58/* W2: wait for results, with timeout */
Jon Loeliger56c7b012017-02-01 12:31:41 -060059#define W2(ret, body) \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050060do { \
Jon Loeliger1f9191f2017-01-31 15:27:19 -060061 f64 timeout = vat_time_now (vam) + 1.0; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050062 \
63 while (vat_time_now (vam) < timeout) { \
64 if (vam->result_ready == 1) { \
65 (body); \
Jon Loeliger56c7b012017-02-01 12:31:41 -060066 ret = vam->retval; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050067 } \
68 vat_suspend (vam->vlib_main, 1e-5); \
69 } \
Jon Loeliger56c7b012017-02-01 12:31:41 -060070 ret = -99; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050071} while(0);
72
73
74#endif /* __vat_helper_macros_h__ */