b00b088c0b187d70205e7582325538e1e6e247a0
[vpp.git] / plugins / ioam-plugin / Makefile.am
1 # Copyright (c) 2015 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 AUTOMAKE_OPTIONS = foreign subdir-objects
15
16 AM_CFLAGS = -Wall
17 AM_LDFLAGS = -module -shared -avoid-version
18
19 ########################################
20 # iOAM Proof of Transit
21 ########################################
22
23 ioam_pot_plugin_la_SOURCES =                    \
24         ioam/lib-pot/pot_util.c                 \
25         ioam/encap/ip6_ioam_pot.c               \
26         ioam/lib-pot/pot_util.h                 \
27         ioam/lib-pot/math64.h                   \
28         ioam/lib-pot/pot_api.c
29
30 BUILT_SOURCES =                                 \
31         ioam/lib-pot/pot.api.h                  \
32         ioam/lib-pot/pot.api.json
33
34 SUFFIXES = .api.h .api
35
36 %.api.h: %.api
37         mkdir -p `dirname $@` ; \
38         $(CC) $(CPPFLAGS) -E -P -C -x c $^ \
39         | vppapigen --input - --output $@ --show-name $@
40
41 %.api.json: %.api
42         @echo "  JSON APIGEN  " $@ ;                            \
43         mkdir -p `dirname $@` ;                                 \
44         $(CC) $(CPPFLAGS) -E -P -C -x c $^                      \
45         | vppapigen --input - --json $@
46
47 apidir = $(prefix)/ioam/
48 api_DATA =                                      \
49         ioam/lib-pot/pot.api.json               \
50         ioam/lib-trace/trace.api.json           \
51         ioam/export/ioam_export.api.json
52
53 noinst_HEADERS =                                \
54   ioam/lib-pot/pot_all_api_h.h                  \
55   ioam/lib-pot/pot_msg_enum.h                   \
56   ioam/lib-pot/pot.api.h                        \
57   ioam/lib-pot/pot_util.h                       \
58   ioam/lib-pot/math64.h
59
60 ioam_pot_test_plugin_la_SOURCES =               \
61         ioam/lib-pot/pot_test.c                 \
62         ioam/lib-pot/pot_plugin.api.h
63
64 vppapitestpluginsdir = ${libdir}/vpp_api_test_plugins
65 vpppluginsdir = ${libdir}/vpp_plugins
66
67 vppapitestplugins_LTLIBRARIES = ioam_pot_test_plugin.la
68 vppplugins_LTLIBRARIES = ioam_pot_plugin.la
69
70 ########################################
71 # iOAM trace export for IPv6
72 ########################################
73
74 ioam_export_plugin_la_SOURCES =   \
75 ioam/export/ioam_export.c         \
76 ioam/export/node.c                \
77 ioam/export/ioam_export.api.h     \
78 ioam/export/ioam_export_thread.c
79
80 BUILT_SOURCES +=                                \
81         ioam/export/ioam_export.api.h           \
82         ioam/export/ioam_export.api.json
83
84 noinst_HEADERS +=                       \
85   ioam/export/ioam_export_all_api_h.h   \
86   ioam/export/ioam_export_msg_enum.h    \
87   ioam/export/ioam_export.api.h
88
89 ioam_export_test_plugin_la_SOURCES =  \
90   ioam/export/ioam_export_test.c      \
91   ioam/export/ioam_export_plugin.api.h
92
93 vppapitestplugins_LTLIBRARIES += ioam_export_test_plugin.la
94 vppplugins_LTLIBRARIES += ioam_export_plugin.la
95
96 ########################################
97 # iOAM Trace
98 ########################################
99 libioam_trace_plugin_la_SOURCES =               \
100         ioam/lib-trace/trace_util.c             \
101         ioam/encap/ip6_ioam_trace.c             \
102         ioam/lib-trace/trace_util.h             \
103         ioam/lib-trace/trace_api.c
104
105 BUILT_SOURCES +=                                \
106         ioam/lib-trace/trace.api.h              \
107         ioam/lib-trace/trace.api.json
108
109 noinst_HEADERS +=                       \
110   ioam/export/ioam_export_all_api_h.h   \
111   ioam/lib-trace/trace_all_api_h.h      \
112   ioam/lib-trace/trace_msg_enum.h       \
113   ioam/lib-trace/trace.api.h            \
114   ioam/lib-trace/trace_util.h
115
116 ioam_trace_test_plugin_la_SOURCES =             \
117         ioam/lib-trace/trace_test.c             \
118         ioam/lib-trace/trace_plugin.api.h
119
120 vppapitestplugins_LTLIBRARIES += ioam_trace_test_plugin.la
121 vppplugins_LTLIBRARIES += libioam_trace_plugin.la
122
123 ########################################
124 # VxLAN-GPE
125 ########################################
126 libioam_vxlan_gpe_plugin_la_SOURCES =                   \
127         ioam/lib-vxlan-gpe/ioam_encap.c                 \
128         ioam/lib-vxlan-gpe/ioam_decap.c                 \
129         ioam/lib-vxlan-gpe/ioam_transit.c               \
130         ioam/lib-vxlan-gpe/ioam_pop.c                   \
131         ioam/lib-vxlan-gpe/vxlan_gpe_api.c              \
132         ioam/lib-vxlan-gpe/vxlan_gpe_ioam_trace.c       \
133         ioam/lib-vxlan-gpe/vxlan_gpe_ioam.c             \
134         ioam/export-vxlan-gpe/vxlan_gpe_ioam_export.c   \
135         ioam/export-vxlan-gpe/vxlan_gpe_node.c          \
136         ioam/export-vxlan-gpe/vxlan_gpe_ioam_export.api.h\
137         ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_thread.c
138
139 BUILT_SOURCES +=                                \
140         ioam/lib-vxlan-gpe/vxlan_gpe.api.h              \
141         ioam/lib-vxlan-gpe/vxlan_gpe.api.json           \
142         ioam/export-vxlan-gpe/vxlan_gpe_ioam_export.api.h               \
143         ioam/export-vxlan-gpe/vxlan_gpe_ioam_export.api.json
144
145 noinst_HEADERS +=                       \
146   ioam/export/ioam_export_all_api_h.h   \
147   ioam/lib-vxlan-gpe/vxlan_gpe_all_api_h.h                      \
148   ioam/lib-vxlan-gpe/vxlan_gpe_msg_enum.h                       \
149   ioam/lib-vxlan-gpe/vxlan_gpe.api.h                    \
150   ioam/lib-vxlan-gpe/vxlan_gpe_ioam_util.h                      \
151   ioam/lib-vxlan-gpe/vxlan_gpe_ioam_packet.h                    \
152   ioam/lib-vxlan-gpe/vxlan_gpe_ioam.h           \
153   ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_all_api_h.h       \
154   ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_msg_enum.h        \
155   ioam/export-vxlan-gpe/vxlan_gpe_ioam_export.api.h
156
157 ioam_vxlan_gpe_test_plugin_la_SOURCES =         \
158         ioam/lib-vxlan-gpe/vxlan_gpe_test.c                     \
159         ioam/lib-vxlan-gpe/vxlan_gpe_plugin.api.h
160
161 libioam_vxlan_gpe_plugin_la_LIBADD = libioam_trace_plugin.la
162
163 vppapitestplugins_LTLIBRARIES += ioam_vxlan_gpe_test_plugin.la
164 vppplugins_LTLIBRARIES += libioam_vxlan_gpe_plugin.la
165
166 vxlan_gpe_ioam_export_test_plugin_la_SOURCES =          \
167   ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_test.c      \
168   ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_plugin.api.h
169
170 vppapitestplugins_LTLIBRARIES += vxlan_gpe_ioam_export_test_plugin.la
171
172 ########################################
173 # iOAM E2E plugin
174 ########################################
175
176 ioam_e2e_plugin_la_SOURCES =                \
177         ioam/encap/ip6_ioam_e2e.c               \
178         ioam/encap/ip6_ioam_seqno.c             \
179         ioam/encap/ip6_ioam_seqno_analyse.c
180
181 noinst_HEADERS +=                    \
182         ioam/encap/ip6_ioam_e2e.h        \
183         ioam/encap/ip6_ioam_seqno.h
184
185 vppplugins_LTLIBRARIES += ioam_e2e_plugin.la
186
187 # Remove *.la files
188 install-data-hook:
189         @(cd $(vpppluginsdir) && $(RM) $(vppplugins_LTLIBRARIES))
190         @(cd $(vppapitestpluginsdir) && $(RM) $(vppapitestplugins_LTLIBRARIES))
191
192
193 #
194 # Java code generation
195 #
196 jvpp_registry_root = ../../vpp-api/java
197 jvpp_registry_version = 17.04
198 jioam_trace_jarfile = jvpp-ioam-trace-$(PACKAGE_VERSION).jar
199 jvpp_trace_package_dir = io/fd/vpp/jvpp/ioamtrace
200 jvpp_root = ioam/jvpp
201 jvpp_target_dir = target
202 jvpp_target = $(jvpp_root)/$(jvpp_target_dir)
203 trace_api_file=$(srcdir)/ioam/lib-trace/trace.api
204
205
206 lib_LTLIBRARIES = libjvpp_ioamtrace.la
207 libjvpp_ioamtrace_la_SOURCES = ioam/lib-trace/trace.api.h ioam/lib-trace/jvpp_ioam_trace.c ioam/jvpp/io_fd_vpp_jvpp_ioam_trace_JVppIoamTraceImpl.h
208 libjvpp_ioamtrace_la_LIBADD = -lvlibmemoryclient -lvlibapi -lvppinfra \
209                       -lpthread -lm -lrt -L$(jvpp_registry_root)/.libs -ljvpp_common
210 libjvpp_ioamtrace_la_LDFLAGS = -module
211 libjvpp_ioamtrace_la_CPPFLAGS = -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux -I../ -I$(srcdir)/../
212
213 BUILT_SOURCES += $(jvpp_root)/io_fd_vpp_jvpp_ioamtrace_JVppIoamtraceImpl.h
214
215 $(jvpp_root)/io_fd_vpp_jvpp_ioamtrace_JVppIoamtraceImpl.h: ioam_trace.api.json
216         dir=`pwd`;                                              \
217         mkdir -p $(jvpp_target); \
218         mkdir -p $(jvpp_root)/$(jvpp_trace_package_dir);                \
219         cd $(jvpp_root)/$(jvpp_trace_package_dir);                      \
220         mkdir -p dto future callfacade callback notification test;      \
221         @srcdir@/$(jvpp_registry_root)/jvpp/gen/jvpp_gen.py -i $${dir}/ioam_trace.api.json --plugin_name ioamtrace;             \
222         cd -;                                                   \
223         mv -f $(jvpp_root)/$(jvpp_trace_package_dir)/jvpp_ioamtrace_gen.h $(jvpp_root)/jvpp_ioam_trace_gen.h;                                                   \
224         cp $(srcdir)/$(jvpp_root)/$(jvpp_trace_package_dir)/test/*.java $(jvpp_root)/$(jvpp_trace_package_dir)/test/;                           \
225         cd $(jvpp_root);                                \
226         $(JAVAC) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d $(jvpp_target_dir) $(jvpp_trace_package_dir)/*.java \
227                 $(jvpp_trace_package_dir)/dto/*.java \
228                 $(jvpp_trace_package_dir)/callback/*.java \
229                 $(jvpp_trace_package_dir)/notification/*.java \
230                 $(jvpp_trace_package_dir)/future/*.java         \
231                 $(jvpp_trace_package_dir)/callfacade/*.java     \
232                 $(jvpp_trace_package_dir)/test/*.java \
233                 || (echo "ioam trace jvpp compilation failed: $$?"; exit 1);    \
234         $(JAVAH) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d . io.fd.vpp.jvpp.ioamtrace.JVppIoamtraceImpl ;
235
236 $(jioam_trace_jarfile): libjvpp_ioamtrace.la
237         cp .libs/libjvpp_ioamtrace.so.0.0.0 $(jvpp_target);                             \
238         cd $(jvpp_target);                              \
239         $(JAR) cfv $(JARFLAGS) ../../../$@ libjvpp_ioamtrace.so.0.0.0 $(jvpp_trace_package_dir)/* ; cd ..;
240
241 ioam_trace.api.json:
242         @echo "  jIoam_trace API"; \
243         vppapigen --input $(trace_api_file) --json ioam_trace.api.json;
244
245 all-local: $(jioam_trace_jarfile)
246
247
248 jioam_pot_jarfile = jvpp-ioam-pot-$(PACKAGE_VERSION).jar
249 jvpp_pot_package_dir = io/fd/vpp/jvpp/ioampot
250 pot_api_file=$(srcdir)/ioam/lib-pot/pot.api
251
252
253 lib_LTLIBRARIES += libjvpp_ioampot.la
254 libjvpp_ioampot_la_SOURCES = ioam/lib-pot/pot.api.h ioam/lib-pot/jvpp_ioam_pot.c ioam/jvpp/io_fd_vpp_jvpp_ioam_pot_JVppIoamPotImpl.h
255 libjvpp_ioampot_la_LIBADD = -lvlibmemoryclient -lvlibapi -lvppinfra \
256                       -lpthread -lm -lrt -L$(jvpp_registry_root)/.libs -ljvpp_common
257 libjvpp_ioampot_la_LDFLAGS = -module
258 libjvpp_ioampot_la_CPPFLAGS = -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux -I../ -I$(srcdir)/../
259
260 BUILT_SOURCES += $(jvpp_root)/io_fd_vpp_jvpp_ioampot_JVppIoampotImpl.h
261
262 $(jvpp_root)/io_fd_vpp_jvpp_ioampot_JVppIoampotImpl.h: ioam_pot.api.json
263         dir=`pwd`;                                              \
264         mkdir -p $(jvpp_target); \
265         mkdir -p $(jvpp_root)/$(jvpp_pot_package_dir);          \
266         cd $(jvpp_root)/$(jvpp_pot_package_dir);                        \
267         mkdir -p dto future callfacade callback notification test;      \
268         @srcdir@/$(jvpp_registry_root)/jvpp/gen/jvpp_gen.py -i $${dir}/ioam_pot.api.json --plugin_name ioampot;         \
269         cd -;                                                   \
270         mv -f $(jvpp_root)/$(jvpp_pot_package_dir)/jvpp_ioampot_gen.h $(jvpp_root)/jvpp_ioam_pot_gen.h;                                                 \
271         cp $(srcdir)/$(jvpp_root)/$(jvpp_pot_package_dir)/test/*.java $(jvpp_root)/$(jvpp_pot_package_dir)/test/;                               \
272         cd $(jvpp_root);                                \
273         $(JAVAC) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d $(jvpp_target_dir) $(jvpp_pot_package_dir)/*.java \
274                 $(jvpp_pot_package_dir)/dto/*.java \
275                 $(jvpp_pot_package_dir)/callback/*.java \
276                 $(jvpp_pot_package_dir)/notification/*.java \
277                 $(jvpp_pot_package_dir)/future/*.java   \
278                 $(jvpp_pot_package_dir)/callfacade/*.java       \
279                 $(jvpp_pot_package_dir)/test/*.java \
280                 || (echo "ioam pot jvpp compilation failed: $$?"; exit 1);      \
281         $(JAVAH) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d . io.fd.vpp.jvpp.ioampot.JVppIoampotImpl ;
282
283 $(jioam_pot_jarfile): libjvpp_ioampot.la
284         cp .libs/libjvpp_ioampot.so.0.0.0 $(jvpp_target);                               \
285         cd $(jvpp_target);                              \
286         $(JAR) cfv $(JARFLAGS) ../../../$@ libjvpp_ioampot.so.0.0.0 $(jvpp_pot_package_dir)/* ; cd ..;
287
288 ioam_pot.api.json:
289         @echo "  jIoam_pot API"; \
290         vppapigen --input $(pot_api_file) --json ioam_pot.api.json;
291
292 all-local: $(jioam_pot_jarfile)
293
294 jioam_export_jarfile = jvpp-ioam-export-$(PACKAGE_VERSION).jar
295 jvpp_export_package_dir = io/fd/vpp/jvpp/ioamexport
296 export_api_file=$(srcdir)/ioam/export/ioam_export.api
297
298
299 lib_LTLIBRARIES += libjvpp_ioamexport.la
300 libjvpp_ioamexport_la_SOURCES = ioam/export/export.api.h ioam/export/jvpp_ioam_export.c ioam/jvpp/io_fd_vpp_jvpp_ioam_export_JVppIoamexportImpl.h
301 libjvpp_ioamexport_la_LIBADD = -lvlibmemoryclient -lvlibapi -lvppinfra \
302                       -lpthread -lm -lrt -L$(jvpp_registry_root)/.libs -ljvpp_common
303 libjvpp_ioamexport_la_LDFLAGS = -module
304 libjvpp_ioamexport_la_CPPFLAGS = -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux -I../ -I$(srcdir)/../
305
306 BUILT_SOURCES += $(jvpp_root)/io_fd_vpp_jvpp_ioamexport_JVppIoamexportImpl.h
307
308 $(jvpp_root)/io_fd_vpp_jvpp_ioamexport_JVppIoamexportImpl.h: ioam_export.api.json
309         dir=`pwd`;                                              \
310         mkdir -p $(jvpp_target); \
311         mkdir -p $(jvpp_root)/$(jvpp_export_package_dir);               \
312         cd $(jvpp_root)/$(jvpp_export_package_dir);                     \
313         mkdir -p dto future callfacade callback notification test;      \
314         @srcdir@/$(jvpp_registry_root)/jvpp/gen/jvpp_gen.py -i $${dir}/ioam_export.api.json --plugin_name ioamexport;           \
315         cd -;                                                   \
316         mv -f $(jvpp_root)/$(jvpp_export_package_dir)/jvpp_ioamexport_gen.h $(jvpp_root)/jvpp_ioam_export_gen.h;                                                        \
317         cp $(srcdir)/$(jvpp_root)/$(jvpp_export_package_dir)/test/*.java $(jvpp_root)/$(jvpp_export_package_dir)/test/;                         \
318         cd $(jvpp_root);                                \
319         $(JAVAC) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d $(jvpp_target_dir) $(jvpp_export_package_dir)/*.java \
320                 $(jvpp_export_package_dir)/dto/*.java \
321                 $(jvpp_export_package_dir)/callback/*.java \
322                 $(jvpp_export_package_dir)/notification/*.java \
323                 $(jvpp_export_package_dir)/future/*.java        \
324                 $(jvpp_export_package_dir)/callfacade/*.java    \
325                 $(jvpp_export_package_dir)/test/*.java \
326                 || (echo "ioam export jvpp compilation failed: $$?"; exit 1);   \
327         $(JAVAH) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d . io.fd.vpp.jvpp.ioamexport.JVppIoamexportImpl ;
328
329 $(jioam_export_jarfile): libjvpp_ioamexport.la
330         cp .libs/libjvpp_ioamexport.so.0.0.0 $(jvpp_target);                            \
331         cd $(jvpp_target);                              \
332         $(JAR) cfv $(JARFLAGS) ../../../$@ libjvpp_ioamexport.so.0.0.0 $(jvpp_export_package_dir)/* ; cd ..;
333
334 ioam_export.api.json:
335         @echo "  jIoam_export API"; \
336         vppapigen --input $(export_api_file) --json ioam_export.api.json;
337
338 all-local: $(jioam_export_jarfile)