blob: c1b3808a5f51a37eabddc1a51acc249068c21b53 [file] [log] [blame]
Damjan Marion7cd468a2016-12-19 23:05:39 +01001/*
2 *------------------------------------------------------------------
Damjan Marion5fec1e82017-04-13 19:13:47 +02003 * test.c
Damjan Marion7cd468a2016-12-19 23:05:39 +01004 *
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#include <stdio.h>
20#include <stdlib.h>
21#include <sys/types.h>
22#include <sys/socket.h>
23#include <sys/mman.h>
24#include <sys/stat.h>
25#include <netinet/in.h>
26#include <netdb.h>
27
28#include <time.h> /* time_t, time (for timestamp in second) */
29#include <sys/timeb.h> /* ftime, timeb (for timestamp in millisecond) */
30#include <sys/time.h> /* gettimeofday, timeval (for timestamp in microsecond) */
31
32#include <vnet/vnet.h>
33#include <vlib/vlib.h>
34#include <vlib/unix/unix.h>
35#include <vlibapi/api.h>
Damjan Marion7cd468a2016-12-19 23:05:39 +010036
37#include <vpp/api/vpe_msg_enum.h>
38#include <signal.h>
Damjan Marion5fec1e82017-04-13 19:13:47 +020039#include "vppapiclient.h"
Damjan Marion7cd468a2016-12-19 23:05:39 +010040
41#define vl_typedefs /* define message structures */
42#include <vpp/api/vpe_all_api_h.h>
43#undef vl_typedefs
44
45/* we are not linking with vlib */
46vlib_main_t vlib_global_main;
47vlib_main_t **vlib_mains;
48
49volatile int sigterm_received = 0;
50volatile u32 result_ready;
51volatile u16 result_msg_id;
52
53/* M_NOALLOC: construct, but don't yet send a message */
54
55#define M_NOALLOC(T,t) \
56 do { \
57 result_ready = 0; \
58 memset (mp, 0, sizeof (*mp)); \
59 mp->_vl_msg_id = ntohs (VL_API_##T); \
60 mp->client_index = am->my_client_index; \
61 } while(0);
62
63
64
Andrey "Zed" Zaikin334167f2018-04-09 16:42:42 +030065void
66wrap_vac_callback (unsigned char *data, int len)
Damjan Marion7cd468a2016-12-19 23:05:39 +010067{
68 //printf("Callback %d\n", len);
69 result_ready = 1;
70 result_msg_id = ntohs(*((u16 *)data));
Damjan Marion7cd468a2016-12-19 23:05:39 +010071}
72
73int main (int argc, char ** argv)
74{
75 api_main_t * am = &api_main;
76 vl_api_show_version_t message;
77 vl_api_show_version_t *mp;
78 int async = 1;
Andrey "Zed" Zaikin334167f2018-04-09 16:42:42 +030079 int rv = vac_connect("vac_client", NULL, wrap_vac_callback, 32 /* rx queue-length*/);
Damjan Marion7cd468a2016-12-19 23:05:39 +010080
81 if (rv != 0) {
82 printf("Connect failed: %d\n", rv);
83 exit(rv);
84 }
85
86 struct timeb timer_msec;
87 long long int timestamp_msec_start; /* timestamp in millisecond. */
88 if (!ftime(&timer_msec)) {
89 timestamp_msec_start = ((long long int) timer_msec.time) * 1000ll +
90 (long long int) timer_msec.millitm;
91 }
92 else {
93 timestamp_msec_start = -1;
94 }
95
96
97 /*
98 * Test vpe_api_write and vpe_api_read to send and recv message for an
99 * API
100 */
101 int i;
102 long int no_msgs = 10000;
103 mp = &message;
104
105 for (i = 0; i < no_msgs; i++) {
106 /* Construct the API message */
107 M_NOALLOC(SHOW_VERSION, show_version);
Damjan Marion5fec1e82017-04-13 19:13:47 +0200108 vac_write((char *)mp, sizeof(*mp));
Damjan Marion7cd468a2016-12-19 23:05:39 +0100109#ifndef __COVERITY__
110 /* As given, async is always 1. Shut up Coverity about it */
111 if (!async)
112 while (result_ready == 0);
113#endif
114 }
115 if (async) {
116 vl_api_control_ping_t control;
117 vl_api_control_ping_t *mp;
118 mp = &control;
119 M_NOALLOC(CONTROL_PING, control_ping);
Damjan Marion5fec1e82017-04-13 19:13:47 +0200120 vac_write((char *)mp, sizeof(*mp));
Damjan Marion7cd468a2016-12-19 23:05:39 +0100121
122 while (result_msg_id != VL_API_CONTROL_PING_REPLY);
123 }
124
125 long long int timestamp_msec_end; /* timestamp in millisecond. */
126 if (!ftime(&timer_msec)) {
127 timestamp_msec_end = ((long long int) timer_msec.time) * 1000ll +
128 (long long int) timer_msec.millitm;
129 }
130 else {
131 timestamp_msec_end = -1;
132 }
133
134 printf("Took %lld msec, %lld msgs/msec \n", (timestamp_msec_end - timestamp_msec_start),
135 no_msgs/(timestamp_msec_end - timestamp_msec_start));
Damjan Marion5fec1e82017-04-13 19:13:47 +0200136 printf("Exiting...\n");
137 vac_disconnect();
Damjan Marion7cd468a2016-12-19 23:05:39 +0100138 exit (0);
139}