lib: add internal object pool API and use it; adapt plugins/tests
[babeltrace.git] / include / Makefile.am
CommitLineData
7845e95f
MJ
1##
2## This target generates an include file that contains the git version
3## string of the current branch, it must be continuously updated when
4## we build in the git repo and shipped in dist tarballs to reflect the
5## status of the tree when it was generated. If the tree is clean and
6## the current commit is tag a starting with "v", consider this a
7## release version and set an empty git version.
8##
9## Here is what the inline script does:
10##
11## First, delete any stale "version.i.tmp" file.
12##
13## If "bootstrap" and ".git" exists in the top source directory and the git
14## executable is available, get the current git version string in the form:
15##
16## "latest_tag"(-"number_of_commits_on_top")(-g"latest_commit_hash")(-dirty)
17##
18## And store it in "version.i.tmp", if the current commit is tagged, the tag
19## starts with "v" and the tree is clean, consider this a release version and
20## overwrite the git version with an empty string in "version.i.tmp".
21##
22## If we don't have a "version.i.tmp" nor a "version.i", generate an empty
23## string as a failover.
24##
25## If we don't have a "version.i" or we have both files and they are different,
26## copy "version.i.tmp" over "version.i". This way the dependent targets are
27## only rebuilt when the version string changes.
28##
29
30version_verbose = $(version_verbose_@AM_V@)
31version_verbose_ = $(version_verbose_@AM_DEFAULT_V@)
32version_verbose_0 = @echo " GEN " $@;
33
34version.i:
35 $(version_verbose)rm -f version.i.tmp; \
36 if (test -r "$(top_srcdir)/bootstrap" && test -r "$(top_srcdir)/.git") && \
37 test -x "`which git 2>&1;true`"; then \
38 GIT_VERSION_STR="`cd "$(top_srcdir)" && git describe --tags --dirty`"; \
39 GIT_CURRENT_TAG="`cd "$(top_srcdir)" && git describe --tags --exact-match --match="v[0-9]*" HEAD 2> /dev/null`"; \
40 echo "#define GIT_VERSION \"$$GIT_VERSION_STR\"" > version.i.tmp; \
41 if ! $(GREP) -- "-dirty" version.i.tmp > /dev/null && \
42 test "x$$GIT_CURRENT_TAG" != "x"; then \
43 echo "#define GIT_VERSION \"\"" > version.i.tmp; \
44 fi; \
45 fi; \
46 if test ! -f version.i.tmp; then \
47 if test ! -f version.i; then \
48 echo '#define GIT_VERSION ""' > version.i; \
49 fi; \
50 elif test ! -f version.i || \
51 test x"`cat version.i.tmp`" != x"`cat version.i`"; then \
52 mv version.i.tmp version.i; \
53 fi; \
54 rm -f version.i.tmp; \
55 true
56
57##
58## version.i is defined as a .PHONY target even if it's a real file,
59## we want the target to be re-run on every make.
60##
61.PHONY: version.i
62
63CLEANFILES = version.i.tmp
64
65##
66## Only clean "version.i" on dist-clean, we need to keep it on regular
67## clean when it's part of a dist tarball.
68##
69DISTCLEANFILES = version.i
70
6941b8e8 71# Core API
9ffc0257 72babeltraceincludedir = "$(includedir)/babeltrace"
0ec662bd
JD
73babeltraceinclude_HEADERS = \
74 babeltrace/babeltrace.h \
7a6224c4 75 babeltrace/logging.h \
c057dea0
PP
76 babeltrace/ref.h \
77 babeltrace/types.h \
78 babeltrace/values.h \
79 babeltrace/version.h
0ec662bd 80
6941b8e8 81# Legacy API (for CTF writer)
9ffc0257 82babeltracectfincludedir = "$(includedir)/babeltrace/ctf"
64a35d1b 83babeltracectfinclude_HEADERS = \
dc3fffef 84 babeltrace/ctf/events.h
273b65be 85
6941b8e8 86# CTF writer API
9ffc0257 87babeltracectfwriterincludedir = "$(includedir)/babeltrace/ctf-writer"
273b65be 88babeltracectfwriterinclude_HEADERS = \
3dca2276 89 babeltrace/ctf-writer/clock-class.h \
46bd0f2b 90 babeltrace/ctf-writer/clock.h \
46bd0f2b 91 babeltrace/ctf-writer/event-fields.h \
46bd0f2b 92 babeltrace/ctf-writer/event.h \
3dca2276
PP
93 babeltrace/ctf-writer/event-types.h \
94 babeltrace/ctf-writer/fields.h \
95 babeltrace/ctf-writer/field-types.h \
c057dea0 96 babeltrace/ctf-writer/stream-class.h \
adc315b8 97 babeltrace/ctf-writer/stream.h \
3dca2276 98 babeltrace/ctf-writer/trace.h \
c057dea0 99 babeltrace/ctf-writer/writer.h
adc315b8 100
6941b8e8 101# CTF IR API
9ffc0257 102babeltracectfirincludedir = "$(includedir)/babeltrace/ctf-ir"
adc315b8 103babeltracectfirinclude_HEADERS = \
ac0c6bdd 104 babeltrace/ctf-ir/clock-class.h \
c057dea0 105 babeltrace/ctf-ir/clock-value.h \
1ddd69e6 106 babeltrace/ctf-ir/clock.h \
272df73e 107 babeltrace/ctf-ir/event-class.h \
c057dea0 108 babeltrace/ctf-ir/event.h \
312c056a 109 babeltrace/ctf-ir/event-header-field.h \
b011f6b0 110 babeltrace/ctf-ir/field-path.h \
c057dea0
PP
111 babeltrace/ctf-ir/field-types.h \
112 babeltrace/ctf-ir/fields.h \
f79cf0f0 113 babeltrace/ctf-ir/packet.h \
312c056a
PP
114 babeltrace/ctf-ir/packet-context-field.h \
115 babeltrace/ctf-ir/packet-header-field.h \
bc37ae52 116 babeltrace/ctf-ir/stream-class.h \
c057dea0 117 babeltrace/ctf-ir/stream.h \
654c1444 118 babeltrace/ctf-ir/trace.h \
8bf65fbd
JG
119 babeltrace/ctf-ir/utils.h \
120 babeltrace/ctf-ir/visitor.h
70bd0a12 121
6941b8e8 122# Plugin and plugin development API
9ffc0257 123babeltracepluginincludedir = "$(includedir)/babeltrace/plugin"
6ee873c6 124babeltraceplugininclude_HEADERS = \
c057dea0
PP
125 babeltrace/plugin/plugin-dev.h \
126 babeltrace/plugin/plugin.h
33b34c43 127
6941b8e8 128# Graph, component, and notification API
9ffc0257 129babeltracegraphincludedir = "$(includedir)/babeltrace/graph"
b2e0c907 130babeltracegraphinclude_HEADERS = \
8c0b8894 131 babeltrace/graph/clock-class-priority-map.h \
b2e0c907
PP
132 babeltrace/graph/component-class-filter.h \
133 babeltrace/graph/component-class-sink.h \
134 babeltrace/graph/component-class-source.h \
135 babeltrace/graph/component-class.h \
136 babeltrace/graph/component-filter.h \
137 babeltrace/graph/component-sink.h \
138 babeltrace/graph/component-source.h \
cc469c42 139 babeltrace/graph/component-status.h \
b2e0c907
PP
140 babeltrace/graph/component.h \
141 babeltrace/graph/connection.h \
142 babeltrace/graph/graph.h \
2ec84d26
PP
143 babeltrace/graph/notification-discarded-events.h \
144 babeltrace/graph/notification-discarded-packets.h \
b2e0c907
PP
145 babeltrace/graph/notification-event.h \
146 babeltrace/graph/notification-heap.h \
ece3fb0f 147 babeltrace/graph/notification-inactivity.h \
b2e0c907 148 babeltrace/graph/notification-iterator.h \
b2e0c907 149 babeltrace/graph/notification-packet.h \
b2e0c907 150 babeltrace/graph/notification-stream.h \
c057dea0 151 babeltrace/graph/notification.h \
8ed535b5 152 babeltrace/graph/output-port-notification-iterator.h \
b2e0c907
PP
153 babeltrace/graph/port.h \
154 babeltrace/graph/private-component-filter.h \
155 babeltrace/graph/private-component-sink.h \
156 babeltrace/graph/private-component-source.h \
157 babeltrace/graph/private-component.h \
90157d89
PP
158 babeltrace/graph/private-connection-notification-iterator.h \
159 babeltrace/graph/private-connection-private-notification-iterator.h \
b2e0c907 160 babeltrace/graph/private-connection.h \
90157d89
PP
161 babeltrace/graph/private-port.h \
162 babeltrace/graph/query-executor.h
6ee873c6 163
e92927d1 164noinst_HEADERS = \
3dca2276 165 babeltrace/compat/stdlib-internal.h \
beb0fb75
PP
166 babeltrace/compat/fcntl-internal.h \
167 babeltrace/compat/glib-internal.h \
3dca2276
PP
168 babeltrace/compat/uuid-internal.h \
169 babeltrace/compat/unistd-internal.h \
beb0fb75 170 babeltrace/compat/stdio-internal.h \
58a2480d 171 babeltrace/compat/time-internal.h \
beb0fb75 172 babeltrace/compat/utc-internal.h \
3dca2276
PP
173 babeltrace/compat/memstream-internal.h \
174 babeltrace/compat/string-internal.h \
175 babeltrace/compat/limits-internal.h \
176 babeltrace/compat/mman-internal.h \
177 babeltrace/compat/socket-internal.h \
178 babeltrace/common-internal.h \
179 babeltrace/bitfield-internal.h \
180 babeltrace/object-internal.h \
312c056a 181 babeltrace/object-pool-internal.h \
3dca2276
PP
182 babeltrace/plugin/plugin-internal.h \
183 babeltrace/plugin/plugin-so-internal.h \
184 babeltrace/plugin/python-plugin-provider-internal.h \
185 babeltrace/assert-internal.h \
186 babeltrace/values-internal.h \
187 babeltrace/ctf-writer/fields-internal.h \
188 babeltrace/ctf-writer/stream-class-internal.h \
189 babeltrace/ctf-writer/event-internal.h \
190 babeltrace/ctf-writer/trace-internal.h \
191 babeltrace/ctf-writer/field-types-internal.h \
192 babeltrace/ctf-writer/serialize-internal.h \
193 babeltrace/ctf-writer/writer-internal.h \
194 babeltrace/ctf-writer/stream-internal.h \
195 babeltrace/ctf-writer/clock-internal.h \
196 babeltrace/ctf-writer/functor-internal.h \
197 babeltrace/mmap-align-internal.h \
198 babeltrace/align-internal.h \
199 babeltrace/logging-internal.h \
200 babeltrace/endian-internal.h \
201 babeltrace/ctf-ir/packet-internal.h \
272df73e 202 babeltrace/ctf-ir/event-class-internal.h \
3dca2276
PP
203 babeltrace/ctf-ir/utils-internal.h \
204 babeltrace/ctf-ir/validation-internal.h \
205 babeltrace/ctf-ir/fields-internal.h \
206 babeltrace/ctf-ir/stream-class-internal.h \
beb0fb75 207 babeltrace/ctf-ir/event-internal.h \
b011f6b0 208 babeltrace/ctf-ir/field-path-internal.h \
312c056a 209 babeltrace/ctf-ir/field-wrapper-internal.h \
3dca2276
PP
210 babeltrace/ctf-ir/trace-internal.h \
211 babeltrace/ctf-ir/clock-class-internal.h \
beb0fb75 212 babeltrace/ctf-ir/field-types-internal.h \
3dca2276
PP
213 babeltrace/ctf-ir/clock-value-internal.h \
214 babeltrace/ctf-ir/attributes-internal.h \
3f043b05 215 babeltrace/ctf-ir/stream-internal.h \
3dca2276 216 babeltrace/ctf-ir/resolve-internal.h \
8bf65fbd 217 babeltrace/ctf-ir/visitor-internal.h \
3dca2276
PP
218 babeltrace/prio-heap-internal.h \
219 babeltrace/lib-logging-internal.h \
220 babeltrace/compiler-internal.h \
221 babeltrace/babeltrace-internal.h \
222 babeltrace/assert-pre-internal.h \
223 babeltrace/ref-internal.h \
beb0fb75 224 babeltrace/graph/component-internal.h \
3dca2276 225 babeltrace/graph/notification-stream-internal.h \
beb0fb75 226 babeltrace/graph/connection-internal.h \
b2e0c907 227 babeltrace/graph/notification-event-internal.h \
3dca2276
PP
228 babeltrace/graph/query-executor-internal.h \
229 babeltrace/graph/graph-internal.h \
230 babeltrace/graph/component-class-sink-colander-internal.h \
ece3fb0f 231 babeltrace/graph/notification-inactivity-internal.h \
3dca2276
PP
232 babeltrace/graph/notification-heap-internal.h \
233 babeltrace/graph/component-source-internal.h \
234 babeltrace/graph/notification-discarded-elements-internal.h \
b2e0c907 235 babeltrace/graph/notification-packet-internal.h \
3dca2276
PP
236 babeltrace/graph/notification-iterator-internal.h \
237 babeltrace/graph/notification-internal.h \
238 babeltrace/graph/component-filter-internal.h \
239 babeltrace/graph/component-class-internal.h \
240 babeltrace/graph/component-sink-internal.h \
beb0fb75 241 babeltrace/graph/port-internal.h \
3dca2276 242 babeltrace/graph/clock-class-priority-map-internal.h \
45ff8fe4 243 babeltrace/list-internal.h \
7845e95f
MJ
244 version.h \
245 version.i
This page took 0.058284 seconds and 4 git commands to generate.