2 * Copyright (c) 2016 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:
7 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 *------------------------------------------------------------------
17 * trace_test.c - test harness for trace plugin
18 *------------------------------------------------------------------
22 #include <vlibapi/api.h>
23 #include <vlibmemory/api.h>
24 #include <vlibsocket/api.h>
25 #include <vppinfra/error.h>
27 #define __plugin_msg_base trace_test_main.msg_id_base
28 #include <vlibapi/vat_helper_macros.h>
30 /* Declare message IDs */
31 #include <ioam/lib-trace/trace_msg_enum.h>
33 /* define message structures */
35 #include <ioam/lib-trace/trace_all_api_h.h>
38 /* declare message handlers for each api */
40 #define vl_endianfun /* define message structures */
41 #include <ioam/lib-trace/trace_all_api_h.h>
44 /* instantiate all the print functions we know about */
45 #define vl_print(handle, ...)
47 #include <ioam/lib-trace/trace_all_api_h.h>
50 /* Get the API version number. */
51 #define vl_api_version(n,v) static u32 api_version=(v);
52 #include <ioam/lib-trace/trace_all_api_h.h>
58 /* API message ID base */
63 trace_test_main_t trace_test_main;
65 #define foreach_standard_reply_retval_handler \
66 _(trace_profile_add_reply) \
67 _(trace_profile_del_reply)
69 #define foreach_custom_reply_handler \
70 _(trace_profile_show_config_reply, \
73 errmsg(" Trace Type : 0x%x (%d)\n",mp->trace_type, mp->trace_type); \
74 errmsg(" Trace timestamp precision : %d \n",mp->trace_tsp); \
75 errmsg(" Node Id : 0x%x (%d)\n",htonl(mp->node_id), htonl(mp->node_id)); \
76 errmsg(" App Data : 0x%x (%d)\n",htonl(mp->app_data), htonl(mp->app_data)); \
78 else errmsg("No valid trace profile configuration found\n");)
80 static void vl_api_##n##_t_handler \
81 (vl_api_##n##_t * mp) \
83 vat_main_t * vam = trace_test_main.vat_main; \
84 i32 retval = ntohl(mp->retval); \
85 if (vam->async_mode) { \
86 vam->async_errors += (retval < 0); \
88 vam->retval = retval; \
89 vam->result_ready = 1; \
92 foreach_standard_reply_retval_handler;
96 static void vl_api_##n##_t_handler \
97 (vl_api_##n##_t * mp) \
99 vat_main_t * vam = trace_test_main.vat_main; \
100 i32 retval = ntohl(mp->retval); \
101 if (vam->async_mode) { \
102 vam->async_errors += (retval < 0); \
104 vam->retval = retval; \
105 vam->result_ready = 1; \
107 if(retval>=0)do{body;} while(0); \
108 else errmsg("Error, retval: %d",retval); \
110 foreach_custom_reply_handler;
113 * Table of message reply handlers, must include boilerplate handlers
116 #define foreach_vpe_api_reply_msg \
117 _(TRACE_PROFILE_ADD_REPLY, trace_profile_add_reply) \
118 _(TRACE_PROFILE_DEL_REPLY, trace_profile_del_reply) \
119 _(TRACE_PROFILE_SHOW_CONFIG_REPLY, trace_profile_show_config_reply)
122 api_trace_profile_add (vat_main_t * vam)
124 unformat_input_t *input = vam->input;
125 vl_api_trace_profile_add_t *mp;
133 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
135 if (unformat (input, "trace-type 0x%x", &trace_type))
137 else if (unformat (input, "trace-elts %d", &num_elts))
139 else if (unformat (input, "trace-tsp %d", &trace_tsp))
141 else if (unformat (input, "node-id 0x%x", &node_id))
143 else if (unformat (input, "app-data 0x%x", &app_data))
151 M (TRACE_PROFILE_ADD, mp);
153 mp->trace_type = trace_type;
154 mp->trace_tsp = trace_tsp;
155 mp->node_id = htonl (node_id);
156 mp->app_data = htonl (app_data);
157 mp->num_elts = num_elts;
167 api_trace_profile_del (vat_main_t * vam)
169 vl_api_trace_profile_del_t *mp;
172 M (TRACE_PROFILE_DEL, mp);
179 api_trace_profile_show_config (vat_main_t * vam)
181 vl_api_trace_profile_show_config_t *mp;
184 M (TRACE_PROFILE_SHOW_CONFIG, mp);
191 * List of messages that the api test plugin sends,
192 * and that the data plane plugin processes
194 #define foreach_vpe_api_msg \
195 _(trace_profile_add, ""\
196 "trace-type <0x1f|0x3|0x9|0x11|0x19> trace-elts <nn> trace-tsp <0|1|2|3> node-id <node id in hex> app-data <app_data in hex>") \
197 _(trace_profile_del, "[id <nn>]") \
198 _(trace_profile_show_config, "[id <nn>]")
202 ioam_trace_vat_api_hookup (vat_main_t * vam)
204 trace_test_main_t *sm = &trace_test_main;
205 /* Hook up handlers for replies from the data plane plug-in */
207 vl_msg_api_set_handlers((VL_API_##N + sm->msg_id_base), \
209 vl_api_##n##_t_handler, \
211 vl_api_##n##_t_endian, \
212 vl_api_##n##_t_print, \
213 sizeof(vl_api_##n##_t), 1);
214 foreach_vpe_api_reply_msg;
217 /* API messages we can send */
218 #define _(n,h) hash_set_mem (vam->function_by_name, #n, api_##n);
223 #define _(n,h) hash_set_mem (vam->help_by_name, #n, h);
229 vat_plugin_register (vat_main_t * vam)
231 trace_test_main_t *sm = &trace_test_main;
236 name = format (0, "ioam_trace_%08x%c", api_version, 0);
237 sm->msg_id_base = vl_client_get_first_plugin_msg_id ((char *) name);
239 if (sm->msg_id_base != (u16) ~ 0)
240 ioam_trace_vat_api_hookup (vam);
248 * fd.io coding-style-patch-verification: ON
251 * eval: (c-set-style "gnu")