1 | # $Id: Makefile.kmk 59491 2016-01-27 12:37:34Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the VBox web service.
|
---|
4 | #
|
---|
5 | # Warning! This is a seriously complicated makefile!
|
---|
6 | #
|
---|
7 |
|
---|
8 | #
|
---|
9 | # Copyright (C) 2007-2015 Oracle Corporation
|
---|
10 | #
|
---|
11 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | # available from http://www.virtualbox.org. This file is free software;
|
---|
13 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | # General Public License (GPL) as published by the Free Software
|
---|
15 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | #
|
---|
19 |
|
---|
20 | # Define VBOX_GSOAP_INSTALLED to something if you have gSOAP's
|
---|
21 | # "wsdl2h" and "soapcpp2" executables on your PATH somewhere.
|
---|
22 |
|
---|
23 | #
|
---|
24 | # Here's an overview how all this works. It's complicated. Essentially,
|
---|
25 | # lots of files get generated automatically from our XML XIDL file that
|
---|
26 | # describes the VirtualBox API (../idl/VirtualBox.xidl); as a result,
|
---|
27 | # no manual coding is necessary when the API changes. All generated
|
---|
28 | # web service code gets adjusted automatically.
|
---|
29 | #
|
---|
30 | # In more detail:
|
---|
31 | #
|
---|
32 | # 1) We use xsltproc and websrv-wsdl.xsl to generate a WSDL file from
|
---|
33 | # our XML IDL file. WSDL (Web Service Description language) is an XML
|
---|
34 | # industry standard that publicly describes a web service.
|
---|
35 | # So, the WSDL generated here describes the VirtualBox web
|
---|
36 | # service to third-party clients; for example, one can feed it to
|
---|
37 | # Java or Perl or some other toolkit that understands WSDL and thus
|
---|
38 | # easily write a short script that connects to the web service properly.
|
---|
39 | # This WSDL file ends up in $(VBOXWEB_OUT_DIR)/vboxweb.wsdl.
|
---|
40 | #
|
---|
41 | # 2) We use xsltproc and websrv-wsdl2gsoapH.xsl to generate a so-called
|
---|
42 | # "gSoap header file": $(VBOXWEB_OUT_DIR)/gsoapH_from_xslt.h from
|
---|
43 | # the WSDL previously generated.
|
---|
44 | # This file looks like a C header file, but really isn't meant
|
---|
45 | # to be included by a C compiler. Instead, it just happens to be the
|
---|
46 | # format that gSOAP uses to specify SOAP interfaces instead of WSDL.
|
---|
47 | # (The reason for this appears to be that gSOAP predates WSDL and
|
---|
48 | # thus needed some format to describe the syntax of a web service.)
|
---|
49 | #
|
---|
50 | # Note that gSOAP now also comes with its own WSDL-to-gsoap.h converter,
|
---|
51 | # but the readme mentions some funny license restrictions, so instead we
|
---|
52 | # have our own converter in XSLT.
|
---|
53 | #
|
---|
54 | # 3) We then feed that pseudo-header file to gSOAP's soapcpp2 compiler,
|
---|
55 | # which generates a ton of files in $(VBOXWEB_OUT_DIR), most importantly:
|
---|
56 | #
|
---|
57 | # SOAP_CLIENT_H = $(VBOXWEB_OUT_DIR)/soapStub.h (header file for webservice clients)
|
---|
58 | # SOAP_SERVER_H = $(VBOXWEB_OUT_DIR)/soapH.h (header file for webservice servers)
|
---|
59 | #
|
---|
60 | # These are "real" header files that one can use to program a) a webservice client
|
---|
61 | # and b) a webservice server. Of course to build b) one will have to write method
|
---|
62 | # implementations with useful code that does something. This is where more
|
---|
63 | # code generation via XSLT comes in:
|
---|
64 | #
|
---|
65 | # 4) We use xsltproc to generate tons of C++ code directly from the XIDL that
|
---|
66 | # maps each SOAP method to our COM methods. This large C++ file is
|
---|
67 | # $(VBOXWEB_OUT_DIR)/methodmaps.cpp. The actual webservice executable (vboxwebsrv,
|
---|
68 | # which acts as an HTTP server) is composed of this file, plus hard-coded
|
---|
69 | # method implementations in vboxweb.cpp, plus gSOAP library code for the HTTP
|
---|
70 | # server.
|
---|
71 | #
|
---|
72 |
|
---|
73 | SUB_DEPTH = ../../../..
|
---|
74 | include $(KBUILD_PATH)/subheader.kmk
|
---|
75 |
|
---|
76 | #
|
---|
77 | # Find the gSOAP toolkit.
|
---|
78 | #
|
---|
79 | # Note! We're not using the gSOAP toolkit correctly. The main issue is that
|
---|
80 | # compiling soapcpp2.cpp instead of using the library. So, in order
|
---|
81 | # to make this work with a locally installed gSOAP toolkit there are
|
---|
82 | # some hoops to jump thru to say the least... Shipping soapcpp2.cpp/h
|
---|
83 | # is out of the question without also including the two soap tools.
|
---|
84 | #
|
---|
85 | # Some observations on distros for OSE / configure:
|
---|
86 | # The proposed gentoo ebuild screws up several things in the install phase
|
---|
87 | # and thus fails to ship stdsoap2.cpp and relatives.
|
---|
88 | #
|
---|
89 | # debian (2.7.9l-0.2) stuffs stdsoap2.cpp and a handful of the import files
|
---|
90 | # into /usr/include/gsoap.
|
---|
91 | #
|
---|
92 | # fedora (2.7.12-fc10.x86_64) uses the default install layout and does not
|
---|
93 | # ship stdsoap2.cpp and friends.
|
---|
94 | #
|
---|
95 | ifeq ($(VBOX_GSOAP_INSTALLED),)
|
---|
96 | VBOX_GSOAP_INSTALLED = 1
|
---|
97 | VBOX_PATH_GSOAP := $(lastword $(sort $(wildcard $(KBUILD_DEVTOOLS)/common/gsoap/*)))
|
---|
98 | ifeq ($(VBOX_PATH_GSOAP),)
|
---|
99 | VBOX_PATH_GSOAP := $(lastword $(sort $(wildcard $(KBUILD_DEVTOOLS_HST)/gsoap/*)))
|
---|
100 | endif
|
---|
101 | if "$(VBOX_PATH_GSOAP)" == "" && defined(KBUILD_DEVTOOLS_HST)
|
---|
102 | VBOX_PATH_GSOAP := $(lastword $(sort $(wildcard $(KBUILD_DEVTOOLS_HST_ALT)/gsoap/*)))
|
---|
103 | endif
|
---|
104 | ifeq ($(VBOX_PATH_GSOAP),)
|
---|
105 | $(warning VBOX_PATH_GSOAP not found...)
|
---|
106 | VBOX_GSOAP_INSTALLED =
|
---|
107 | endif
|
---|
108 | else
|
---|
109 | VBOX_PATH_GSOAP := $(VBOX_PATH_GSOAP)
|
---|
110 | endif
|
---|
111 | VBOX_PATH_GSOAP_BIN := $(strip $(VBOX_PATH_GSOAP_BIN))
|
---|
112 | if "$(VBOX_PATH_GSOAP_BIN)" == ""
|
---|
113 | VBOX_PATH_GSOAP_BIN := $(VBOX_PATH_GSOAP)/bin
|
---|
114 | if "$(KBUILD_HOST)" == "darwin"
|
---|
115 | VBOX_PATH_GSOAP_BIN := $(VBOX_PATH_GSOAP_BIN)/macosx
|
---|
116 | else if "$(KBUILD_HOST)" == "win"
|
---|
117 | VBOX_PATH_GSOAP_BIN := $(VBOX_PATH_GSOAP_BIN)/win32
|
---|
118 | else if "$(KBUILD_HOST)" == "linux"
|
---|
119 | VBOX_PATH_GSOAP_BIN := $(VBOX_PATH_GSOAP_BIN)/linux386
|
---|
120 | else if "$(KBUILD_HOST)" == "solaris"
|
---|
121 | if $(VBOX_SOLARIS_11_VERSION) >= 164
|
---|
122 | VBOX_PATH_GSOAP_BIN := $(VBOX_PATH_GSOAP_BIN)/solaris11.x86
|
---|
123 | else
|
---|
124 | VBOX_PATH_GSOAP_BIN := $(VBOX_PATH_GSOAP_BIN)/solaris.x86
|
---|
125 | endif
|
---|
126 | else
|
---|
127 | VBOX_PATH_GSOAP_BIN := $(VBOX_PATH_GSOAP_BIN)/$(KBUILD_HOST).x86
|
---|
128 | endif
|
---|
129 | if !exists($(VBOX_PATH_GSOAP_BIN))
|
---|
130 | VBOX_PATH_GSOAP_BIN := $(VBOX_PATH_GSOAP)/bin
|
---|
131 | endif
|
---|
132 | endif
|
---|
133 | VBOX_SOAPCPP2 := $(VBOX_PATH_GSOAP_BIN)/soapcpp2$(HOSTSUFF_EXE)
|
---|
134 | VBOX_WSDL2H := $(VBOX_PATH_GSOAP_BIN)/wsdl2h$(HOSTSUFF_EXE)
|
---|
135 | VBOX_STUBMAKER = $(firstword $(which stubmaker stubmaker.pl) stubmaker_not_found)
|
---|
136 | VBOX_WSDL2PY = $(firstword $(which wsdl2py) wsdl2py_not_found)
|
---|
137 |
|
---|
138 | VBOX_PATH_GSOAP_IMPORT := $(strip $(if $(VBOX_PATH_GSOAP_IMPORT),$(VBOX_PATH_GSOAP_IMPORT),$(VBOX_PATH_GSOAP)/import))
|
---|
139 | VBOX_GSOAP_INCS := $(strip $(if $(VBOX_GSOAP_INCS),$(VBOX_GSOAP_INCS),$(VBOX_PATH_GSOAP) $(VBOX_PATH_GSOAP_IMPORT) ))
|
---|
140 | # note: $(if $(defined FOO)) does not work here!
|
---|
141 | VBOX_GSOAP_CXX_SOURCES := $(strip $(if-expr "$(origin VBOX_GSOAP_CXX_SOURCES)" != "undefined",$(VBOX_GSOAP_CXX_SOURCES),$(VBOX_PATH_GSOAP)/stdsoap2.cpp))
|
---|
142 | VBOX_GSOAP_CXX_LIBS := $(strip $(if-expr "$(origin VBOX_GSOAP_CXX_LIBS)" != "undefined",$(VBOX_GSOAP_CXX_LIBS),))
|
---|
143 |
|
---|
144 |
|
---|
145 | #
|
---|
146 | # Globals
|
---|
147 | #
|
---|
148 | VBOXWEB_OUT_DIR := $(PATH_TARGET)/webservice
|
---|
149 | BLDDIRS += $(VBOXWEB_OUT_DIR)
|
---|
150 |
|
---|
151 | # The webservice location
|
---|
152 | VBOX_PATH_WEBSERVICE := $(PATH_SUB_CURRENT)
|
---|
153 |
|
---|
154 | # The IDL subdirectory (contains some XSLT files)
|
---|
155 | VBOX_PATH_IDL := $(abspath $(PATH_SUB_CURRENT)/../idl)
|
---|
156 |
|
---|
157 | # If this is set, all webservice files are considered out-of-date every time
|
---|
158 | # this makefile is touched. Otherwise, set this to empty.
|
---|
159 | RECOMPILE_ON_MAKEFILE_CURRENT := $(MAKEFILE_CURRENT)
|
---|
160 |
|
---|
161 | PATH_TARGET_SOAPDEMOXML := $(VBOXWEB_OUT_DIR)/demo_soapxml
|
---|
162 | PATH_TARGET_SOAPDEMOHEADERS := $(VBOXWEB_OUT_DIR)/demo_headers
|
---|
163 | PATH_TARGET_SOAPDEMONSMAPS := $(VBOXWEB_OUT_DIR)/demo_namespacemaps
|
---|
164 | PATH_TARGET_WEBTEST := $(VBOXWEB_OUT_DIR)/webtest
|
---|
165 |
|
---|
166 | # the original XIDL file (has to include documentation as we need it):
|
---|
167 | VBOXWEB_IDL_SRC_ORIG := $(VBOX_XIDL_FILE_SRC)
|
---|
168 | # the original XIDL file without documentation
|
---|
169 | VBOXWEB_IDL_SRC_STRIPPED := $(VBOX_XIDL_FILE)
|
---|
170 | # platform-specific XIDL file generated from $(VBOXWEB_IDL_SRC_STRIPPED):
|
---|
171 | VBOXWEB_IDL_SRC := $(VBOXWEB_OUT_DIR)/VirtualBox.xidl
|
---|
172 |
|
---|
173 | VBOXWEB_WSDL = $(VBOXWEB_OUT_DIR)/vboxweb.wsdl
|
---|
174 | VBOXWEBSERVICE_WSDL = $(VBOXWEB_OUT_DIR)/vboxwebService.wsdl
|
---|
175 |
|
---|
176 | VBOXWEB_TYPEMAP := $(VBOXWEB_OUT_DIR)/typemap.dat
|
---|
177 |
|
---|
178 | VBOXWEB_GSOAPH_FROM_XSLT := $(VBOXWEB_OUT_DIR)/gsoapH_from_xslt.h
|
---|
179 | ifdef VBOX_GSOAP_INSTALLED
|
---|
180 | VBOXWEB_GSOAPH_FROM_GSOAP := $(VBOXWEB_OUT_DIR)/gsoapH_from_gsoap.h
|
---|
181 | else
|
---|
182 | VBOXWEB_GSOAPH_FROM_GSOAP :=
|
---|
183 | endif
|
---|
184 | VBOXWEB_SOAP_CLIENT_H := $(VBOXWEB_OUT_DIR)/soapStub.h
|
---|
185 | VBOXWEB_SOAP_SERVER_H := $(VBOXWEB_OUT_DIR)/soapH.h
|
---|
186 |
|
---|
187 |
|
---|
188 | ifdef VBOX_GSOAP_VERBOSE
|
---|
189 | VBOXWEB_XSLTPROC_VERBOSE = --stringparam G_argDebug '1'
|
---|
190 | VBOXWEB_WSDL_VERBOSE = -v
|
---|
191 | else
|
---|
192 | VBOXWEB_SOAPCPP2_SKIP_FILES = -x
|
---|
193 | endif
|
---|
194 |
|
---|
195 |
|
---|
196 | ## @todo VBOXWEB_GSOAPH_FROM_XSLT should probably be a indirect dep of something.
|
---|
197 | VBOXWEB_OTHERS += \
|
---|
198 | $(VBOXWEB_GSOAPH_FROM_XSLT)
|
---|
199 |
|
---|
200 |
|
---|
201 | # disable -fvisibility=hidden as the SOAP stuff does not properly set the visibility attributes
|
---|
202 | TEMPLATE_VBOXWEBR3EXE = Webservices without -fvisibility
|
---|
203 | TEMPLATE_VBOXWEBR3EXE_EXTENDS = VBOXR3EXE
|
---|
204 | TEMPLATE_VBOXWEBR3EXE_CXXFLAGS = $(filter-out $(VBOX_GCC_fvisibility-hidden) $(VBOX_GCC_fvisibility-inlines-hidden),\
|
---|
205 | $(TEMPLATE_VBOXR3EXE_CXXFLAGS))
|
---|
206 |
|
---|
207 | ifdef VBOX_GSOAP_INSTALLED
|
---|
208 | ifndef VBOX_ONLY_SDK
|
---|
209 | #
|
---|
210 | # vboxsoap - Library used by both the programs (save build time).
|
---|
211 | #
|
---|
212 | LIBRARIES += vboxsoap
|
---|
213 | vboxsoap_TEMPLATE = VBOXWEBR3EXE
|
---|
214 | vboxsoap_CXXFLAGS.win += -bigobj
|
---|
215 | ifn1of ($(KBUILD_TARGET), win)
|
---|
216 | vboxsoap_CXXFLAGS += -Wno-shadow
|
---|
217 | endif
|
---|
218 | vboxsoap_INCS := \
|
---|
219 | $(VBOX_GSOAP_INCS) \
|
---|
220 | $(VBOXWEB_OUT_DIR) \
|
---|
221 | $(PATH_SUB_CURRENT)
|
---|
222 | ifdef VBOX_WITH_WEBSERVICES_SSL
|
---|
223 | vboxsoap_DEFS += WITH_OPENSSL
|
---|
224 | vboxsoap_SDKS += VBOX_OPENSSL2
|
---|
225 | endif
|
---|
226 | ifdef VBOX_WITHOUT_SPLIT_SOAPC
|
---|
227 | vboxsoap_SOURCES = \
|
---|
228 | $(VBOXWEB_OUT_DIR)/soapC.cpp
|
---|
229 | else
|
---|
230 | BLDPROGS += split-soapC
|
---|
231 | split-soapC_TEMPLATE = VBoxBldProg
|
---|
232 | split-soapC_SOURCES = split-soapC.cpp
|
---|
233 |
|
---|
234 | vboxsoap_SOURCES = \
|
---|
235 | $(VBOXWEB_OUT_DIR)/soapC-1.cpp \
|
---|
236 | $(VBOXWEB_OUT_DIR)/soapC-2.cpp \
|
---|
237 | $(VBOXWEB_OUT_DIR)/soapC-3.cpp \
|
---|
238 | $(VBOXWEB_OUT_DIR)/soapC-4.cpp \
|
---|
239 | $(VBOXWEB_OUT_DIR)/soapC-5.cpp \
|
---|
240 | $(VBOXWEB_OUT_DIR)/soapC-6.cpp \
|
---|
241 | $(VBOXWEB_OUT_DIR)/soapC-7.cpp \
|
---|
242 | $(VBOXWEB_OUT_DIR)/soapC-8.cpp \
|
---|
243 | $(VBOXWEB_OUT_DIR)/soapC-9.cpp \
|
---|
244 | $(VBOXWEB_OUT_DIR)/soapC-10.cpp \
|
---|
245 | $(VBOXWEB_OUT_DIR)/soapC-11.cpp \
|
---|
246 | $(VBOXWEB_OUT_DIR)/soapC-12.cpp \
|
---|
247 | $(VBOXWEB_OUT_DIR)/soapC-13.cpp \
|
---|
248 | $(VBOXWEB_OUT_DIR)/soapC-14.cpp \
|
---|
249 | $(VBOXWEB_OUT_DIR)/soapC-15.cpp \
|
---|
250 | $(VBOXWEB_OUT_DIR)/soapC-16.cpp \
|
---|
251 | $(VBOXWEB_OUT_DIR)/soapC-17.cpp \
|
---|
252 | $(VBOXWEB_OUT_DIR)/soapC-18.cpp \
|
---|
253 | $(VBOXWEB_OUT_DIR)/soapC-19.cpp \
|
---|
254 | $(VBOXWEB_OUT_DIR)/soapC-20.cpp
|
---|
255 | vboxsoap_CXXFLAGS += \
|
---|
256 | $(VBOX_GCC_Wno-vla)
|
---|
257 | endif
|
---|
258 | vboxsoap_CLEAN := $(vboxsoap_SOURCES) # lazy bird
|
---|
259 | vboxsoap_SOURCES += \
|
---|
260 | $(VBOX_GSOAP_CXX_SOURCES)
|
---|
261 | vboxsoap_ORDERDEPS = \
|
---|
262 | $(VBOXWEB_IDL_SRC) \
|
---|
263 | $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts
|
---|
264 | ifn1of ($(KBUILD_TARGET), win)
|
---|
265 | $(VBOX_GSOAP_CXX_SOURCES)_CXXFLAGS = -Wno-format
|
---|
266 | # currently necessary when compiling against OpenSSL 1.0 due to a missing
|
---|
267 | # typecase from 'const v3_ext_method*' to 'aka v3_ext_method*'.
|
---|
268 | $(VBOX_GSOAP_CXX_SOURCES)_CXXFLAGS += -fpermissive
|
---|
269 |
|
---|
270 | endif
|
---|
271 | $(VBOXWEB_OUT_DIR)/soapC-3.cpp_CXXFLAGS.win.x86 = -Og- # VCC70 says "function too large".
|
---|
272 |
|
---|
273 | ifdef VBOX_SOAP_PRECOMPILED_HEADER
|
---|
274 | # This'll save a few seconds, but the compiler invocation currently makes it impracticable. This will
|
---|
275 | # be addressed in a future kBuild version, by adding PCH support or/and by adding some helpers to
|
---|
276 | # gather the required data (DEFS,INCS,CXXTOOL,CXXFLAGS).
|
---|
277 | vboxsoap_INTERMEDIATES += $(VBOXWEB_OUT_DIR)/soapH.h.gch
|
---|
278 | vboxsoap_CXXFLAGS += -Winvalid-pch -H
|
---|
279 | vboxsoap_CLEAN += $(VBOXWEB_OUT_DIR)/soapH.h.gch
|
---|
280 |
|
---|
281 | $(VBOXWEB_OUT_DIR)/soapH.h.gch: $(VBOXWEB_OUT_DIR)/soapH.h
|
---|
282 | g++ -x c++-header -g -g -Wall -pedantic -Wno-long-long -Wno-trigraphs -Wno-variadic-macros -pipe -O0 -fno-omit-frame-pointer -fno-strict-aliasing -fvisibility-inlines-hidden -fvisibility=hidden -DVBOX_HAVE_VISIBILITY_HIDDEN -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -m32 -I/Volumes/ScratchHFS/bird/vbox/svn/trunk/src/VBox/Main/webservice/gsoap -I/Volumes/ScratchHFS/bird/vbox/svn/trunk/out/darwin.x86/debug/obj/src/VBox/Main -I/Volumes/ScratchHFS/bird/vbox/svn/trunk/src/VBox/Main/webservice -I/Volumes/ScratchHFS/bird/vbox/svn/trunk/include -I/Volumes/ScratchHFS/bird/vbox/svn/trunk/out/darwin.x86/debug -DVBOX -DVBOX_WITH_DEBUGGER -DVBOX_WITH_DEBUGGER_GUI -DDEBUG -DDEBUG_bird -DDEBUG_USERNAME=bird -DRT_OS_DARWIN -D__DARWIN__ -DRT_ARCH_X86 -D__X86__ -DVBOX_WITH_HYBRID_32BIT_KERNEL -DIN_RING3 -DHC_ARCH_BITS=32 -DGC_ARCH_BITS=32 -DMAC_OS_X_VERSION_MIN_REQUIRED=1040 -DMAC_OS_X_VERSION_MAX_ALLOWED=1040 \
|
---|
283 | $< -o $@
|
---|
284 | endif
|
---|
285 | endif # !VBOX_ONLY_SDK
|
---|
286 |
|
---|
287 |
|
---|
288 | ifndef VBOX_ONLY_SDK
|
---|
289 | #
|
---|
290 | # vboxwebsrv - webservice server process
|
---|
291 | #
|
---|
292 | PROGRAMS += vboxwebsrv
|
---|
293 | vboxwebsrv_TEMPLATE = VBOXMAINCLIENTEXE
|
---|
294 | vboxwebsrv_DEFS += SOCKET_CLOSE_ON_EXEC
|
---|
295 | vboxwebsrv_INCS = \
|
---|
296 | $(VBOX_GSOAP_INCS) \
|
---|
297 | $(VBOXWEB_OUT_DIR) \
|
---|
298 | .
|
---|
299 | vboxwebsrv_CXXFLAGS.win += -bigobj
|
---|
300 | ifn1of ($(KBUILD_TARGET), win)
|
---|
301 | vboxwebsrv_CXXFLAGS += -Wno-shadow
|
---|
302 | endif
|
---|
303 | vboxwebsrv_LIBS += \
|
---|
304 | $(PATH_STAGE_LIB)/vboxsoap$(VBOX_SUFF_LIB) \
|
---|
305 | $(VBOX_GSOAP_CXX_LIBS) \
|
---|
306 | $(LIB_RUNTIME)
|
---|
307 | vboxwebsrv_LIBS.solaris += socket nsl
|
---|
308 | ifdef VBOX_WITH_WEBSERVICES_SSL
|
---|
309 | vboxwebsrv_DEFS += WITH_OPENSSL
|
---|
310 | vboxwebsrv_SDKS += VBOX_OPENSSL2
|
---|
311 | endif
|
---|
312 | vboxwebsrv_SOURCES = \
|
---|
313 | vboxweb.cpp \
|
---|
314 | $(VBOXWEB_OUT_DIR)/methodmaps.cpp \
|
---|
315 | $(VBOXWEB_OUT_DIR)/soapServer.cpp \
|
---|
316 | $(VBOXWEB_OUT_DIR)/vboxweb-wsdl.c
|
---|
317 | vboxwebsrv_SOURCES.win = \
|
---|
318 | VBoxWebSrv.rc
|
---|
319 | vboxwebsrv_CLEAN = \
|
---|
320 | $(VBOXWEB_OUT_DIR)/methodmaps.cpp \
|
---|
321 | $(VBOXWEB_OUT_DIR)/soapServer.cpp \
|
---|
322 | $(VBOXWEB_OUT_DIR)/vboxweb-wsdl.c
|
---|
323 |
|
---|
324 | vboxweb.cpp_DEFS = \
|
---|
325 | $(if $(VBOX_BLEEDING_EDGE),VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\",)
|
---|
326 |
|
---|
327 | vboxwebsrv_ORDERDEPS = $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts
|
---|
328 | endif # !VBOX_ONLY_SDK
|
---|
329 |
|
---|
330 | ifdef VBOX_WITH_JWS
|
---|
331 | INSTALLS += VBoxJWs-inst-jar
|
---|
332 |
|
---|
333 | #
|
---|
334 | # Java glue JAR files
|
---|
335 | #
|
---|
336 | VBOX_JWS_JAR = $(VBoxJWs-inst-jar_0_OUTDIR)/vboxjws.jar
|
---|
337 | VBOX_JWSDOC_JAR = $(VBoxJWs-inst-jar_0_OUTDIR)/vboxjws-doc.jar
|
---|
338 | VBOX_JWSSRC_JAR = $(VBoxJWs-inst-jar_0_OUTDIR)/vboxjws-src.jar
|
---|
339 | VBOX_JWS_TARGET := $(PATH_TARGET)/vboxjws-gen
|
---|
340 | VBOX_JWS_GEN = $(VBOX_JWS_TARGET)/jwsgen
|
---|
341 | VBOX_JWS_GEN_RAWSRC = $(VBOX_JWS_GEN)/merged.file
|
---|
342 | VBOX_JWS_JDEST := $(VBOX_JWS_TARGET)/jdest
|
---|
343 | VBOX_JWSDOC_JDEST := $(VBOX_JWS_TARGET)/jdest-doc
|
---|
344 | VBOX_GLUE_XSLT_DIR := $(PATH_ROOT)/src/VBox/Main/glue
|
---|
345 | VBOX_JAXLIB_DIR := $(PATH_ROOT)/src/VBox/Main/webservice/jaxlibs
|
---|
346 |
|
---|
347 | VBoxJWs-inst-jar_INST = $(INST_SDK)bindings/webservice/java/jax-ws/
|
---|
348 | VBoxJWs-inst-jar_MODE = a+r,u+w
|
---|
349 | VBoxJWs-inst-jar_SOURCES = \
|
---|
350 | $(VBOX_JWS_JAR) \
|
---|
351 | $(VBOX_JWSDOC_JAR) \
|
---|
352 | $(VBOX_JWSSRC_JAR)
|
---|
353 | VBoxJWs-inst-jar_CLEAN = \
|
---|
354 | $(VBOX_JWS_JAR) \
|
---|
355 | $(VBOX_JWSDOC_JAR) \
|
---|
356 | $(VBOX_JWSSRC_JAR) \
|
---|
357 | $(VBOX_JWS_GEN)/jwsglue.list \
|
---|
358 | $(VBOX_JWSDOC_JDEST)/package-list \
|
---|
359 | $(wildcard \
|
---|
360 | $(VBOX_JWS_GEN)/java/*/*/*.java \
|
---|
361 | $(VBOX_JWS_GEN)/java/*/*/*/*.java \
|
---|
362 | $(VBOX_JWS_JDEST)/*.class \
|
---|
363 | $(VBOX_JWS_JDEST)/*/*.class \
|
---|
364 | $(VBOX_JWS_JDEST)/*/*/*.class \
|
---|
365 | $(VBOX_JWS_JDEST)/*/*/*/*.class \
|
---|
366 | $(VBOX_JWSDOC_JDEST)/*.html \
|
---|
367 | $(VBOX_JWSDOC_JDEST)/*.css \
|
---|
368 | $(VBOX_JWSDOC_JDEST)/*/*.gif \
|
---|
369 | $(VBOX_JWSDOC_JDEST)/*/*/*.html \
|
---|
370 | $(VBOX_JWSDOC_JDEST)/*/*/*/*.html \
|
---|
371 | )
|
---|
372 | VBoxJWs-inst-jar_BLDDIRS += $(VBOX_JWS_GEN)/java
|
---|
373 | VBoxJWs-inst-jar_GENERATEDSOURCES = $(addprefix $(VBoxJWs-inst-jar_BLDDIRS)/,$(VBoxJWS_VBOX_JWSGLUEFILES))
|
---|
374 |
|
---|
375 | VBoxJWSGlue_KMK = $(PATH_OUT)/vboxjwsglue.kmk
|
---|
376 | include $(VBoxJWSGlue_KMK)
|
---|
377 |
|
---|
378 | $(VBoxJWSGlue_KMK).ts +| $(VBoxJWSGlue_KMK): $(VBOXWEB_IDL_SRC_ORIG) $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl $(VBOX_VERSION_STAMP)
|
---|
379 | $(call MSG_GENERATE,,$(VBoxJWSGlue_KMK))
|
---|
380 | $(QUIET)$(RM) -f $@
|
---|
381 | $(QUIET)$(MKDIR) -p $(@D)
|
---|
382 | $(QUIET)$(VBOX_XSLTPROC) \
|
---|
383 | --stringparam filelistonly VBoxJWS_VBOX_JWSGLUEFILES \
|
---|
384 | --stringparam G_vboxApiSuffix $(VBOX_API_SUFFIX) \
|
---|
385 | --stringparam G_vboxGlueStyle jaxws \
|
---|
386 | --stringparam G_vboxDirPrefix org/virtualbox$(VBOX_API_SUFFIX)/ \
|
---|
387 | -o $@ $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl $<
|
---|
388 | $(QUIET)$(CP) --changed -fv $@ $(VBoxJWSGlue_KMK)
|
---|
389 |
|
---|
390 | $(VBOX_JWS_GEN_RAWSRC) \
|
---|
391 | +| $(VBoxJWs-inst-jar_GENERATEDSOURCES): \
|
---|
392 | $(VBOXWEB_IDL_SRC_ORIG) \
|
---|
393 | $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl \
|
---|
394 | $(VBOX_FILESPLIT) \
|
---|
395 | $(VBOX_VERSION_STAMP)
|
---|
396 | $(call MSG_L1,Generating JAX-WS Java glue files from XIDL)
|
---|
397 | $(QUIET)$(RM) -f $(filter-out $(VBoxJWs-inst-jar_GENERATEDSOURCES),$(wildcard $(VBOX_JWS_GEN)/java/*/*/*.java))
|
---|
398 | $(QUIET)$(MKDIR) -p $(@D)
|
---|
399 | $(QUIET)$(VBOX_XSLTPROC) \
|
---|
400 | --stringparam filelistonly "" \
|
---|
401 | --stringparam G_vboxApiSuffix $(VBOX_API_SUFFIX) \
|
---|
402 | --stringparam G_vboxGlueStyle jaxws \
|
---|
403 | --stringparam G_vboxDirPrefix org/virtualbox$(VBOX_API_SUFFIX)/ \
|
---|
404 | -o $(VBOX_JWS_GEN_RAWSRC) $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl $<
|
---|
405 | $(QUIET)$(MKDIR) -p $(VBOX_JWS_GEN)/java/org/virtualbox$(VBOX_API_SUFFIX)
|
---|
406 | $(QUIET)$(VBOX_FILESPLIT) $(VBOX_JWS_GEN_RAWSRC) $(VBOX_JWS_GEN)/java
|
---|
407 |
|
---|
408 | ## @todo somehow also find out the authoritative list of files generated by
|
---|
409 | # wsimport (before running it), then we could rely on proper dependencies
|
---|
410 | # instead of creating jwsglue.list. Would allow avoiding a lot of unnecessary
|
---|
411 | # compilation with incremental builds, when almost nothing changed in the IDL
|
---|
412 | # file. Currently everything is recompiled if only one file is changed.
|
---|
413 | $(VBOX_JWS_GEN)/jwsglue.list.ts +| $(VBOX_JWS_GEN)/jwsglue.list: \
|
---|
414 | $(VBOXWEB_IDL_SRC) \
|
---|
415 | $(VBOX_FILESPLIT) \
|
---|
416 | $(VBOXWEBSERVICE_WSDL) \
|
---|
417 | $(VBOXWEB_WSDL) \
|
---|
418 | $(VBoxJWs-inst-jar_GENERATEDSOURCES) \
|
---|
419 | | $(VBOX_JWS_GEN)/java/
|
---|
420 | $(QUIET)$(RM) -f -- $(wildcard $(VBOX_JWS_GEN)/java/*/*/*/*.java)
|
---|
421 | $(call MSG_GENERATE,,$(VBOX_JWS_GEN)/jwsglue.list,JAX-WS for Java 1.6 bindings using $(VBOXWEBSERVICE_WSDL))
|
---|
422 | $(VBOX_WSIMPORT) -Xnocompile -p $(VBOX_JAVA_PACKAGE).jaxws -d $(VBOX_JWS_GEN)/java $(VBOXWEBSERVICE_WSDL)
|
---|
423 | $(QUIET)echo $(VBoxJWs-inst-jar_GENERATEDSOURCES) > $@
|
---|
424 | $(QUIET)echo $(VBOX_JWS_GEN)/java/*/*/*/*.java >> $@
|
---|
425 | $(QUIET)$(CP) --changed -fv $@ $(VBOX_JWS_GEN)/jwsglue.list
|
---|
426 |
|
---|
427 | $$(VBOX_JWS_JAR): $(VBOX_JWS_GEN)/jwsglue.list $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL) $(VBOX_JWS_GEN)/MANIFEST.MF | $$(dir $$@)
|
---|
428 | $(call MSG_TOOL,javac,$(notdir $@),jwsgen.list,)
|
---|
429 | $(QUIET)$(RM) -Rf $(VBOX_JWS_JDEST)
|
---|
430 | $(QUIET)$(MKDIR) -p $(VBOX_JWS_JDEST)
|
---|
431 | $(call MSG_L1,Compiling bridge code)
|
---|
432 | $(VBOX_JAVAC) $(VBOX_JAVAC_OPTS) \
|
---|
433 | @$(VBOX_JWS_GEN)/jwsglue.list \
|
---|
434 | -d $(VBOX_JWS_JDEST) -classpath $(VBOX_JWS_JDEST)
|
---|
435 | $(QUIET)$(SED) -e "s/vboxweb.wsdl/vboxweb$(VBOX_API_SUFFIX).wsdl/" < $(VBOXWEBSERVICE_WSDL) > $(VBOX_JWS_JDEST)/vboxwebService$(VBOX_API_SUFFIX).wsdl
|
---|
436 | $(QUIET)$(CP) -f $(VBOXWEB_WSDL) $(VBOX_JWS_JDEST)/vboxweb$(VBOX_API_SUFFIX).wsdl
|
---|
437 | $(call MSG_LINK,$(notdir $@),$@)
|
---|
438 | $(VBOX_JAR) cfm $@ $(VBOX_JWS_GEN)/MANIFEST.MF -C $(VBOX_JWS_JDEST) .
|
---|
439 |
|
---|
440 | $(VBOX_JWS_GEN)/MANIFEST.MF: $(VBOX_PATH_WEBSERVICE)/MANIFEST.MF.in
|
---|
441 | $(QUIET)$(RM) -f -- $@
|
---|
442 | $(QUIET)$(MKDIR) -p $(VBOX_JWS_GEN)
|
---|
443 | $(QUIET)$(SED) \
|
---|
444 | -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/' \
|
---|
445 | -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/' \
|
---|
446 | -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/' \
|
---|
447 | -e 's/@VBOX_API_SUFFIX@/$(VBOX_API_SUFFIX)/' \
|
---|
448 | < $< > $@
|
---|
449 |
|
---|
450 | $$(VBOX_JWSDOC_JAR): $(VBOX_JWS_GEN)/jwsglue.list $$(VBoxJWs-inst-jar_GENERATEDSOURCES) $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL) $$(VBOX_JWS_JAR) | $$(dir $$@)
|
---|
451 | $(call MSG_TOOL,javadoc,$(notdir $@),jwsgen.list,)
|
---|
452 | $(QUIET)$(RM) -Rf $(VBOX_JWSDOC_JDEST)
|
---|
453 | $(QUIET)$(MKDIR) -p $(VBOX_JWSDOC_JDEST)
|
---|
454 | $(call MSG_L1,Generating javadoc html documentation)
|
---|
455 | $(VBOX_JAVADOC) $(VBOX_JAVADOC_OPTS) -quiet \
|
---|
456 | -sourcepath $(VBOX_JWS_GEN)/java org.virtualbox$(VBOX_API_SUFFIX) \
|
---|
457 | -d $(VBOX_JWSDOC_JDEST)
|
---|
458 | $(call MSG_LINK,$(notdir $@),$@)
|
---|
459 | $(VBOX_JAR) cf $@ -C $(VBOX_JWSDOC_JDEST) .
|
---|
460 |
|
---|
461 | $$(VBOX_JWSSRC_JAR): $$(VBOX_JWS_JAR) | $$(dir $$@)
|
---|
462 | $(call MSG_LINK,$(notdir $@),$@)
|
---|
463 | $(VBOX_JAR) cf $@ -C $(VBOX_JWS_GEN)/java .
|
---|
464 |
|
---|
465 | ## @todo compile ../glue/tests/TestVBox.java to have sanity checking
|
---|
466 |
|
---|
467 | endif # VBOX_WITH_JWS
|
---|
468 |
|
---|
469 | ifndef VBOX_ONLY_SDK
|
---|
470 | #
|
---|
471 | # webtest - webservice sample client in C++
|
---|
472 | #
|
---|
473 | PROGRAMS += webtest
|
---|
474 | webtest_TEMPLATE = VBOXWEBR3EXE
|
---|
475 | webtest_CXXFLAGS.win += -bigobj
|
---|
476 | ifn1of ($(KBUILD_TARGET), win)
|
---|
477 | webtest_CXXFLAGS += -Wno-shadow
|
---|
478 | endif
|
---|
479 | webtest_INCS := \
|
---|
480 | $(VBOX_GSOAP_INCS) \
|
---|
481 | $(VBOXWEB_OUT_DIR) \
|
---|
482 | .
|
---|
483 | webtest_LIBS += \
|
---|
484 | $(PATH_STAGE_LIB)/vboxsoap$(VBOX_SUFF_LIB) \
|
---|
485 | $(VBOX_GSOAP_CXX_LIBS) \
|
---|
486 | $(LIB_RUNTIME)
|
---|
487 | webtest_LIBS.solaris += nsl
|
---|
488 | ifdef VBOX_WITH_WEBSERVICES_SSL
|
---|
489 | webtest_DEFS += WITH_OPENSSL
|
---|
490 | webtest_SDKS += VBOX_OPENSSL2
|
---|
491 | endif
|
---|
492 | webtest_SOURCES = \
|
---|
493 | webtest.cpp \
|
---|
494 | $(VBOXWEB_OUT_DIR)/soapClient.cpp
|
---|
495 | webtest_CLEAN = \
|
---|
496 | $(VBOXWEB_OUT_DIR)/soapClient.cpp
|
---|
497 |
|
---|
498 | webtest_ORDERDEPS = $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts
|
---|
499 | endif # !VBOX_ONLY_SDK
|
---|
500 |
|
---|
501 |
|
---|
502 | #
|
---|
503 | # Additional mess to cleanup (applies to both webtest and vboxwebsrv).
|
---|
504 | #
|
---|
505 | ## @todo figure out whether the SDK really needs this or not...
|
---|
506 | OTHER_CLEAN += \
|
---|
507 | $(wildcard $(VBOXWEB_OUT_DIR)/soap*.h) \
|
---|
508 | $(wildcard $(VBOXWEB_OUT_DIR)/soap*.cpp) \
|
---|
509 | $(wildcard $(VBOXWEB_OUT_DIR)/*.nsmap) \
|
---|
510 | $(VBOXWEB_GSOAPH_FROM_XSLT) \
|
---|
511 | $(VBOXWEB_GSOAPH_FROM_GSOAP) \
|
---|
512 | $(VBOXWEB_SOAP_CLIENT_H) \
|
---|
513 | $(VBOXWEB_SOAP_SERVER_H) \
|
---|
514 | $(VBOXWEB_OUT_DIR)/gsoap_generate_all_ts \
|
---|
515 | $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts \
|
---|
516 | $(wildcard $(PATH_TARGET_SOAPDEMOXML)/*) \
|
---|
517 | $(PATH_TARGET_SOAPDEMOXML)/dummy_file \
|
---|
518 | $(wildcard $(PATH_TARGET_SOAPDEMOHEADERS)/*) \
|
---|
519 | $(PATH_TARGET_SOAPDEMOHEADERS)/dummy_file \
|
---|
520 | $(wildcard $(PATH_TARGET_SOAPDEMONSMAPS)/*) \
|
---|
521 | $(PATH_TARGET_SOAPDEMONSMAPS)/dummy_file
|
---|
522 |
|
---|
523 | endif # VBOX_GSOAP_INSTALLED
|
---|
524 |
|
---|
525 |
|
---|
526 | if defined(VBOX_ONLY_SDK) && "$(KBUILD_TARGET)" != "win"
|
---|
527 | #
|
---|
528 | # Globals relevant to the SDK.
|
---|
529 | #
|
---|
530 | VBOXWEB_GLUE_PYTHON = $(VBOX_PATH_SDK)/bindings/webservice/python/lib/VirtualBox_wrappers.py
|
---|
531 | # The following 3 files are generated by Python ZSI 2.0 which was released
|
---|
532 | # in 2007. ZSI 1.x used different file names. Not worth supporting any more.
|
---|
533 | # If you're curious, check the VirtualBox 4.3 sources.
|
---|
534 | VBOXWEB_WS_PYTHON = $(VBOX_PATH_SDK)/bindings/webservice/python/lib/VirtualBox_client.py
|
---|
535 | VBOXWEB_WS_PYTHON_TYPES = $(VBOX_PATH_SDK)/bindings/webservice/python/lib/VirtualBox_types.py
|
---|
536 | VBOXWEB_WS_PYTHON_SERVER = $(VBOX_PATH_SDK)/bindings/webservice/python/lib/VirtualBox_server.py
|
---|
537 | VBOXWEB_WS_PERL = $(VBOX_PATH_SDK)/bindings/webservice/perl/lib/vboxService.pm
|
---|
538 | VBOXWEB_WS_PHP = $(VBOX_PATH_SDK)/bindings/webservice/php/lib/vboxServiceWrappers.php
|
---|
539 | VBOXWEB_SAMPLES_JAXWS_DIR = $(VBOX_PATH_SDK)/bindings/webservice/java/jax-ws/samples
|
---|
540 | VBOXWEB_JAXWSSAMPLE = $(VBOXWEB_SAMPLES_JAXWS_DIR)/clienttest.java
|
---|
541 | VBOXWEB_METRICSAMPLE = $(VBOXWEB_SAMPLES_JAXWS_DIR)/metrictest.java
|
---|
542 |
|
---|
543 | define find_java_files
|
---|
544 | $(shell find $(1) -name \*.java)
|
---|
545 | endef
|
---|
546 |
|
---|
547 | VBOXWEB_OTHERS += \
|
---|
548 | $(if $(VBOX_WITH_PYTHON),$(VBOXWEB_GLUE_PYTHON),) \
|
---|
549 | $(if $(VBOX_WITH_PYTHON),$(VBOXWEB_WS_PYTHON),) \
|
---|
550 | $(if $(VBOX_WITH_PYTHON),$(VBOXWEB_WS_PYTHON_TYPES),) \
|
---|
551 | $(if $(VBOX_WITH_PERL),$(VBOXWEB_WS_PERL),) \
|
---|
552 | $(if $(VBOX_WITH_PHP),$(VBOXWEB_WS_PHP),) \
|
---|
553 | $(PATH_ROOT)
|
---|
554 |
|
---|
555 |
|
---|
556 | #
|
---|
557 | # Install sample code.
|
---|
558 | #
|
---|
559 | INSTALLS += vboxwebinst
|
---|
560 | vboxwebinst_INST = $(INST_SDK)bindings/webservice/
|
---|
561 | vboxwebinst_MODE = a+rx,u+w
|
---|
562 | vboxwebinst_SOURCES = \
|
---|
563 | $(if $(VBOX_WITH_PERL),samples/perl/clienttest.pl=>perl/samples/clienttest.pl,) \
|
---|
564 | $(if $(VBOX_WITH_PHP),samples/php/clienttest.php=>php/samples/clienttest.php,) \
|
---|
565 | $(if $(VBOX_WITH_PYTHON),samples/python/clienttest.py=>python/samples/clienttest.py,)
|
---|
566 |
|
---|
567 | INSTALLS += vboxwebinst_nox
|
---|
568 | vboxwebinst_nox_INST = $(INST_SDK)bindings/webservice/
|
---|
569 | vboxwebinst_nox_MODE = a+r,u+w
|
---|
570 | vboxwebinst_nox_SOURCES = \
|
---|
571 | $(if $(VBOX_WITH_PYTHON),samples/python/Makefile=>python/samples/Makefile,) \
|
---|
572 | $(if $(VBOX_WITH_PYTHON),samples/python/Makefile.glue=>python/lib/Makefile,) \
|
---|
573 | $(if ($VBOX_WITH_JWS),$(PATH_ROOT)/COPYING.LIB=>java/jax-ws/COPYING.LIB,)
|
---|
574 |
|
---|
575 | INSTALLS += vboxwebinst_wsdl
|
---|
576 | vboxwebinst_wsdl_INST = $(INST_SDK)bindings/webservice/
|
---|
577 | vboxwebinst_wsdl_MODE = a+r,u+w
|
---|
578 | vboxwebinst_wsdl_SOURCES = \
|
---|
579 | $(VBOXWEB_WSDL)=>vboxweb.wsdl \
|
---|
580 | $(VBOXWEBSERVICE_WSDL)=>vboxwebService.wsdl
|
---|
581 |
|
---|
582 | endif # VBOX_ONLY_SDK
|
---|
583 |
|
---|
584 | #
|
---|
585 | # Update the OTHERS and OTHER_CLEAN lists with VBOXWEB_OTHERS and some more stuff.
|
---|
586 | #
|
---|
587 | # We can't just built up OTHERS and append it to OTHER_CLEAN because we're sharing
|
---|
588 | # OTHERS with all the other VBox makefiles, thus VBOXWEB_OTHERS.
|
---|
589 | #
|
---|
590 | OTHERS += $(VBOXWEB_OTHERS)
|
---|
591 | OTHER_CLEAN += \
|
---|
592 | $(VBOXWEB_OTHERS) \
|
---|
593 | $(if $(VBOX_WITH_PYTHON),$(VBOXWEB_WS_PYTHON_SERVER),) \
|
---|
594 | $(VBOXWEB_WSDL) \
|
---|
595 | $(VBOXWEBSERVICE_WSDL) \
|
---|
596 | $(VBOXWEB_TYPEMAP) \
|
---|
597 | $(VBOXWEB_IDL_SRC)
|
---|
598 |
|
---|
599 | # generate platform-specific XIDL file from original XIDL file
|
---|
600 | $(VBOXWEB_IDL_SRC): $(VBOXWEB_IDL_SRC_STRIPPED) $(VBOX_PATH_WEBSERVICE)/platform-xidl.xsl | $$(dir $$@)
|
---|
601 | $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using platform-xidl.xsl)
|
---|
602 | $(QUIET)$(RM) -f -- $@
|
---|
603 | $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/platform-xidl.xsl $<
|
---|
604 |
|
---|
605 | # generate WSDL from main XIDL file
|
---|
606 | $(VBOXWEB_WSDL): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-wsdl.xsl $(VBOX_PATH_IDL)/typemap-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
|
---|
607 | $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-wsdl.xsl)
|
---|
608 | $(QUIET)$(RM) -f -- $@
|
---|
609 | $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-wsdl.xsl $<
|
---|
610 |
|
---|
611 | $(VBOXWEBSERVICE_WSDL): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-wsdl-service.xsl $(VBOX_PATH_IDL)/typemap-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
|
---|
612 | $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-wsdl-service.xsl)
|
---|
613 | $(QUIET)$(RM) -f -- $@
|
---|
614 | $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-wsdl-service.xsl $<
|
---|
615 |
|
---|
616 | ifdef VBOX_ONLY_SDK
|
---|
617 |
|
---|
618 | $(VBOXWEB_GLUE_PYTHON): $(VBOXWEB_IDL_SRC) $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL) $(VBOX_PATH_WEBSERVICE)/websrv-python.xsl
|
---|
619 | $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-python.xsl)
|
---|
620 | $(QUIET)$(RM) -f -- $@
|
---|
621 | $(QUIET)$(MKDIR) -p $(@D)
|
---|
622 | $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-python.xsl $<
|
---|
623 |
|
---|
624 | $(VBOXWEB_WS_PYTHON) \
|
---|
625 | + $(VBOXWEB_WS_PYTHON_TYPES): $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL)
|
---|
626 | $(call MSG_GENERATE,,$@, WS Python bindings)
|
---|
627 | $(QUIET)$(RM) -f -- $@
|
---|
628 | $(QUIET)$(MKDIR) -p $(@D)
|
---|
629 | # Try both w/o and with --file option
|
---|
630 | $(QUIET)$(REDIRECT) -C $(@D) -- $(SHELL) -c "$(VBOX_WSDL2PY) -b $(VBOXWEBSERVICE_WSDL) || $(VBOX_WSDL2PY) -b --file $(VBOXWEBSERVICE_WSDL)"
|
---|
631 | # We do not ever need the VirtualBox_server.py file. Delete it immediatelyi
|
---|
632 | # so that it will not get packaged in the SDK.
|
---|
633 | $(QUIET)$(RM) -f -- $(VBOXWEB_WS_PYTHON_SERVER)
|
---|
634 | $(QUIET)$(APPEND) $@ ''
|
---|
635 |
|
---|
636 | $(VBOXWEB_WS_PERL): $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL)
|
---|
637 | $(call MSG_GENERATE,,$@, WS Perl bindings)
|
---|
638 | $(QUIET)$(MKDIR) -p $(@D)
|
---|
639 | $(QUIET)$(REDIRECT) -C $(@D) -- $(VBOX_STUBMAKER) file://$(VBOXWEBSERVICE_WSDL)
|
---|
640 | # Ugly, ugly, ugly, make me right once
|
---|
641 | $(QUIET)$(SED) -e "s+http://www.virtualbox.org/Service+http://www.virtualbox.org/+" --output $(VBOXWEB_WS_PERL).tmp $(VBOXWEB_WS_PERL)
|
---|
642 | $(QUIET)$(MV) $(VBOXWEB_WS_PERL).tmp $(VBOXWEB_WS_PERL)
|
---|
643 | $(QUIET)$(APPEND) $@ ''
|
---|
644 |
|
---|
645 | $(VBOXWEB_WS_PHP): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-php.xsl
|
---|
646 | $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-php.xsl)
|
---|
647 | $(QUIET)$(RM) -f -- $@
|
---|
648 | $(QUIET)$(MKDIR) -p $(@D)
|
---|
649 | $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-php.xsl $<
|
---|
650 |
|
---|
651 | endif # VBOX_ONLY_SDK
|
---|
652 |
|
---|
653 | # generate typemap.dat (used by wsdl2h) from main XIDL file
|
---|
654 | $(VBOXWEB_TYPEMAP): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-typemap.xsl $(VBOX_PATH_IDL)/typemap-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
|
---|
655 | $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-typemap.xsl)
|
---|
656 | $(QUIET)$(RM) -f -- $@
|
---|
657 | $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-typemap.xsl $<
|
---|
658 |
|
---|
659 | # generate gsoap pseudo-C header file from that WSDL; once via XSLT...
|
---|
660 | $(VBOXWEB_GSOAPH_FROM_XSLT): $(VBOXWEB_WSDL) $(VBOX_PATH_WEBSERVICE)/websrv-wsdl2gsoapH.xsl $(VBOX_PATH_IDL)/typemap-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
|
---|
661 | $(call MSG_GENERATE,,$@,$(VBOXWEB_WSDL) using websrv-wsdl2gsoapH.xsl)
|
---|
662 | $(QUIET)$(RM) -f -- $@
|
---|
663 | $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-wsdl2gsoapH.xsl $<
|
---|
664 |
|
---|
665 | VBOX_NSMAP = $(VBOXWEB_OUT_DIR)/vboxwebsrv.nsmap
|
---|
666 | $(VBOX_NSMAP): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-nsmap.xsl $(VBOX_PATH_IDL)/typemap-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
|
---|
667 | $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-nsmap.xsl)
|
---|
668 | $(QUIET)$(RM) -f -- $@
|
---|
669 | $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-nsmap.xsl $<
|
---|
670 |
|
---|
671 | ifdef VBOX_GSOAP_INSTALLED
|
---|
672 | # ... and once with the gSOAP tool (just for comparison, we don't use it for licensing reasons)
|
---|
673 | $(VBOXWEB_GSOAPH_FROM_GSOAP): $(VBOXWEB_WSDL) $(VBOXWEB_TYPEMAP) | $$(dir $$@)
|
---|
674 | $(call MSG_GENERATE,,$@,)
|
---|
675 | $(QUIET)$(RM) -f -- $@
|
---|
676 | $(VBOX_WSDL2H) $(VBOXWEB_WSDL_VERBOSE) -t$(VBOXWEB_TYPEMAP) -nvbox -o $@ $<
|
---|
677 |
|
---|
678 | # this sets the gsoap header that we use for further compilation; if stuff works, then the
|
---|
679 | # one we generate via XSLT produces the same end result as the one from the gSOAP tool;
|
---|
680 | # with this variable we can swap for testing, but shipped code must use VBOXWEB_GSOAPH_FROM_XSLT
|
---|
681 | GSOAPH_RELEVANT = $(VBOXWEB_GSOAPH_FROM_XSLT)
|
---|
682 |
|
---|
683 | # wsdl2h -v: verbose
|
---|
684 | # wsdl2h -e: don't qualify enum names
|
---|
685 | # wsdl2h -n<prefix>: namespace header prefix
|
---|
686 |
|
---|
687 | ## @todo change this to state explicitly what will be generated?
|
---|
688 |
|
---|
689 | # generate server and client code from gsoap pseudo-C header file
|
---|
690 | $(VBOXWEB_OUT_DIR)/gsoap_generate_all_ts \
|
---|
691 | + $(VBOXWEB_OUT_DIR)/soapH.h \
|
---|
692 | + $(VBOXWEB_OUT_DIR)/soapStub.h \
|
---|
693 | + $(VBOXWEB_OUT_DIR)/soapC.cpp \
|
---|
694 | + $(VBOXWEB_OUT_DIR)/soapClient.cpp \
|
---|
695 | + $(VBOXWEB_OUT_DIR)/soapServer.cpp \
|
---|
696 | : $(VBOXWEB_GSOAPH_FROM_GSOAP) $(VBOXWEB_GSOAPH_FROM_XSLT) $(VBOX_NSMAP) $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
|
---|
697 | $(call MSG_GENERATE,,lots of files,$(GSOAPH_RELEVANT))
|
---|
698 | $(RM) -f $@
|
---|
699 | $(REDIRECT) -C $(VBOXWEB_OUT_DIR) -- $(VBOX_SOAPCPP2) $(VBOXWEB_SOAPCPP2_SKIP_FILES) -L -2 -w -I$(VBOX_PATH_GSOAP_IMPORT) $(GSOAPH_RELEVANT)
|
---|
700 | $(APPEND) $@ done
|
---|
701 |
|
---|
702 | # Copy the generated headers and stuff. This was split into a separate rule
|
---|
703 | # way back because we thought we could use $(wildcard ) and avoid the shell,
|
---|
704 | # however we cannot as it is subject to caching. Let the shell do the globbing.
|
---|
705 | # GSOAP versions 2.8 and later do not generate the unneeded soapvbox*.h files
|
---|
706 | # any more. Ignoring the exit code is the simple solution, accepting the error.
|
---|
707 | $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts: $(VBOXWEB_OUT_DIR)/gsoap_generate_all_ts | $$(dir $$@)
|
---|
708 | $(RM) -f $@
|
---|
709 | $(MKDIR) -p $(PATH_TARGET_SOAPDEMOXML) $(PATH_TARGET_SOAPDEMOHEADERS) $(PATH_TARGET_SOAPDEMONSMAPS)
|
---|
710 | ifdef VBOX_GSOAP_VERBOSE
|
---|
711 | $(MV_EXT) -f -- $(VBOXWEB_OUT_DIR)/*.req.xml $(VBOXWEB_OUT_DIR)/*.res.xml $(PATH_TARGET_SOAPDEMOXML)/
|
---|
712 | endif
|
---|
713 | -$(MV_EXT) -f -- $(VBOXWEB_OUT_DIR)/soapvbox*.h $(PATH_TARGET_SOAPDEMOHEADERS)/
|
---|
714 | $(MV_EXT) -f -- $(VBOXWEB_OUT_DIR)/vboxBinding.nsmap $(PATH_TARGET_SOAPDEMONSMAPS)/
|
---|
715 | $(APPEND) $@ done
|
---|
716 |
|
---|
717 | $(PATH_TARGET_SOAPDEMONSMAPS) \
|
---|
718 | $(PATH_TARGET_SOAPDEMOHEADERS)/soapvboxBindingProxy.h \
|
---|
719 | $(PATH_TARGET_SOAPDEMOHEADERS)/soapvboxBindingObject.h: $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts
|
---|
720 |
|
---|
721 | # soapcpp2 -2: generate SOAP 1.2 calls
|
---|
722 | # soapcpp2 -S: server-side code only
|
---|
723 | # soapcpp2 -L: don't generate soapClientLib/soapServerLib
|
---|
724 | # soapcpp2 -w: don't generate WSDL and schema files
|
---|
725 | # soapcpp2 -x: don't generate sample XML files
|
---|
726 |
|
---|
727 | ifndef VBOX_WITHOUT_SPLIT_SOAPC
|
---|
728 | #
|
---|
729 | # Split up the soapC.cpp monster into manageable bits that can be
|
---|
730 | # built in parallel and without exhausting all available memory.
|
---|
731 | #
|
---|
732 | $(VBOXWEB_OUT_DIR)/soapC-1.cpp \
|
---|
733 | + $(VBOXWEB_OUT_DIR)/soapC-2.cpp \
|
---|
734 | + $(VBOXWEB_OUT_DIR)/soapC-3.cpp \
|
---|
735 | + $(VBOXWEB_OUT_DIR)/soapC-4.cpp \
|
---|
736 | + $(VBOXWEB_OUT_DIR)/soapC-5.cpp \
|
---|
737 | + $(VBOXWEB_OUT_DIR)/soapC-6.cpp \
|
---|
738 | + $(VBOXWEB_OUT_DIR)/soapC-7.cpp \
|
---|
739 | + $(VBOXWEB_OUT_DIR)/soapC-8.cpp \
|
---|
740 | + $(VBOXWEB_OUT_DIR)/soapC-9.cpp \
|
---|
741 | + $(VBOXWEB_OUT_DIR)/soapC-10.cpp \
|
---|
742 | + $(VBOXWEB_OUT_DIR)/soapC-11.cpp \
|
---|
743 | + $(VBOXWEB_OUT_DIR)/soapC-12.cpp \
|
---|
744 | + $(VBOXWEB_OUT_DIR)/soapC-13.cpp \
|
---|
745 | + $(VBOXWEB_OUT_DIR)/soapC-14.cpp \
|
---|
746 | + $(VBOXWEB_OUT_DIR)/soapC-15.cpp \
|
---|
747 | + $(VBOXWEB_OUT_DIR)/soapC-16.cpp \
|
---|
748 | + $(VBOXWEB_OUT_DIR)/soapC-17.cpp \
|
---|
749 | + $(VBOXWEB_OUT_DIR)/soapC-18.cpp \
|
---|
750 | + $(VBOXWEB_OUT_DIR)/soapC-19.cpp \
|
---|
751 | + $(VBOXWEB_OUT_DIR)/soapC-20.cpp \
|
---|
752 | : $(VBOXWEB_OUT_DIR)/soapC.cpp $$(split-soapC_1_TARGET) | $$(dir $$@)
|
---|
753 | $(RM) -f -- $(wildcard $(VBOXWEB_OUT_DIR)/soapC-?.cpp $(VBOXWEB_OUT_DIR)/soapC-??.cpp)
|
---|
754 | $(split-soapC_1_TARGET) $(VBOXWEB_OUT_DIR)/soapC.cpp $(VBOXWEB_OUT_DIR) 20
|
---|
755 | endif # !VBOX_WITHOUT_SPLIT_SOAPC
|
---|
756 |
|
---|
757 | endif # VBOX_GSOAP_INSTALLED
|
---|
758 |
|
---|
759 |
|
---|
760 |
|
---|
761 | # generate method maps in server: map wsdl operations to com/xpcom method calls
|
---|
762 | $(VBOXWEB_OUT_DIR)/methodmaps.cpp: $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-cpp.xsl $(VBOX_PATH_IDL)/typemap-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
|
---|
763 | $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-cpp.xsl)
|
---|
764 | $(QUIET)$(VBOX_XSLTPROC) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-cpp.xsl $<
|
---|
765 |
|
---|
766 | # generate C file which contains vboxweb.wsdl
|
---|
767 | $$(VBOXWEB_OUT_DIR)/vboxweb-wsdl.c: $(VBOXWEB_WSDL) $(VBOX_BIN2C)
|
---|
768 | $(call MSG_TOOL,bin2c,vboxweb-wsdl,$<,$@)
|
---|
769 | $(QUIET)$(VBOX_BIN2C) -ascii VBoxWebWSDL $< $@
|
---|
770 |
|
---|
771 |
|
---|
772 | ifdef VBOX_ONLY_SDK
|
---|
773 |
|
---|
774 | $(VBOXWEB_JAXWSSAMPLE): $(VBOX_PATH_WEBSERVICE)/samples/java/jax-ws/clienttest.java
|
---|
775 | $(QUIET)$(RM) -f -- $@
|
---|
776 | $(QUIET)$(MKDIR) -p $(VBOXWEB_SAMPLES_JAXWS_DIR)
|
---|
777 | $(QUIET)$(SED) -e 's/{VBOX_API_SUFFIX}/$(VBOX_API_SUFFIX)/' < $< > $@
|
---|
778 |
|
---|
779 | $(VBOXWEB_METRICSAMPLE): $(VBOX_PATH_WEBSERVICE)/samples/java/jax-ws/metrictest.java
|
---|
780 | $(QUIET)$(RM) -f -- $@
|
---|
781 | $(QUIET)$(MKDIR) -p $(VBOXWEB_SAMPLES_JAXWS_DIR)
|
---|
782 | $(QUIET)$(SED) -e 's/{VBOX_API_SUFFIX}/$(VBOX_API_SUFFIX)/' < $< > $@
|
---|
783 |
|
---|
784 | endif # VBOX_ONLY_SDK
|
---|
785 |
|
---|
786 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|