aboutsummaryrefslogtreecommitdiffstats
path: root/longbow/src/LongBow/longBow_EventType.h
blob: 03774abd1123f96e46d22264aa6bc7638e78b18d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @file longBow_EventType.h
 * @ingroup internals
 * @ingroup runtime
 * @ingroup testing
 * @brief LongBow Events and Support.
 *
 */
#ifndef LongBow_longBow_EventType_h
#define LongBow_longBow_EventType_h

#include <LongBow/longBow_Status.h>

struct longbow_event_type;
/**
 * @typedef LongBowEventType
 *
 * A LongBowEventType identifies a specific Event induced or generated by a running programme.
 */
typedef struct longbow_event_type LongBowEventType;

/**
 * @var LongBowAssertEvent
 */
extern LongBowEventType LongBowAssertEvent;

/**
 * @var LongBowTestEvent
 */
extern LongBowEventType LongBowTestEvent;

/**
 * @var LongBowTestSkippedEvent
 */
extern LongBowEventType LongBowTestSkippedEvent;

/**
 * @var LongBowTestUnimplementedEvent
 */
extern LongBowEventType LongBowTestUnimplementedEvent;

/**
 * @var LongBowTrapOutOfMemoryEvent
 */
extern LongBowEventType LongBowTrapOutOfMemoryEvent;

/**
 * @var LongBowTrapUnexpectedStateEvent
 */
extern LongBowEventType LongBowTrapUnexpectedStateEvent;

/**
 * @var LongBowTrapEvent
 */
extern LongBowEventType LongBowTrapEvent;

/**
 * @var LongBowTrapOutOfBounds
 */
extern LongBowEventType LongBowTrapOutOfBounds;

/**
 * @var LongBowTrapIllegalValue
 */
extern LongBowEventType LongBowTrapIllegalValue;

/**
 * @var LongBowTrapInvalidValue
 */
extern LongBowEventType LongBowTrapInvalidValue;

/**
 * @var LongBowTrapUnrecoverableState
 */
extern LongBowEventType LongBowTrapUnrecoverableState;

/**
 * @var LongBowTrapNotImplemented
 */
extern LongBowEventType LongBowTrapNotImplemented;

/**
 * @var LongBowTrapCannotObtainLockEvent
 */
extern LongBowEventType LongBowTrapCannotObtainLockEvent;

/**
 * @var LongBowEventSIGHUP
 */
extern LongBowEventType LongBowEventSIGHUP;

/**
 * @var LongBowEventSIGINT
 */
extern LongBowEventType LongBowEventSIGINT;

/**
 * @var LongBowEventSIGQUIT
 */
extern LongBowEventType LongBowEventSIGQUIT;

/**
 * @var LongBowEventSIGILL
 */
extern LongBowEventType LongBowEventSIGILL;

/**
 * @var LongBowEventSIGTRAP
 */
extern LongBowEventType LongBowEventSIGTRAP;

/**
 * @var LongBowEventSIGABRT
 */
extern LongBowEventType LongBowEventSIGABRT;

/**
 * @var LongBowEventSIGIOT
 */
extern LongBowEventType LongBowEventSIGIOT;

/**
 * @var LongBowEventSIGEMT
 */
extern LongBowEventType LongBowEventSIGEMT;

/**
 * @var LongBowEventSIGFPE
 */
extern LongBowEventType LongBowEventSIGFPE;

/**
 * @var LongBowEventSIGKILL
 */
extern LongBowEventType LongBowEventSIGKILL;

/**
 * @var LongBowEventSIGBUS
 */
extern LongBowEventType LongBowEventSIGBUS;

/**
 * @var LongBowEventSIGSEGV
 */
extern LongBowEventType LongBowEventSIGSEGV;

/**
 * @var LongBowEventSIGSYS
 */
extern LongBowEventType LongBowEventSIGSYS;

/**
 * @var LongBowEventSIGPIPE
 */
extern LongBowEventType LongBowEventSIGPIPE;

/**
 * @var LongBowEventSIGALRM
 */
extern LongBowEventType LongBowEventSIGALRM;

/**
 * @var LongBowEventSIGTERM
 */
extern LongBowEventType LongBowEventSIGTERM;

/**
 * @var LongBowEventSIGURG
 */
extern LongBowEventType LongBowEventSIGURG;

/**
 * @var LongBowEventSIGSTOP
 */
extern LongBowEventType LongBowEventSIGSTOP;

/**
 * @var LongBowEventSIGTSTP
 */
extern LongBowEventType LongBowEventSIGTSTP;

/**
 * @var LongBowEventSIGCONT
 */
extern LongBowEventType LongBowEventSIGCONT;

/**
 * @var LongBowEventSIGCHLD
 */
extern LongBowEventType LongBowEventSIGCHLD;

/**
 * @var LongBowEventSIGTTIN
 */
extern LongBowEventType LongBowEventSIGTTIN;

/**
 * @var LongBowEventSIGTTOU
 */
extern LongBowEventType LongBowEventSIGTTOU;

/**
 * @var LongBowEventSIGIO
 */
extern LongBowEventType LongBowEventSIGIO;

/**
 * @var LongBowEventSIGXCPU
 */
extern LongBowEventType LongBowEventSIGXCPU;

/**
 * @var LongBowEventSIGXFSZ
 */
extern LongBowEventType LongBowEventSIGXFSZ;

/**
 * @var LongBowEventSIGVTALRM
 */
extern LongBowEventType LongBowEventSIGVTALRM;

/**
 * @var LongBowEventSIGPROF
 */
extern LongBowEventType LongBowEventSIGPROF;

