API: Packaging of JSON files.
[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
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 ioam_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 += ioam_trace_plugin.la
122
123 ########################################
124 # iOAM E2E plugin
125 ########################################
126
127 ioam_e2e_plugin_la_SOURCES =                \
128         ioam/encap/ip6_ioam_e2e.c               \
129         ioam/encap/ip6_ioam_seqno.c             \
130         ioam/encap/ip6_ioam_seqno_analyse.c
131
132 noinst_HEADERS +=                    \
133         ioam/encap/ip6_ioam_e2e.h        \
134         ioam/encap/ip6_ioam_seqno.h
135
136 vppplugins_LTLIBRARIES += ioam_e2e_plugin.la
137
138 # Remove *.la files
139 install-data-hook:
140         @(cd $(vpppluginsdir) && $(RM) $(vppplugins_LTLIBRARIES))
141         @(cd $(vppapitestpluginsdir) && $(RM) $(vppapitestplugins_LTLIBRARIES))
142
143
144 #
145 # Java code generation
146 #
147 jvpp_registry_root = ../../vpp-api/java
148 jvpp_registry_version = 16.12
149 jioam_trace_jarfile = jvpp-ioam-trace-$(PACKAGE_VERSION).jar
150 jvpp_package_dir = io/fd/vpp/jvpp/ioamtrace
151 jvpp_root = ioam/jvpp
152 jvpp_target_dir = target
153 jvpp_target = $(jvpp_root)/$(jvpp_target_dir)
154 api_file=$(srcdir)/ioam/lib-trace/trace.api
155
156
157 lib_LTLIBRARIES = libjvpp_ioamtrace.la
158 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
159 libjvpp_ioamtrace_la_LIBADD = -lvlibmemoryclient -lvlibapi -lvppinfra \
160                       -lpthread -lm -lrt -L$(jvpp_registry_root)/.libs -ljvpp_common
161 libjvpp_ioamtrace_la_LDFLAGS = -module
162 libjvpp_ioamtrace_la_CPPFLAGS = -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux -I../ -I$(srcdir)/../
163
164 BUILT_SOURCES += $(jvpp_root)/io_fd_vpp_jvpp_ioamtrace_JVppIoamtraceImpl.h
165
166 $(jvpp_root)/io_fd_vpp_jvpp_ioamtrace_JVppIoamtraceImpl.h: ioam_trace.api.json
167         dir=`pwd`;                                              \
168         mkdir -p $(jvpp_target); \
169         mkdir -p $(jvpp_root)/$(jvpp_package_dir);              \
170         cd $(jvpp_root)/$(jvpp_package_dir);                    \
171         mkdir -p dto future callfacade callback notification test;      \
172         @srcdir@/$(jvpp_registry_root)/jvpp/gen/jvpp_gen.py -i $${dir}/ioam_trace.api.json --plugin_name ioamtrace;             \
173         cd -;                                                   \
174         mv -f $(jvpp_root)/$(jvpp_package_dir)/jvpp_ioamtrace_gen.h $(jvpp_root)/jvpp_ioam_trace_gen.h;                                                 \
175         cp $(srcdir)/$(jvpp_root)/$(jvpp_package_dir)/test/*.java $(jvpp_root)/$(jvpp_package_dir)/test/;                               \
176         cd $(jvpp_root);                                \
177         $(JAVAC) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d $(jvpp_target_dir) $(jvpp_package_dir)/*.java \
178                 $(jvpp_package_dir)/dto/*.java \
179                 $(jvpp_package_dir)/callback/*.java \
180                 $(jvpp_package_dir)/notification/*.java \
181                 $(jvpp_package_dir)/future/*.java       \
182                 $(jvpp_package_dir)/callfacade/*.java   \
183                 $(jvpp_package_dir)/test/*.java \
184                 || (echo "ioam trace jvpp compilation failed: $$?"; exit 1);    \
185         $(JAVAH) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d . io.fd.vpp.jvpp.ioamtrace.JVppIoamtraceImpl ;
186
187 $(jioam_trace_jarfile): libjvpp_ioamtrace.la
188         cp .libs/libjvpp_ioamtrace.so.0.0.0 $(jvpp_target);                             \
189         cd $(jvpp_target);                              \
190         $(JAR) cfv $(JARFLAGS) ../../../$@ libjvpp_ioamtrace.so.0.0.0 $(jvpp_package_dir)/* ; cd ..;
191
192 ioam_trace.api.json:
193         @echo "  jIoam_trace API"; \
194         vppapigen --input $(api_file) --json ioam_trace.api.json;
195
196 all-local: $(jioam_trace_jarfile)