c66c6cd5e7a91715d870194b11635cc6dfa3e5bb
[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 ioam/lib-pot/pot.py
32
33 SUFFIXES = .api.h .api
34
35 %.api.h: %.api
36         mkdir -p `dirname $@` ; \
37         $(CC) $(CPPFLAGS) -E -P -C -x c $^ \
38         | vppapigen --input - --output $@ --show-name $@
39
40 %.py: %.api
41         $(info Creating Python binding for $@)
42         $(CC) $(CPPFLAGS) -E -P -C -x c $<                              \
43         | vppapigen --input - --python -                                \
44         | pyvppapigen.py --input - > $@
45
46 pyapidir = ${prefix}/vpp_papi_plugins
47 pyapi_DATA = ioam/lib-pot/pot.py
48
49 noinst_HEADERS =                                \
50   ioam/lib-pot/pot_all_api_h.h                  \
51   ioam/lib-pot/pot_msg_enum.h                   \
52   ioam/lib-pot/pot.api.h                        \
53   ioam/lib-pot/pot_util.h                       \
54   ioam/lib-pot/math64.h
55
56 ioam_pot_test_plugin_la_SOURCES =               \
57         ioam/lib-pot/pot_test.c                 \
58         ioam/lib-pot/pot_plugin.api.h
59
60 vppapitestpluginsdir = ${libdir}/vpp_api_test_plugins
61 vpppluginsdir = ${libdir}/vpp_plugins
62
63 vppapitestplugins_LTLIBRARIES = ioam_pot_test_plugin.la
64 vppplugins_LTLIBRARIES = ioam_pot_plugin.la
65
66 ########################################
67 # iOAM trace export
68 ########################################
69
70 ioam_export_plugin_la_SOURCES =   \
71 ioam/export/ioam_export.c         \
72 ioam/export/node.c                \
73 ioam/export/ioam_export.api.h     \
74 ioam/export/ioam_export_thread.c
75
76 BUILT_SOURCES += ioam/export/ioam_export.api.h
77
78 noinst_HEADERS +=                       \
79   ioam/export/ioam_export_all_api_h.h   \
80   ioam/export/ioam_export_msg_enum.h    \
81   ioam/export/ioam_export.api.h
82
83 ioam_export_test_plugin_la_SOURCES =  \
84   ioam/export/ioam_export_test.c      \
85   ioam/export/ioam_export_plugin.api.h
86
87 vppapitestplugins_LTLIBRARIES += ioam_export_test_plugin.la
88 vppplugins_LTLIBRARIES += ioam_export_plugin.la
89
90 ########################################
91 # iOAM Trace
92 ########################################
93 ioam_trace_plugin_la_SOURCES =                  \
94         ioam/lib-trace/trace_util.c                     \
95         ioam/encap/ip6_ioam_trace.c             \
96         ioam/lib-trace/trace_util.h                     \
97         ioam/lib-trace/trace_api.c
98
99 BUILT_SOURCES +=                                        \
100         ioam/lib-trace/trace.api.h ioam/lib-trace/trace.py
101
102 pyapi_DATA += ioam/lib-trace/trace.py
103
104 noinst_HEADERS +=                       \
105   ioam/export/ioam_export_all_api_h.h   \
106   ioam/lib-trace/trace_all_api_h.h                      \
107   ioam/lib-trace/trace_msg_enum.h                       \
108   ioam/lib-trace/trace.api.h                    \
109   ioam/lib-trace/trace_util.h
110
111 ioam_trace_test_plugin_la_SOURCES =             \
112         ioam/lib-trace/trace_test.c                     \
113         ioam/lib-trace/trace_plugin.api.h
114
115 vppapitestplugins_LTLIBRARIES += ioam_trace_test_plugin.la
116 vppplugins_LTLIBRARIES += ioam_trace_plugin.la
117
118 ########################################
119 # iOAM E2E plugin
120 ########################################
121
122 ioam_e2e_plugin_la_SOURCES =                \
123         ioam/encap/ip6_ioam_e2e.c               \
124         ioam/encap/ip6_ioam_seqno.c             \
125         ioam/encap/ip6_ioam_seqno_analyse.c
126
127 noinst_HEADERS +=                    \
128         ioam/encap/ip6_ioam_e2e.h        \
129         ioam/encap/ip6_ioam_seqno.h
130
131 vppplugins_LTLIBRARIES += ioam_e2e_plugin.la
132
133 # Remove *.la files
134 install-data-hook:
135         @(cd $(vpppluginsdir) && $(RM) $(vppplugins_LTLIBRARIES))
136         @(cd $(vppapitestpluginsdir) && $(RM) $(vppapitestplugins_LTLIBRARIES))
137
138
139 #
140 # Java code generation
141 #
142 jvpp_registry_root = ../../vpp-api/java
143 jvpp_registry_version = 16.12
144 jioam_trace_jarfile = jvpp-ioam-trace-$(PACKAGE_VERSION).jar
145 jvpp_package_dir = io/fd/vpp/jvpp/ioamtrace
146 jvpp_root = ioam/jvpp
147 jvpp_target_dir = target
148 jvpp_target = $(jvpp_root)/$(jvpp_target_dir)
149 api_file=$(srcdir)/ioam/lib-trace/trace.api
150
151
152 lib_LTLIBRARIES = libjvpp_ioamtrace.la
153 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
154 libjvpp_ioamtrace_la_LIBADD = -lvlibmemoryclient -lvlibapi -lvppinfra \
155                       -lpthread -lm -lrt -L$(jvpp_registry_root)/.libs -ljvpp_common
156 libjvpp_ioamtrace_la_LDFLAGS = -module
157 libjvpp_ioamtrace_la_CPPFLAGS = -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux -I../ -I$(srcdir)/../
158
159 BUILT_SOURCES += $(jvpp_root)/io_fd_vpp_jvpp_ioamtrace_JVppIoamtraceImpl.h
160
161 $(jvpp_root)/io_fd_vpp_jvpp_ioamtrace_JVppIoamtraceImpl.h: ioam_trace.api.json
162         dir=`pwd`;                                              \
163         mkdir -p $(jvpp_target); \
164         mkdir -p $(jvpp_root)/$(jvpp_package_dir);              \
165         cd $(jvpp_root)/$(jvpp_package_dir);                    \
166         mkdir -p dto future callfacade callback notification test;      \
167         @srcdir@/$(jvpp_registry_root)/jvpp/gen/jvpp_gen.py -i $${dir}/ioam_trace.api.json --plugin_name ioamtrace;             \
168         cd -;                                                   \
169         mv -f $(jvpp_root)/$(jvpp_package_dir)/jvpp_ioamtrace_gen.h $(jvpp_root)/jvpp_ioam_trace_gen.h;                                                 \
170         cp $(srcdir)/$(jvpp_root)/$(jvpp_package_dir)/test/*.java $(jvpp_root)/$(jvpp_package_dir)/test/;                               \
171         cd $(jvpp_root);                                \
172         $(JAVAC) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d $(jvpp_target_dir) $(jvpp_package_dir)/*.java \
173                 $(jvpp_package_dir)/dto/*.java \
174                 $(jvpp_package_dir)/callback/*.java \
175                 $(jvpp_package_dir)/notification/*.java \
176                 $(jvpp_package_dir)/future/*.java       \
177                 $(jvpp_package_dir)/callfacade/*.java   \
178                 $(jvpp_package_dir)/test/*.java \
179                 || (echo "ioam trace jvpp compilation failed: $$?"; exit 1);    \
180         $(JAVAH) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d . io.fd.vpp.jvpp.ioamtrace.JVppIoamtraceImpl ;
181
182 $(jioam_trace_jarfile): libjvpp_ioamtrace.la
183         cp .libs/libjvpp_ioamtrace.so.0.0.0 $(jvpp_target);                             \
184         cd $(jvpp_target);                              \
185         $(JAR) cfv $(JARFLAGS) ../../../$@ libjvpp_ioamtrace.so.0.0.0 $(jvpp_package_dir)/* ; cd ..;
186
187 ioam_trace.api.json:
188         @echo "  jIoam_trace API"; \
189         vppapigen --input $(api_file) --json ioam_trace.api.json;
190
191 all-local: $(jioam_trace_jarfile)