tests: Move to kernel style SPDX license identifiers
[lttng-tools.git] / tests / utils / testapp / gen-ust-events / gen-ust-events.c
CommitLineData
7e0cc23b 1/*
9d16b343 2 * Copyright (C) 2012 David Goulet <dgoulet@efficios.com>
7e0cc23b 3 *
9d16b343 4 * SPDX-License-Identifier: LGPL-2.1-only
7e0cc23b 5 *
7e0cc23b
CB
6 */
7
70dac0d7 8#define _LGPL_SOURCE
6c4a91d6 9#include <getopt.h>
209b934f 10#include <assert.h>
7e0cc23b 11#include <arpa/inet.h>
209b934f 12#include <fcntl.h>
7e0cc23b
CB
13#include <stdarg.h>
14#include <stdio.h>
15#include <stdlib.h>
16#include <string.h>
17#include <sys/mman.h>
18#include <sys/stat.h>
19#include <sys/types.h>
20#include <unistd.h>
0fc2834c 21#include <stdbool.h>
5fcaccbc
MD
22#include <signal.h>
23#include <poll.h>
24#include <errno.h>
ae941114 25#include "utils.h"
95983a02 26#include "signal-helper.h"
7e0cc23b
CB
27
28#define TRACEPOINT_DEFINE
29#include "tp.h"
30
6c4a91d6
MD
31static struct option long_options[] =
32{
33 /* These options set a flag. */
34 {"iter", required_argument, 0, 'i'},
35 {"wait", required_argument, 0, 'w'},
36 {"sync-after-first-event", required_argument, 0, 'a'},
37 {"sync-before-last-event", required_argument, 0, 'b'},
4e88fe0a
JR
38 {"sync-before-last-event-touch", required_argument, 0, 'c'},
39 {"sync-before-exit", required_argument, 0, 'd'},
40 {"sync-before-exit-touch", required_argument, 0, 'e'},
6c4a91d6
MD
41 {0, 0, 0, 0}
42};
43
7e0cc23b
CB
44int main(int argc, char **argv)
45{
0fc2834c 46 unsigned int i, netint;
6c4a91d6
MD
47 int option_index;
48 int option;
7e0cc23b
CB
49 long values[] = { 1, 2, 3 };
50 char text[10] = "test";
51 double dbl = 2.0;
52 float flt = 2222.0;
b2047add 53 int nr_iter = 100, ret = 0, first_event_file_created = 0;
7e0cc23b 54 useconds_t nr_usec = 0;
5fcaccbc
MD
55 char *after_first_event_file_path = NULL;
56 char *before_last_event_file_path = NULL;
4e88fe0a
JR
57 /*
58 * Touch a file to indicate that all events except one were
59 * generated.
60 */
61 char *before_last_event_file_path_touch = NULL;
62 /* Touch file when we are exiting */
63 char *before_exit_file_path_touch = NULL;
64 /* Wait on file before exiting */
65 char *before_exit_file_path = NULL;
7e0cc23b 66
6c4a91d6
MD
67 while ((option = getopt_long(argc, argv, "i:w:a:b:c:d:",
68 long_options, &option_index)) != -1) {
69 switch (option) {
70 case 'a':
71 after_first_event_file_path = strdup(optarg);
72 break;
73 case 'b':
74 before_last_event_file_path = strdup(optarg);
75 break;
4e88fe0a
JR
76 case 'c':
77 before_last_event_file_path_touch = strdup(optarg);
78 break;
79 case 'd':
80 before_exit_file_path = strdup(optarg);
81 break;
82 case 'e':
83 before_exit_file_path_touch = strdup(optarg);
84 break;
6c4a91d6
MD
85 case 'i':
86 nr_iter = atoi(optarg);
87 break;
88 case 'w':
89 nr_usec = atoi(optarg);
90 break;
91 case '?':
92 /* getopt_long already printed an error message. */
93 break;
94 default:
95 ret = -1;
96 goto end;
97 }
7e0cc23b
CB
98 }
99
6c4a91d6
MD
100 if (optind != argc) {
101 fprintf(stderr, "Error: takes long options only.\n");
56d48389
MD
102
103 /*
104 * Aborting the test program for now because callers typically don't check
105 * the test program return value, and the transition from positional
106 * arguments to getopt causes hangs when caller scripts are not updated.
107 * An abort is easier to diagnose and fix. This is a temporary solution:
108 * we should eventually ensure that all scripts test and report the test
109 * app return values.
110 */
111 abort();
112
6c4a91d6
MD
113 ret = -1;
114 goto end;
7e0cc23b
CB
115 }
116
5fcaccbc 117
6c4a91d6
MD
118 if (set_signal_handler()) {
119 ret = -1;
120 goto end;
209b934f
DG
121 }
122
0fc2834c 123 for (i = 0; nr_iter < 0 || i < nr_iter; i++) {
5fcaccbc 124 if (nr_iter >= 0 && i == nr_iter - 1) {
4e88fe0a
JR
125 if (before_last_event_file_path_touch) {
126 ret = create_file(before_last_event_file_path_touch);
127 if (ret != 0) {
128 goto end;
129 }
130 }
131
5fcaccbc
MD
132 /*
133 * Wait on synchronization before writing last
134 * event.
135 */
b2047add
FD
136 if (before_last_event_file_path) {
137 ret = wait_on_file(before_last_event_file_path);
138 if (ret != 0) {
139 goto end;
140 }
141 }
5fcaccbc 142 }
7e0cc23b 143 netint = htonl(i);
5fcaccbc
MD
144 tracepoint(tp, tptest, i, netint, values, text,
145 strlen(text), dbl, flt);
209b934f
DG
146
147 /*
5fcaccbc
MD
148 * First loop we create the file if asked to indicate
149 * that at least one tracepoint has been hit.
209b934f 150 */
b2047add
FD
151 if (after_first_event_file_path && first_event_file_created == 0) {
152 ret = create_file(after_first_event_file_path);
153
154 if (ret != 0) {
155 goto end;
156 } else {
157 first_event_file_created = 1;
158 }
159 }
160
b734f5f7 161 if (nr_usec) {
ae941114
JG
162 if (usleep_safe(nr_usec)) {
163 ret = -1;
164 goto end;
165 }
b734f5f7 166 }
95983a02
JG
167 if (should_quit) {
168 break;
169 }
7e0cc23b
CB
170 }
171
4e88fe0a
JR
172 if (before_exit_file_path_touch) {
173 ret = create_file(before_exit_file_path_touch);
174 if (ret != 0) {
175 goto end;
176 }
177 }
178 if (before_exit_file_path) {
179 ret = wait_on_file(before_exit_file_path);
180 if (ret != 0) {
181 goto end;
182 }
183 }
ae941114 184end:
6c4a91d6
MD
185 free(after_first_event_file_path);
186 free(before_last_event_file_path);
4e88fe0a
JR
187 free(before_last_event_file_path_touch);
188 free(before_exit_file_path);
189 free(before_exit_file_path_touch);
ae941114 190 exit(!ret ? EXIT_SUCCESS : EXIT_FAILURE);
7e0cc23b 191}
This page took 0.043479 seconds and 4 git commands to generate.