blob: 57ad520be1a80074523f99b635ddf55c5f0d289b [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; \
Filip Tehlar6fa55682017-02-07 13:29:47 +010048 ret = -99; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050049 \
50 while (vat_time_now (vam) < timeout) { \
51 if (vam->result_ready == 1) { \
Jon Loeliger56c7b012017-02-01 12:31:41 -060052 ret = vam->retval; \
Filip Tehlar6fa55682017-02-07 13:29:47 +010053 break; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050054 } \
55 vat_suspend (vam->vlib_main, 1e-5); \
56 } \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050057} while(0);
58
59/* W2: wait for results, with timeout */
Jon Loeliger56c7b012017-02-01 12:31:41 -060060#define W2(ret, body) \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050061do { \
Jon Loeliger1f9191f2017-01-31 15:27:19 -060062 f64 timeout = vat_time_now (vam) + 1.0; \
Filip Tehlar6fa55682017-02-07 13:29:47 +010063 ret = -99; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050064 \
65 while (vat_time_now (vam) < timeout) { \
66 if (vam->result_ready == 1) { \
67 (body); \
Jon Loeliger56c7b012017-02-01 12:31:41 -060068 ret = vam->retval; \
Filip Tehlar6fa55682017-02-07 13:29:47 +010069 break; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050070 } \
71 vat_suspend (vam->vlib_main, 1e-5); \
72 } \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050073} while(0);
74
75
76#endif /* __vat_helper_macros_h__ */