blob: 5e7f10839474d7203f6a1138ee7250010a27210a [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 { \
Dave Barach59b25652017-09-10 15:04:27 -040025 socket_client_main_t *scm = &vam->socket_client_main; \
Dave Barach2d6b2d62017-01-25 16:32:08 -050026 vam->result_ready = 0; \
Dave Barach59b25652017-09-10 15:04:27 -040027 if (scm->socket_enable) \
28 { \
29 mp = (void *)scm->socket_tx_buffer; \
30 scm->socket_tx_nbytes = sizeof (*mp); \
31 } \
32 else \
33 mp = vl_msg_api_alloc_as_if_client(sizeof(*mp)); \
Dave Barach2d6b2d62017-01-25 16:32:08 -050034 memset (mp, 0, sizeof (*mp)); \
35 mp->_vl_msg_id = ntohs (VL_API_##T+__plugin_msg_base); \
36 mp->client_index = vam->my_client_index; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050037} while(0);
38
Dave Barach59b25652017-09-10 15:04:27 -040039/* MPING: construct a control-ping message, don't send it yet */
40#define MPING(T, mp) \
41do { \
42 socket_client_main_t *scm = &vam->socket_client_main; \
43 vam->result_ready = 0; \
44 if (scm->socket_enable) \
45 { \
46 mp = (void *)scm->socket_tx_buffer; \
47 scm->socket_tx_nbytes = sizeof (*mp); \
48 } \
49 else \
50 mp = vl_msg_api_alloc_as_if_client(sizeof(*mp)); \
51 memset (mp, 0, sizeof (*mp)); \
52 mp->_vl_msg_id = ntohs (VL_API_##T+__plugin_msg_base); \
53 mp->client_index = vam->my_client_index; \
54 scm->control_pings_outstanding++; \
55} while(0);
56
Jon Loeliger614e97d2017-01-31 13:47:08 -060057#define M2(T, mp, n) \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050058do { \
Dave Barach59b25652017-09-10 15:04:27 -040059 socket_client_main_t *scm = &vam->socket_client_main; \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050060 vam->result_ready = 0; \
Dave Barach59b25652017-09-10 15:04:27 -040061 if (scm->socket_enable) \
62 { \
63 mp = (void *)scm->socket_tx_buffer; \
64 scm->socket_tx_nbytes = sizeof (*mp) + n; \
65 } \
66 else \
67 mp = vl_msg_api_alloc_as_if_client(sizeof(*mp) + n); \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050068 memset (mp, 0, sizeof (*mp)); \
Dave Barach2d6b2d62017-01-25 16:32:08 -050069 mp->_vl_msg_id = ntohs (VL_API_##T+__plugin_msg_base); \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050070 mp->client_index = vam->my_client_index; \
71} while(0);
72
Dave Barachfe6bdfd2017-01-20 19:50:09 -050073/* S: send a message */
Dave Barach59b25652017-09-10 15:04:27 -040074#define S(mp) \
75do { \
76 int n; \
77 socket_client_main_t *scm = &vam->socket_client_main; \
78 if (scm->socket_enable) \
79 { \
80 msgbuf_t msgbuf; \
81 \
82 msgbuf.q = 0; \
83 msgbuf.gc_mark_timestamp = 0; \
84 msgbuf.data_len = ntohl(scm->socket_tx_nbytes); \
85 \
86 n = write (scm->socket_fd, &msgbuf, sizeof (msgbuf)); \
87 if (n < sizeof (msgbuf)) \
88 clib_unix_warning ("socket write (msgbuf)"); \
89 \
90 n = write (scm->socket_fd, scm->socket_tx_buffer, \
91 scm->socket_tx_nbytes); \
92 if (n < scm->socket_tx_nbytes) \
93 clib_unix_warning ("socket write (msg)"); \
94 } \
95 else \
96 vl_msg_api_send_shmem (vam->vl_input_queue, (u8 *)&mp); \
97 } while (0);
Dave Barachfe6bdfd2017-01-20 19:50:09 -050098
99/* W: wait for results, with timeout */
Dave Barach59b25652017-09-10 15:04:27 -0400100#define W(ret) \
101do { \
102 f64 timeout = vat_time_now (vam) + 1.0; \
103 socket_client_main_t *scm = &vam->socket_client_main; \
104 ret = -99; \
105 \
106 vl_socket_client_read_reply (scm); \
107 while (vat_time_now (vam) < timeout) { \
108 if (vam->result_ready == 1) { \
109 ret = vam->retval; \
110 break; \
111 } \
112 vat_suspend (vam->vlib_main, 1e-5); \
113 } \
Dave Barachfe6bdfd2017-01-20 19:50:09 -0500114} while(0);
115
116/* W2: wait for results, with timeout */
Dave Barach59b25652017-09-10 15:04:27 -0400117#define W2(ret, body) \
118do { \
119 f64 timeout = vat_time_now (vam) + 1.0; \
120 socket_client_main_t *scm = &vam->socket_client_main; \
121 ret = -99; \
122 \
123 vl_socket_client_read_reply (scm); \
124 while (vat_time_now (vam) < timeout) { \
125 if (vam->result_ready == 1) { \
126 (body); \
127 ret = vam->retval; \
128 break; \
129 } \
130 vat_suspend (vam->vlib_main, 1e-5); \
131 } \
Dave Barachfe6bdfd2017-01-20 19:50:09 -0500132} while(0);
133
134
135#endif /* __vat_helper_macros_h__ */