/**
 * @var LongBowEventSIGWINCH
 */
extern LongBowEventType LongBowEventSIGWINCH;

/**
 * @var LongBowEventSIGINFO
 */
extern LongBowEventType LongBowEventSIGINFO;

/**
 * @var LongBowEventSIGUSR1
 */
extern LongBowEventType LongBowEventSIGUSR1;

/**
 * @var LongBowEventSIGUSR2
 */
extern LongBowEventType LongBowEventSIGUSR2;

/**
 * Determine if two `LongBowEventType` instances are equal.
 *
 * The following equivalence relations on non-null `LongBowEventType` instances are maintained:
 *
 *   * It is reflexive: for any non-null reference value x, `longBowEventType_Equals(x, x)` must return true.
 *
 *   * It is symmetric: for any non-null reference values x and y, `longBowEventType_Equals(x, y)` must return true if and only if
 *        `longBowEventType_Equals(y x)` returns true.
 *
 *   * It is transitive: for any non-null reference values x, y, and z, if
 *        `longBowEventType_Equals(x, y)` returns true and
 *        `longBowEventType_Equals(y, z)` returns true,
 *        then `longBowEventType_Equals(x, z)` must return true.
 *
 *   * It is consistent: for any non-null reference values x and y, multiple invocations of `longBowEventType_Equals(x, y)`
 *         consistently return true or consistently return false.
 *
 *   * For any non-null reference value x, `longBowEventType_Equals(x, NULL)` must return false.
 *
 *
 * @param [in] x A pointer to a `LongBowEventType` instance.
 * @param [in] y A pointer to a `LongBowEventType` instance.
 *
 * @return true `LongBowEventType` x and y are equal.
 * @return false `LongBowEventType` x and y are not equal.
 *
 * Example:
 * @code
 * {
 *     LongBowEventType *e1 = LongBowAssertEvent;
 *     LongBowEventType *e2 = LongBowAssertEvent;
 *
 *     if (longBowEventType_Equals(bufferA, bufferB)) {
 *         printf("The events are equal.\n");
 *     } else {
 *         printf("The events are NOT equal.\n");
 *     }
 * }
 * @endcode
 */
bool longBowEventType_Equals(const LongBowEventType *x, const LongBowEventType *y);

/**
 * Produce a nul-terminated C string representation of this `LongBowEventType` instance.
 *
 * @param [in] eventType A pointer to a `LongBowEventType` instance.
 *
 * @return The C string name of the given LongBowEventType.
 *
 * Example:
 * @code
 * {
 *     LongBowEventType *event = LongBowAssertEvent;
 *
 *     printf("Event = %s\n", longBowEventType_GetName(event));
 * }
 * @endcode
 */
const char *longBowEventType_GetName(const LongBowEventType *eventType);

/**
 * Test if a `LongBowEventType` is specified to not report a stack backtrace.
 *
 * @param [in] eventType A pointer to a `LongBowEventType` instance.
 *
 * @return true if the LongBowEventType indicates that a backtrace report is not to be printed.
 *
 * Example:
 * @code
 * {
 *     LongBowEvent *event = ...
 *
 *    if (longBowEventType_IsSuppressBacktrace(longBowEvent_GetEventType(event)) == false) {
 *        char **strs = longBowEvent_CreateSymbolicCallstack(event);
 *        if (strs != NULL) {
 *            for (size_t i = 0; i < longBowEvent_GetCallStackLength(event); ++i) {
 *                printf("%s\r\n", strs[i]);
 *            }
 *            free(strs);
 *        }
 *    }
 * }
 * @endcode
 */
bool longBowEventType_IsSuppressBacktrace(const LongBowEventType *eventType);

/**
 * Test if a LongBowEventType is specified to not report an alert.
 *
 * @param [in] eventType A pointer to a `LongBowEventType` instance.
 *
 * @return true if the LongBowEventType is specified to not report an alert.
 *
 * Example:
 * @code
 * {
 *     LongBowEvent *event = ...
 *
 *     if (longBowEventType_IsSuppressAlert(longBowEvent_GetEventType(event)) == false) {
 *         char *location = longBowLocation_ToString(longBowEvent_GetLocation(event));
 *         printf("%s %s %s %s\r\n",
 *             longBowEvent_GetName(event), location, longBowEvent_GetKind(event), longBowEvent_GetMessage(event));
 *
 *         ...
 *     }
 *
 * }
 * @endcode
 */
bool longBowEventType_IsSuppressAlert(const LongBowEventType *eventType);

/**
 * Get the status of the specified `LongBowEventType` instance.
 *
 * @param [in] eventType A pointer to a `LongBowEventType` instance.
 *
 * @return The LongBowStatus associated with the given LongBowEventType.
 *
 * Example:
 * @code
 * {
 *     LongBowEvent *event = ...
 *
 *     LongBowStatus status = longBowEventType_GetStatus(event);
 *     // use the status as needed
 * }
 * @endcode
 */
LongBowStatus longBowEventType_GetStatus(const LongBowEventType *eventType);

/**
 * Get the LongBowEventType corresponding to the given signal.
 *
 * @param [in] signal The signal to index.
 *
 * @return the LongBowEventType corresponding to the given signal.
 *
 * Example:
 * @code
 * {
 *     LongBowEventType *type = longBowEventType_GetEventTypeForSignal(1);
 *     // type is equal to LongBowEventSIGHUP
 * }
 * @endcode
 */
LongBowEventType *longBowEventType_GetEventTypeForSignal(const int signal);
#endif // LongBow_longBow_EventType_h