File: buffer-usage.h

package info (click to toggle)
ltt-control 2.15.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,744 kB
  • sloc: cpp: 207,706; sh: 28,837; python: 18,952; ansic: 11,636; makefile: 3,362; java: 109; xml: 46
file content (559 lines) | stat: -rw-r--r-- 18,471 bytes parent folder | download
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
/*
 * SPDX-FileCopyrightText: 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 */

#ifndef LTTNG_CONDITION_BUFFER_USAGE_H
#define LTTNG_CONDITION_BUFFER_USAGE_H

#include <lttng/condition/condition.h>
#include <lttng/condition/evaluation.h>
#include <lttng/domain.h>
#include <lttng/lttng-export.h>

#include <stdint.h>

#ifdef __cplusplus
extern "C" {
#endif

/*!
@addtogroup api_trigger_cond_buffer_usage
@{
*/

/*!
@brief
    Creates an initial “channel buffer usage becomes less than”
    trigger condition to execute
    an action when the ring buffer usage of a given \lt_obj_channel
    becomes less than some configured threshold.

On success, the returned trigger condition isn't valid yet; you must:

- Set a target \lt_obj_session name with
  lttng_condition_buffer_usage_set_session_name().

- Set a target \lt_obj_domain with
  lttng_condition_buffer_usage_set_domain_type().

- Set a target channel name with
  lttng_condition_buffer_usage_set_channel_name().

- Set a channel buffer usage threshold with
  lttng_condition_buffer_usage_set_threshold_ratio() or
  lttng_condition_buffer_usage_set_threshold().

@returns
    @parblock
    Trigger condition with the type
    #LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW on success,
    or \c NULL on error.

    Destroy the returned trigger condition with
    lttng_condition_destroy().
    @endparblock
*/
LTTNG_EXPORT extern struct lttng_condition *lttng_condition_buffer_usage_low_create(void);

/*!
@brief
    Creates an initial “channel buffer usage becomes greater than”
    trigger condition to execute
    an action when the ring buffer usage of a given \lt_obj_channel
    becomes greater than some configured threshold.

On success, the returned trigger condition isn't valid yet; you must:

- Set a target \lt_obj_session name with
  lttng_condition_buffer_usage_set_session_name().

- Set a target \lt_obj_domain with
  lttng_condition_buffer_usage_set_domain_type().

- Set a target channel name with
  lttng_condition_buffer_usage_set_channel_name().

- Set a channel buffer usage threshold with
  lttng_condition_buffer_usage_set_threshold_ratio() or
  lttng_condition_buffer_usage_set_threshold().

@returns
    @parblock
    Trigger condition with the type
    #LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH on success,
    or \c NULL on error.

    Destroy the returned trigger condition with
    lttng_condition_destroy().
    @endparblock
*/
LTTNG_EXPORT extern struct lttng_condition *lttng_condition_buffer_usage_high_create(void);

/*!
@brief
    Sets \lt_p{*threshold} to the \lt_obj_channel buffer usage ratio
    threshold of the “channel buffer usage becomes greater/less than”
    trigger condition \lt_p{condition}.

@param[in] condition
    “Channel buffer usage becomes greater/less than”
    trigger condition of which to get the
    channel buffer usage ratio threshold.
@param[out] threshold
    <strong>On success</strong>, this function sets \lt_p{*threshold}
    to the channel buffer usage ratio (between&nbsp;0 and&nbsp;1)
    threshold of \lt_p{condition}.

@retval #LTTNG_CONDITION_STATUS_OK
    Success.
@retval #LTTNG_CONDITION_STATUS_UNSET
    \lt_p{condition} has no channel buffer usage ratio threshold,
    although it may have a channel buffer usage size threshold (see
    lttng_condition_buffer_usage_get_threshold()).
@retval #LTTNG_CONDITION_STATUS_INVALID
    Unsatisfied precondition.

@pre
    @lt_pre_not_null{condition}
    - \lt_p{condition} has the type
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH or
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW.
    @lt_pre_not_null{threshold}

@sa lttng_condition_buffer_usage_set_threshold_ratio() --
    Set the channel buffer usage ratio threshold of a
    “channel buffer usage becomes greater/less than” trigger condition.
@sa lttng_condition_buffer_usage_get_threshold() --
    Get the channel buffer usage size threshold of a
    “channel buffer usage becomes greater/less than” trigger condition.
*/
LTTNG_EXPORT extern enum lttng_condition_status
lttng_condition_buffer_usage_get_threshold_ratio(const struct lttng_condition *condition,
						 double *threshold);

/*!
@brief
    Sets the \lt_obj_channel buffer usage ratio threshold of the
    “channel buffer usage becomes greater/less than”
    trigger condition \lt_p{condition} to \lt_p{threshold}.

This function overrides any current channel buffer usage threshold of
\lt_p{condition}.

@param[in] condition
    “Channel buffer usage becomes greater/less than” trigger
    condition of which to set the channel buffer usage ratio threshold.
@param[in] threshold
    Channel buffer usage ratio (between&nbsp;0 and&nbsp;1) threshold
    of \lt_p{condition}.

@retval #LTTNG_CONDITION_STATUS_OK
    Success.
@retval #LTTNG_CONDITION_STATUS_INVALID
    Unsatisfied precondition.

@pre
    @lt_pre_not_null{condition}
    - \lt_p{condition} has the type
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH or
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW.

@sa lttng_condition_buffer_usage_get_threshold_ratio() --
    Get the channel buffer usage ratio threshold of a
    “channel buffer usage becomes greater/less than” trigger condition.
@sa lttng_condition_buffer_usage_set_threshold() --
    Set the channel buffer usage size threshold of a
    “channel buffer usage becomes greater/less than” trigger condition.
*/
LTTNG_EXPORT extern enum lttng_condition_status
lttng_condition_buffer_usage_set_threshold_ratio(struct lttng_condition *condition,
						 double threshold);

/*!
@brief
    Sets \lt_p{*threshold} to the channel buffer usage size
    (bytes) threshold of the
    “channel buffer usage becomes greater/less than”
    trigger condition \lt_p{condition}.

@param[in] condition
    “Channel buffer usage becomes greater/less than”
    trigger condition of which to get the channel buffer usage size
    threshold.
@param[out] threshold
    <strong>On success</strong>, this function sets \lt_p{*threshold}
    to the buffer usage size (bytes) threshold of \lt_p{condition}.

@retval #LTTNG_CONDITION_STATUS_OK
    Success.
@retval #LTTNG_CONDITION_STATUS_UNSET
    \lt_p{condition} has no channel buffer usage size threshold,
    although it may have a channel buffer usage ratio threshold (see
    lttng_condition_buffer_usage_get_threshold_ratio()).
@retval #LTTNG_CONDITION_STATUS_INVALID
    Unsatisfied precondition.

@pre
    @lt_pre_not_null{condition}
    - \lt_p{condition} has the type
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH or
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW.
    @lt_pre_not_null{threshold}

@sa lttng_condition_buffer_usage_set_threshold() --
    Set the channel buffer usage size threshold of a
    “channel buffer usage becomes greater/less than” trigger condition.
@sa lttng_condition_buffer_usage_get_threshold_ratio() --
    Get the channel buffer usage ratio threshold of a
    “channel buffer usage becomes greater/less than” trigger condition.
*/
LTTNG_EXPORT extern enum lttng_condition_status
lttng_condition_buffer_usage_get_threshold(const struct lttng_condition *condition,
					   uint64_t *threshold);

/*!
@brief
    Sets the \lt_obj_channel buffer usage size threshold of the
    “channel buffer usage becomes greater/less than”
    trigger condition \lt_p{condition} to \lt_p{threshold}.

This function overrides any current channel buffer usage threshold of
\lt_p{condition}.

@param[in] condition
    “Channel buffer usage becomes greater/less than” trigger
    condition of which to set the channel buffer usage size threshold.
@param[in] threshold
    Channel buffer usage size (bytes) threshold of \lt_p{condition}.

@retval #LTTNG_CONDITION_STATUS_OK
    Success.
@retval #LTTNG_CONDITION_STATUS_INVALID
    Unsatisfied precondition.

@pre
    @lt_pre_not_null{condition}
    - \lt_p{condition} has the type
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH or
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW.

@sa lttng_condition_buffer_usage_get_threshold() --
    Get the channel buffer usage size threshold of a
    “channel buffer usage becomes greater/less than” trigger condition.
@sa lttng_condition_buffer_usage_set_threshold_ratio() --
    Set the channel buffer usage ratio threshold of a
    “channel buffer usage becomes greater/less than” trigger condition.
*/
LTTNG_EXPORT extern enum lttng_condition_status
lttng_condition_buffer_usage_set_threshold(struct lttng_condition *condition, uint64_t threshold);

/*!
@brief
    Sets \lt_p{*session_name} to the target \lt_obj_session name of the
    “channel buffer usage becomes greater/less than” trigger
    condition \lt_p{condition}.

@param[in] condition
    “Channel buffer usage becomes greater/less than” trigger
    condition of which to get the target recording session name.
@param[out] session_name
    @parblock
    <strong>On success</strong>, this function sets \lt_p{*session_name}
    to the target recording session name of \lt_p{condition}.

    \lt_p{condition} owns \lt_p{*session_name}.

    \lt_p{*session_name} remains valid until the next
    function call with \lt_p{condition}.
    @endparblock

@retval #LTTNG_CONDITION_STATUS_OK
    Success.
@retval #LTTNG_CONDITION_STATUS_UNSET
    \lt_p{condition} has no target recording session name.
@retval #LTTNG_CONDITION_STATUS_INVALID
    Unsatisfied precondition.

@pre
    @lt_pre_not_null{condition}
    - \lt_p{condition} has the type
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH or
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW.
    @lt_pre_not_null{session_name}

@sa lttng_condition_buffer_usage_set_session_name() --
    Set the target recording session name of a
    “channel buffer usage becomes greater/less than”
    trigger condition.
*/
LTTNG_EXPORT extern enum lttng_condition_status
lttng_condition_buffer_usage_get_session_name(const struct lttng_condition *condition,
					      const char **session_name);

/*!
@brief
    Sets the target \lt_obj_session name of the
    “channel buffer usage becomes greater/less than”
    trigger condition \lt_p{condition} to \lt_p{session_name}.

@param[in] condition
    “Channel buffer usage becomes greater/less than” trigger
    condition of which to set the target recording session name.
@param[in] session_name
    Target recording session name of \lt_p{condition} (copied).

@retval #LTTNG_CONDITION_STATUS_OK
    Success.
@retval #LTTNG_CONDITION_STATUS_INVALID
    Unsatisfied precondition.

@pre
    @lt_pre_not_null{condition}
    - \lt_p{condition} has the type
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH or
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW.
    @lt_pre_not_null{session_name}

@sa lttng_condition_buffer_usage_get_session_name() --
    Get the target recording session name of a
    “channel buffer usage becomes greater/less than”
    trigger condition.
*/
LTTNG_EXPORT extern enum lttng_condition_status
lttng_condition_buffer_usage_set_session_name(struct lttng_condition *condition,
					      const char *session_name);

/*!
@brief
    Sets \lt_p{*channel_name} to the target \lt_obj_channel name of the
    “channel buffer usage becomes greater/less than” trigger
    condition \lt_p{condition}.

@param[in] condition
    “Channel buffer usage becomes greater/less than” trigger
    condition of which to get the target channel name.
@param[out] channel_name
    @parblock
    <strong>On success</strong>, this function sets \lt_p{*channel_name}
    to the target channel name of \lt_p{condition}.

    \lt_p{condition} owns \lt_p{*channel_name}.

    \lt_p{*channel_name} remains valid until the next
    function call with \lt_p{condition}.
    @endparblock

@retval #LTTNG_CONDITION_STATUS_OK
    Success.
@retval #LTTNG_CONDITION_STATUS_UNSET
    \lt_p{condition} has no target channel name.
@retval #LTTNG_CONDITION_STATUS_INVALID
    Unsatisfied precondition.

@pre
    @lt_pre_not_null{condition}
    - \lt_p{condition} has the type
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH or
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW.
    @lt_pre_not_null{channel_name}

@sa lttng_condition_buffer_usage_set_channel_name() --
    Set the target channel name of a
    “channel buffer usage becomes greater/less than”
    trigger condition.
*/
LTTNG_EXPORT extern enum lttng_condition_status
lttng_condition_buffer_usage_get_channel_name(const struct lttng_condition *condition,
					      const char **channel_name);

/*!
@brief
    Sets the target \lt_obj_channel name of the
    “channel buffer usage becomes greater/less than”
    trigger condition \lt_p{condition} to \lt_p{channel_name}.

@param[in] condition
    “Channel buffer usage becomes greater/less than” trigger
    condition of which to set the target channel name.
@param[in] channel_name
    Target channel name of \lt_p{condition} (copied).

@retval #LTTNG_CONDITION_STATUS_OK
    Success.
@retval #LTTNG_CONDITION_STATUS_INVALID
    Unsatisfied precondition.

@pre
    @lt_pre_not_null{condition}
    - \lt_p{condition} has the type
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH or
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW.
    @lt_pre_not_null{channel_name}

@sa lttng_condition_buffer_usage_get_channel_name() --
    Get the target channel name of a
    “channel buffer usage becomes greater/less than”
    trigger condition.
*/
LTTNG_EXPORT extern enum lttng_condition_status
lttng_condition_buffer_usage_set_channel_name(struct lttng_condition *condition,
					      const char *channel_name);

/*!
@brief
    Sets \lt_p{*domain} to the target \lt_obj_domain of the
    “channel buffer usage becomes greater/less than” trigger
    condition \lt_p{condition}.

@param[in] condition
    “Channel buffer usage becomes greater/less than” trigger
    condition of which to get the target tracing domain.
@param[out] domain
    @parblock
    <strong>On success</strong>, this function sets \lt_p{*domain}
    to the target tracing domain of \lt_p{condition}.

    \lt_p{condition} owns \lt_p{*domain}.

    \lt_p{*domain} remains valid until the next
    function call with \lt_p{condition}.
    @endparblock

@retval #LTTNG_CONDITION_STATUS_OK
    Success.
@retval #LTTNG_CONDITION_STATUS_UNSET
    \lt_p{condition} has no target tracing domain.
@retval #LTTNG_CONDITION_STATUS_INVALID
    Unsatisfied precondition.

@pre
    @lt_pre_not_null{condition}
    - \lt_p{condition} has the type
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH or
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW.

@sa lttng_condition_buffer_usage_set_domain_type() --
    Set the target tracing domain of a
    “channel buffer usage becomes greater/less than”
    trigger condition.
*/
LTTNG_EXPORT extern enum lttng_condition_status
lttng_condition_buffer_usage_get_domain_type(const struct lttng_condition *condition,
					     enum lttng_domain_type *domain);

/*!
@brief
    Sets the target \lt_obj_domain of the
    “channel buffer usage becomes greater/less than”
    trigger condition \lt_p{condition} to \lt_p{domain}.

@param[in] condition
    “Channel buffer usage becomes greater/less than” trigger
    condition of which to set the target tracing domain.
@param[in] domain
    Target tracing domain of \lt_p{condition}.

@retval #LTTNG_CONDITION_STATUS_OK
    Success.
@retval #LTTNG_CONDITION_STATUS_INVALID
    Unsatisfied precondition.

@pre
    @lt_pre_not_null{condition}
    - \lt_p{condition} has the type
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH or
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW.
    @lt_pre_not_null{domain}

@sa lttng_condition_buffer_usage_get_domain_type() --
    Get the target tracing domain of a
    “channel buffer usage becomes greater/less than”
    trigger condition.
*/
LTTNG_EXPORT extern enum lttng_condition_status
lttng_condition_buffer_usage_set_domain_type(struct lttng_condition *condition,
					     enum lttng_domain_type domain);

/*!
@brief
    Sets \lt_p{*usage} to the captured \lt_obj_channel
    buffer usage ratio of the
    “channel buffer usage becomes greater/less than” trigger
    condition evaluation \lt_p{evaluation}.

@param[in] evaluation
    “Channel buffer usage becomes greater/less than” trigger
    condition evaluation of which to get the captured channel
    buffer usage ratio.
@param[out] usage
    <strong>On success</strong>, this function sets
    \lt_p{*usage} to the captured channel buffer usage ratio
    (between&nbsp;0 and&nbsp;1) of \lt_p{evaluation}.

@retval #LTTNG_EVALUATION_STATUS_OK
    Success.
@retval #LTTNG_EVALUATION_STATUS_INVALID
    Unsatisfied precondition.

@pre
    @lt_pre_not_null{evaluation}
    - \lt_p{evaluation} has the type
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH or
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW.
    @lt_pre_not_null{usage}

@sa lttng_evaluation_buffer_usage_get_usage() --
    Get the captured channel buffer usage size of a
    “channel buffer usage becomes greater/less than” trigger
    condition evaluation.
*/
LTTNG_EXPORT extern enum lttng_evaluation_status
lttng_evaluation_buffer_usage_get_usage_ratio(const struct lttng_evaluation *evaluation,
					      double *usage);

/*!
@brief
    Sets \lt_p{*usage} to the captured \lt_obj_channel
    buffer usage size of the
    “channel buffer usage becomes greater/less than” trigger
    condition evaluation \lt_p{evaluation}.

@param[in] evaluation
    “Channel buffer usage becomes greater/less than” trigger
    condition evaluation of which to get the captured channel
    buffer usage size.
@param[out] usage
    <strong>On success</strong>, this function sets
    \lt_p{*usage} to the captured channel buffer usage size (bytes)
    of \lt_p{evaluation}.

@retval #LTTNG_EVALUATION_STATUS_OK
    Success.
@retval #LTTNG_EVALUATION_STATUS_INVALID
    Unsatisfied precondition.

@pre
    @lt_pre_not_null{evaluation}
    - \lt_p{evaluation} has the type
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH or
      #LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW.
    @lt_pre_not_null{usage}

@sa lttng_evaluation_buffer_usage_get_usage_ratio() --
    Get the captured channel buffer usage ratio of a
    “channel buffer usage becomes greater/less than” trigger
    condition evaluation.
*/
LTTNG_EXPORT extern enum lttng_evaluation_status
lttng_evaluation_buffer_usage_get_usage(const struct lttng_evaluation *evaluation, uint64_t *usage);

/// @}

#ifdef __cplusplus
}
#endif

#endif /* LTTNG_CONDITION_BUFFER_USAGE_H */