Remove unneeded "will"s + minor fixes
[lttng-docs.git] / contents / using-lttng / instrumenting / c-application / tracepoint-provider.md
CommitLineData
5e0cbfb0
PP
1---
2id: tracepoint-provider
3---
4
5Before jumping into defining tracepoints and inserting
6them into the application source code, you must understand what a
7_tracepoint provider_ is.
8
9For the sake of this guide, consider the following two files:
10
11`tp.h`:
12
13~~~ c
14#undef TRACEPOINT_PROVIDER
15#define TRACEPOINT_PROVIDER my_provider
16
17#undef TRACEPOINT_INCLUDE
18#define TRACEPOINT_INCLUDE "./tp.h"
19
20#if !defined(_TP_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
21#define _TP_H
22
23#include <lttng/tracepoint.h>
24
25TRACEPOINT_EVENT(
26 my_provider,
27 my_first_tracepoint,
28 TP_ARGS(
29 int, my_integer_arg,
30 char*, my_string_arg
31 ),
32 TP_FIELDS(
33 ctf_string(my_string_field, my_string_arg)
34 ctf_integer(int, my_integer_field, my_integer_arg)
35 )
36)
37
38TRACEPOINT_EVENT(
39 my_provider,
40 my_other_tracepoint,
41 TP_ARGS(
42 int, my_int
43 ),
44 TP_FIELDS(
45 ctf_integer(int, some_field, my_int)
46 )
47)
48
49#endif /* _TP_H */
50
51#include <lttng/tracepoint-event.h>
52~~~
53
54`tp.c`:
55
56~~~ c
57#define TRACEPOINT_CREATE_PROBES
58
59#include "tp.h"
60~~~
61
62The two files above are defining a _tracepoint provider_. A tracepoint
63provider is some sort of namespace for _tracepoint definitions_. Tracepoint
64definitions are written above with the `TRACEPOINT_EVENT()` macro, and allow
65eventual `tracepoint()` calls respecting their definitions to be inserted
66into the user application's C source code (we explore this in a
67later section).
68
69Many tracepoint definitions may be part of the same tracepoint provider
70and many tracepoint providers may coexist in a user space application. A
71tracepoint provider is packaged either:
72
73 * directly into an existing user application's C source file
74 * as an object file
75 * as a static library
76 * as a shared library
77
78The two files above, `tp.h` and `tp.c`, show a typical template for
79writing a tracepoint provider. LTTng-UST was designed so that two
80tracepoint providers should not be defined in the same header file.
81
82We will now go through the various parts of the above files and
83give them a meaning. As you may have noticed, the LTTng-UST API for
84C/C++ applications is some preprocessor sorcery. The LTTng-UST macros
85used in your application and those in the LTTng-UST headers are
86combined to produce actual source code needed to make tracing possible
87using LTTng.
88
89Let's start with the header file, `tp.h`. It begins with
90
91~~~ c
92#undef TRACEPOINT_PROVIDER
93#define TRACEPOINT_PROVIDER my_provider
94~~~
95
96`TRACEPOINT_PROVIDER` defines the name of the provider to which the
47bfcb75 97following tracepoint definitions belong. It is used internally by
5e0cbfb0
PP
98LTTng-UST headers and _must_ be defined. Since `TRACEPOINT_PROVIDER`
99could have been defined by another header file also included by the same
100C source file, the best practice is to undefine it first.
101
102<div class="tip">
103<p><span class="t">Note:</span>Names in LTTng-UST follow the C
104<em>identifier</em> syntax (starting with a letter and containing either
105letters, numbers or underscores); they are <em>not</em> C strings
106(not surrounded by double quotes). This is because LTTng-UST macros
107use those identifier-like strings to create symbols (named types and
108variables).</p>
109</div>
110
111The tracepoint provider is a group of tracepoint definitions; its chosen
112name should reflect this. A hierarchy like Java packages is recommended,
113using underscores instead of dots, e.g., `org_company_project_component`.
114
115Next is `TRACEPOINT_INCLUDE`:
116
117~~~ c
118#undef TRACEPOINT_INCLUDE
119#define TRACEPOINT_INCLUDE "./tp.h"
120~~~
121
122This little bit of instrospection is needed by LTTng-UST to include
123your header at various predefined places.
124
125Include guard follows:
126
127~~~ c
128#if !defined(_TP_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
129#define _TP_H
130~~~
131
cd41f97c
PP
132Add these precompiler conditionals to ensure the tracepoint event
133generation can include this file more than once.
5e0cbfb0
PP
134
135The `TRACEPOINT_EVENT()` macro is defined in a LTTng-UST header file which
136must be included:
137
138~~~ c
139#include <lttng/tracepoint.h>
140~~~
141
47bfcb75 142This also allows the application to use the `tracepoint()` macro.
5e0cbfb0
PP
143
144Next is a list of `TRACEPOINT_EVENT()` macro calls which create the
47bfcb75 145actual tracepoint definitions. We skip this for the moment and
5e0cbfb0
PP
146come back to how to use `TRACEPOINT_EVENT()`
147[in a later section](#doc-defining-tracepoints). Just pay attention to
148the first argument: it's always the name of the tracepoint provider
149being defined in this header file.
150
151End of include guard:
152
153~~~ c
154#endif /* _TP_H */
155~~~
156
157Finally, include `<lttng/tracepoint-event.h>` to expand the macros:
158
159~~~ c
160#include <lttng/tracepoint-event.h>
161~~~
162
163That's it for `tp.h`. Of course, this is only a header file; it must be
164included in some C source file to actually use it. This is the job of
165`tp.c`:
166
167~~~ c
168#define TRACEPOINT_CREATE_PROBES
169
170#include "tp.h"
171~~~
172
173When `TRACEPOINT_CREATE_PROBES` is defined, the macros used in `tp.h`,
47bfcb75 174which is included just after, actually create the source code for
5e0cbfb0
PP
175LTTng-UST probes (global data structures and functions) out of your
176tracepoint definitions. How exactly this is done is out of this text's scope.
177`TRACEPOINT_CREATE_PROBES` is discussed further
178in [Building/linking tracepoint providers and the user application](#doc-building-tracepoint-providers-and-user-application).
179
180You could include other header files like `tp.h` here to create the probes
181of different tracepoint providers, e.g.:
182
183~~~ c
184#define TRACEPOINT_CREATE_PROBES
185
186#include "tp1.h"
187#include "tp2.h"
188~~~
189
190The rule is: probes of a given tracepoint provider
191must be created in exactly one source file. This source file could be one
192of your project's; it doesn't have to be on its own like `tp.c`, although
193[a later section](#doc-building-tracepoint-providers-and-user-application)
194shows that doing so allows packaging the tracepoint providers
195independently and keep them out of your application, also making it
196possible to reuse them between projects.
197
198The following sections explain how to define tracepoints, how to use the
199`tracepoint()` macro to instrument your user space C application and how
200to build/link tracepoint providers and your application with LTTng-UST
201support.
This page took 0.030162 seconds and 4 git commands to generate.