VirtualBox

source: vbox/trunk/src/VBox/Main/webservice/Makefile.kmk@ 33696

Last change on this file since 33696 was 33540, checked in by vboxsync, 14 years ago

*: spelling fixes, thanks Timeless!

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 30.3 KB
Line 
1# $Id: Makefile.kmk 33540 2010-10-28 09:27:05Z 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) 2006-2010 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
73SUB_DEPTH = ../../../..
74include $(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#
95ifeq ($(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
108else
109 VBOX_PATH_GSOAP := $(VBOX_PATH_GSOAP)
110endif
111VBOX_PATH_GSOAP_BIN := $(strip $(VBOX_PATH_GSOAP_BIN))
112if "$(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
121 VBOX_PATH_GSOAP_BIN := $(VBOX_PATH_GSOAP_BIN)/$(KBUILD_HOST).x86
122 endif
123 if !exists($(VBOX_PATH_GSOAP_BIN))
124 VBOX_PATH_GSOAP_BIN := $(VBOX_PATH_GSOAP)/bin
125 endif
126endif
127VBOX_SOAPCPP2 := $(VBOX_PATH_GSOAP_BIN)/soapcpp2$(HOSTSUFF_EXE)
128VBOX_WSDL2H := $(VBOX_PATH_GSOAP_BIN)/wsdl2h$(HOSTSUFF_EXE)
129VBOX_STUBMAKER = $(firstword $(which stubmaker stubmaker.pl) stubmaker_not_found)
130VBOX_WSDL2PY = $(firstword $(which wsdl2py) wsdl2py_not_found)
131
132VBOX_PATH_GSOAP_IMPORT := $(strip $(if $(VBOX_PATH_GSOAP_IMPORT),$(VBOX_PATH_GSOAP_IMPORT),$(VBOX_PATH_GSOAP)/import))
133VBOX_GSOAP_INCS := $(strip $(if $(VBOX_GSOAP_INCS),$(VBOX_GSOAP_INCS),$(VBOX_PATH_GSOAP) $(VBOX_PATH_GSOAP_IMPORT) ))
134# note: $(if $(defined FOO)) does not work here!
135VBOX_GSOAP_CXX_SOURCES := $(strip $(if-expr "$(origin VBOX_GSOAP_CXX_SOURCES)" != "undefined",$(VBOX_GSOAP_CXX_SOURCES),$(VBOX_PATH_GSOAP)/stdsoap2.cpp))
136VBOX_GSOAP_CXX_LIBS := $(strip $(if-expr "$(origin VBOX_GSOAP_CXX_LIBS)" != "undefined",$(VBOX_GSOAP_CXX_LIBS),))
137
138
139#
140# Globals
141#
142VBOXWEB_OUT_DIR := $(PATH_TARGET)/webservice
143BLDDIRS += $(VBOXWEB_OUT_DIR)
144
145# The webservice location
146VBOX_PATH_WEBSERVICE := $(PATH_SUB_CURRENT)
147
148# If this is set, all webservice files are considered out-of-date every time
149# this makefile is touched. Otherwise, set this to empty.
150RECOMPILE_ON_MAKEFILE_CURRENT := $(MAKEFILE_CURRENT)
151
152PATH_TARGET_SOAPDEMOXML := $(VBOXWEB_OUT_DIR)/demo_soapxml
153PATH_TARGET_SOAPDEMOHEADERS := $(VBOXWEB_OUT_DIR)/demo_headers
154PATH_TARGET_SOAPDEMONSMAPS := $(VBOXWEB_OUT_DIR)/demo_namespacemaps
155PATH_TARGET_WEBTEST := $(VBOXWEB_OUT_DIR)/webtest
156
157# platform-specific XIDL file generated from $(VBOXWEB_IDL_SRC):
158VBOXWEB_IDL_SRC_ORIG := $(VBOX_XIDL_FILE)
159# the original XIDL file:
160VBOXWEB_IDL_SRC := $(VBOXWEB_OUT_DIR)/VirtualBox.xidl
161
162VBOXWEB_WSDL = $(VBOX_PATH_SDK)/bindings/webservice/vboxweb.wsdl
163VBOXWEBSERVICE_WSDL = $(VBOX_PATH_SDK)/bindings/webservice/vboxwebService.wsdl
164
165VBOXWEB_TYPEMAP := $(VBOXWEB_OUT_DIR)/typemap.dat
166
167VBOXWEB_GSOAPH_FROM_XSLT := $(VBOXWEB_OUT_DIR)/gsoapH_from_xslt.h
168ifdef VBOX_GSOAP_INSTALLED
169 VBOXWEB_GSOAPH_FROM_GSOAP := $(VBOXWEB_OUT_DIR)/gsoapH_from_gsoap.h
170else
171 VBOXWEB_GSOAPH_FROM_GSOAP :=
172endif
173VBOXWEB_SOAP_CLIENT_H := $(VBOXWEB_OUT_DIR)/soapStub.h
174VBOXWEB_SOAP_SERVER_H := $(VBOXWEB_OUT_DIR)/soapH.h
175
176
177ifdef VBOX_GSOAP_VERBOSE
178 VBOXWEB_XSLTPROC_VERBOSE = --stringparam G_argDebug '1'
179 VBOXWEB_WSDL_VERBOSE = -v
180else
181 VBOXWEB_SOAPCPP2_SKIP_FILES = -x
182endif
183
184
185## @todo VBOXWEB_GSOAPH_FROM_XSLT should probably be a indirect dep of something.
186VBOXWEB_OTHERS += \
187 $(VBOXWEB_GSOAPH_FROM_XSLT)
188
189
190
191ifdef VBOX_GSOAP_INSTALLED
192 ifndef VBOX_ONLY_SDK
193 #
194 # vboxsoap - Library used by both the programs (save build time).
195 #
196 LIBRARIES += vboxsoap
197 vboxsoap_TEMPLATE = VBOXR3EXE
198 ifdef VBOX_USE_VCC80
199 vboxsoap_CXXFLAGS.win += -bigobj
200 endif
201 ifn1of ($(KBUILD_TARGET), win)
202 vboxsoap_CXXFLAGS += -Wno-shadow
203 endif
204 vboxsoap_INCS := \
205 $(VBOX_GSOAP_INCS) \
206 $(VBOXWEB_OUT_DIR) \
207 $(PATH_SUB_CURRENT)
208 ifdef VBOX_WITHOUT_SPLIT_SOAPC
209 vboxsoap_SOURCES = \
210 $(VBOXWEB_OUT_DIR)/soapC.cpp
211 else
212 BLDPROGS += split-soapC
213 split-soapC_TEMPLATE = VBOXBLDPROG
214 split-soapC_SOURCES = split-soapC.cpp
215
216 vboxsoap_SOURCES = \
217 $(VBOXWEB_OUT_DIR)/soapC-1.cpp \
218 $(VBOXWEB_OUT_DIR)/soapC-2.cpp \
219 $(VBOXWEB_OUT_DIR)/soapC-3.cpp \
220 $(VBOXWEB_OUT_DIR)/soapC-4.cpp \
221 $(VBOXWEB_OUT_DIR)/soapC-5.cpp \
222 $(VBOXWEB_OUT_DIR)/soapC-6.cpp \
223 $(VBOXWEB_OUT_DIR)/soapC-7.cpp \
224 $(VBOXWEB_OUT_DIR)/soapC-8.cpp \
225 $(VBOXWEB_OUT_DIR)/soapC-9.cpp \
226 $(VBOXWEB_OUT_DIR)/soapC-10.cpp \
227 $(VBOXWEB_OUT_DIR)/soapC-11.cpp \
228 $(VBOXWEB_OUT_DIR)/soapC-12.cpp \
229 $(VBOXWEB_OUT_DIR)/soapC-13.cpp \
230 $(VBOXWEB_OUT_DIR)/soapC-14.cpp \
231 $(VBOXWEB_OUT_DIR)/soapC-15.cpp \
232 $(VBOXWEB_OUT_DIR)/soapC-16.cpp \
233 $(VBOXWEB_OUT_DIR)/soapC-17.cpp \
234 $(VBOXWEB_OUT_DIR)/soapC-18.cpp \
235 $(VBOXWEB_OUT_DIR)/soapC-19.cpp \
236 $(VBOXWEB_OUT_DIR)/soapC-20.cpp
237 endif
238 vboxsoap_CLEAN := $(vboxsoap_SOURCES) # lazy bird
239 vboxsoap_SOURCES += \
240 $(VBOX_GSOAP_CXX_SOURCES)
241 vboxsoap_ORDERDEPS = \
242 $(VBOXWEB_IDL_SRC) \
243 $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts
244 ifn1of ($(KBUILD_TARGET), win)
245 $(VBOX_GSOAP_CXX_SOURCES)_CXXFLAGS = -Wno-format
246 endif
247
248ifdef VBOX_SOAP_PRECOMPILED_HEADER
249 # This'll save a few seconds, but the compiler invocation currently makes it impracticable. This will
250 # be addressed in a future kBuild version, by adding PCH support or/and by adding some helpers to
251 # gather the required data (DEFS,INCS,CXXTOOL,CXXFLAGS).
252 vboxsoap_INTERMEDIATES += $(VBOXWEB_OUT_DIR)/soapH.h.gch
253 vboxsoap_CXXFLAGS += -Winvalid-pch -H
254 vboxsoap_CLEAN += $(VBOXWEB_OUT_DIR)/soapH.h.gch
255
256$(VBOXWEB_OUT_DIR)/soapH.h.gch: $(VBOXWEB_OUT_DIR)/soapH.h
257 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 \
258 $< -o $@
259endif
260 endif # !VBOX_ONLY_SDK
261
262
263 ifndef VBOX_ONLY_SDK
264 #
265 # vboxwebsrv - webservice server process
266 #
267 PROGRAMS += vboxwebsrv
268 vboxwebsrv_TEMPLATE = VBOXMAINCLIENTEXE
269 vboxwebsrv_DEFS += SOCKET_CLOSE_ON_EXEC
270 vboxwebsrv_INCS = \
271 $(VBOX_GSOAP_INCS) \
272 $(VBOXWEB_OUT_DIR) \
273 .
274 ifdef VBOX_USE_VCC80
275 vboxwebsrv_CXXFLAGS.win += -bigobj
276 endif
277 ifn1of ($(KBUILD_TARGET), win)
278 vboxwebsrv_CXXFLAGS += -Wno-shadow
279 endif
280 vboxwebsrv_LIBS += \
281 $(PATH_LIB)/vboxsoap$(VBOX_SUFF_LIB) \
282 $(VBOX_GSOAP_CXX_LIBS)
283 vboxwebsrv_LIBS.solaris += socket nsl
284 vboxwebsrv_SOURCES = \
285 vboxweb.cpp \
286 $(VBOXWEB_OUT_DIR)/methodmaps.cpp \
287 $(VBOXWEB_OUT_DIR)/soapServer.cpp
288 vboxwebsrv_CLEAN = \
289 $(VBOXWEB_OUT_DIR)/methodmaps.cpp \
290 $(VBOXWEB_OUT_DIR)/soapServer.cpp
291
292 vboxwebsrv_ORDERDEPS = $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts
293 endif # !VBOX_ONLY_SDK
294
295ifdef VBOX_WITH_JWS
296INSTALLS += VBoxJWs-inst-jar
297
298#
299# Java glue JAR files
300#
301VBOX_JWS_JAR = $(VBoxJWs-inst-jar_0_OUTDIR)/vboxjws.jar
302VBOX_JWS_TARGET := $(PATH_TARGET)/vboxjws-gen
303VBOX_JWS_GEN = $(VBOX_JWS_TARGET)/jwsgen
304VBOX_JWS_JDEST := $(VBOX_JWS_TARGET)/jdest
305VBOX_GLUE_XSLT_DIR := $(PATH_ROOT)/src/VBox/Main/glue
306VBOX_JAXLIB_DIR := $(PATH_ROOT)/src/VBox/Main/webservice/jaxlibs
307
308VBoxJWs-inst-jar_INST = $(INST_SDK)bindings/webservice/java/jax-ws
309VBoxJWs-inst-jar_SOURCES = \
310 $(VBOX_JWS_JAR)
311VBoxJWs-inst-jar_CLEAN = \
312 $(VBOX_JWS_JAR) \
313 $(VBOX_JWS_GEN)/jwsglue.list \
314 $(wildcard \
315 $(VBOX_JWS_GEN)/java/*.java \
316 $(VBOX_JWS_GEN)/java/jws/*/*/*/*.java \
317 $(VBOX_JWS_JDEST)/*.class \
318 $(VBOX_JWS_JDEST)/*/*.class \
319 $(VBOX_JWS_JDEST)/*/*/*.class \
320 $(VBOX_JWS_JDEST)/*/*/*/*.class \
321 )
322VBoxJWs-inst-jar_BLDDIRS += $(VBOX_JWS_GEN)/java $(VBOX_JWS_GEN)/java/jws
323
324$(VBOX_JWS_GEN)/jwsglue.list: \
325 $(VBOX_XIDL_FILE) \
326 $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl \
327 $(VBOX_FILESPLIT) \
328 $(VBOXWEBSERVICE_WSDL) \
329 | $(VBOX_JWS_GEN)/java/jws/
330 $(call MSG_L1,Generating JAX-WS Java glue files from XIDL)
331 $(RM) -f $(wildcard $(VBOX_JWS_GEN)/java/*.java) $(wildcard $(VBOX_JWS_GEN)/java/jws/*/*/*/*.java)
332 $(QUIET)$(VBOX_XSLTPROC) \
333 --stringparam G_vboxApiSuffix $(VBOX_API_SUFFIX) \
334 --stringparam G_vboxGlueStyle jaxws \
335 -o $(VBOX_JWS_GEN)/java/merged.file $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl $<
336 $(QUIET)$(VBOX_FILESPLIT) $(VBOX_JWS_GEN)/java/merged.file $(VBOX_JWS_GEN)/java
337 $(call MSG_GENERATE,,$@,JAX-WS for Java 1.6 bindings using $(VBOXWEBSERVICE_WSDL))
338 $(VBOX_WSIMPORT) -Xnocompile -p $(VBOX_JAVA_PACKAGE).jaxws -d $(VBOX_JWS_GEN)/java/jws $(VBOXWEBSERVICE_WSDL)
339 $(QUIET)echo $(VBOX_JWS_GEN)/java/*.java > $@
340 $(QUIET)echo $(VBOX_JWS_GEN)/java/jws/*/*/*/*.java >> $@
341
342$$(VBOX_JWS_JAR): $(VBOX_JWS_GEN)/jwsglue.list $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL) | $$(dir $$@)
343 $(call MSG_TOOL,javac,$(notdir $@),jwsgen.list,)
344 $(QUIET)$(RM) -Rf $(VBOX_JWS_JDEST)
345 $(QUIET)$(MKDIR) -p $(VBOX_JWS_JDEST)
346 $(call MSG_L1,Compiling bridge code)
347 $(VBOX_JAVAC) $(VBOX_JAVAC_OPTS) \
348 @$(VBOX_JWS_GEN)/jwsglue.list \
349 -d $(VBOX_JWS_JDEST) -classpath $(VBOX_JWS_JDEST)
350 $(QUIET)$(SED) -e "s/vboxweb.wsdl/vboxweb$(VBOX_API_SUFFIX).wsdl/" < $(VBOXWEBSERVICE_WSDL) > $(VBOX_JWS_JDEST)/vboxwebService$(VBOX_API_SUFFIX).wsdl
351 $(QUIET)$(CP) -f $(VBOXWEB_WSDL) $(VBOX_JWS_JDEST)/vboxweb$(VBOX_API_SUFFIX).wsdl
352 $(call MSG_LINK,$(notdir $@),$@)
353 $(VBOX_JAR) cf $@ -C $(VBOX_JWS_JDEST) .
354
355endif # VBOX_WITH_JWS
356
357 ifndef VBOX_ONLY_SDK
358 #
359 # webtest - webservice sample client in C++
360 #
361 PROGRAMS += webtest
362 webtest_TEMPLATE = VBOXR3EXE
363 ifdef VBOX_USE_VCC80
364 webtest_CXXFLAGS.win += -bigobj
365 endif
366 ifn1of ($(KBUILD_TARGET), win)
367 webtest_CXXFLAGS += -Wno-shadow
368 endif
369 webtest_INCS := \
370 $(VBOX_GSOAP_INCS) \
371 $(VBOXWEB_OUT_DIR) \
372 .
373 webtest_LIBS += \
374 $(PATH_LIB)/vboxsoap$(VBOX_SUFF_LIB) \
375 $(VBOX_GSOAP_CXX_LIBS)
376 webtest_LIBS.solaris += nsl
377 webtest_SOURCES = \
378 webtest.cpp \
379 $(VBOXWEB_OUT_DIR)/soapClient.cpp
380 webtest_CLEAN = \
381 $(VBOXWEB_OUT_DIR)/soapClient.cpp
382
383 webtest_ORDERDEPS = $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts
384 endif # !VBOX_ONLY_SDK
385
386
387 #
388 # Additional mess to cleanup (applies to both webtest and vboxwebsrv).
389 #
390 ## @todo figure out whether the SDK really needs this or not...
391 OTHER_CLEAN += \
392 $(wildcard $(VBOXWEB_OUT_DIR)/soap*.h) \
393 $(wildcard $(VBOXWEB_OUT_DIR)/soap*.cpp) \
394 $(wildcard $(VBOXWEB_OUT_DIR)/*.nsmap) \
395 $(VBOXWEB_GSOAPH_FROM_XSLT) \
396 $(VBOXWEB_GSOAPH_FROM_GSOAP) \
397 $(VBOXWEB_SOAP_CLIENT_H) \
398 $(VBOXWEB_SOAP_SERVER_H) \
399 $(VBOXWEB_OUT_DIR)/gsoap_generate_all_ts \
400 $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts \
401 $(wildcard $(PATH_TARGET_SOAPDEMOXML)/*) \
402 $(PATH_TARGET_SOAPDEMOXML)/dummy_file \
403 $(wildcard $(PATH_TARGET_SOAPDEMOHEADERS)/*) \
404 $(PATH_TARGET_SOAPDEMOHEADERS)/dummy_file \
405 $(wildcard $(PATH_TARGET_SOAPDEMONSMAPS)/*) \
406 $(PATH_TARGET_SOAPDEMONSMAPS)/dummy_file
407
408endif # VBOX_GSOAP_INSTALLED
409
410
411ifdef VBOX_ONLY_SDK
412 #
413 # Globals relevant to the SDK.
414 #
415 VBOXWEB_GLUE_PYTHON = $(VBOX_PATH_SDK)/bindings/webservice/python/lib/VirtualBox_wrappers.py
416 VBOXWEB_WS_PYTHON = $(VBOX_PATH_SDK)/bindings/webservice/python/lib/VirtualBox_services.py
417 VBOXWEB_WS_PERL = $(VBOX_PATH_SDK)/bindings/webservice/perl/lib/vboxService.pm
418 VBOXWEB_WS_PHP = $(VBOX_PATH_SDK)/bindings/webservice/php/lib/vboxServiceWrappers.php
419 VBOXWEB_SAMPLES_AXIS_DIR = $(VBOX_PATH_SDK)/bindings/webservice/java/axis/samples
420 VBOXWEB_SAMPLES_JAXWS_DIR = $(VBOX_PATH_SDK)/bindings/webservice/java/jax-ws/samples
421 VBOXWEB_JAXWSSAMPLE = $(VBOXWEB_SAMPLES_JAXWS_DIR)/clienttest.java
422 VBOXWEB_METRICSAMPLE = $(VBOXWEB_SAMPLES_JAXWS_DIR)/metrictest.java
423
424 VBOXWEB_GLUE_JAVA_TMP = $(VBOXWEB_OUT_DIR)/glue-jaxws.java.tmp
425 VBOXWEB_PATH_SDK_GLUE_JAVA = $(VBOX_PATH_SDK)/bindings/webservice/java/jax-ws/src
426 VBOXWEB_JAVALIB = $(VBOX_PATH_SDK)/bindings/webservice/java/jax-ws/lib
427 VBOXWEB_JAVA15_JAR = $(VBOXWEB_JAVALIB)/vboxws_java15.jar
428 VBOXWEB_JAVA16_JAR = $(VBOXWEB_JAVALIB)/vboxws_java16.jar
429
430define find_java_files
431 $(shell find $(1) -name \*.java)
432endef
433
434 VBOX_JAXWS_LIBDIR = $(VBOX_PATH_WEBSERVICE)/jaxlibs
435 # well, not really good
436 VBOX_JAVA15 = $(firstword $(wildcard \
437 /usr/lib/jvm/java-1.5.0-sun/bin/java \
438 /usr/jdk/jdk1.5*/bin/java \
439 /opt/sun-jdk-1.5*/bin/java \
440 /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Commands/java))
441 ifeq ($(strip $(VBOX_JAVA15)),)
442 $(error Failed to autodetect VBOX_JAVA15, please set it manually)
443 endif
444 VBOX_JAVA16 = java
445 VBOX_JAVAC15 = javac -target 1.5
446 VBOX_JAVAC16 = javac -target 1.6
447 VBOX_WSIMPORT15 = $(VBOX_JAVA15) -jar $(VBOX_JAXWS_LIBDIR)/jaxws-tools.jar
448 VBOX_WSIMPORT16 = $(firstword $(wildcard \
449 /usr/jdk/jdk1.6*/bin/wsimport \
450 /usr/bin/wsimport \
451 /opt/sun-jdk-1.6*/bin/wsimport))
452 ifeq ($(strip $(VBOX_WSIMPORT16)),)
453 $(error Failed to autodetect VBOX_WSIMPORT16, please set it manually)
454 endif
455
456 VBOXWEB_OTHERS += \
457 $(VBOXWEB_GLUE_PYTHON) \
458 $(VBOXWEB_WS_PYTHON) \
459 $(VBOXWEB_WS_PERL) \
460 $(VBOXWEB_WS_PHP) \
461 $(VBOXWEB_PYTHONWSSAMPLE)
462
463ifdef VBOX_WITH_OLD_JWS
464 VBOXWEB_OTHERS += \
465 $(VBOXWEB_GLUE_JAVA_TMP) \
466 $(VBOXWEB_JAXWSSAMPLE) \
467 $(VBOXWEB_METRICSAMPLE) \
468 $(VBOXWEB_JAVA15_JAR) \
469 $(VBOXWEB_JAVA16_JAR)
470endif
471
472 #
473 # Install sample code.
474 #
475 INSTALLS += vboxwebinst
476 vboxwebinst_INST = $(INST_SDK)bindings/webservice/
477 vboxwebinst_MODE = a+rx,u+w
478 vboxwebinst_SOURCES = \
479 samples/java/axis/clienttest.java=>java/axis/samples/clienttest.java \
480 samples/java/jax-ws/Makefile.glue=>java/jax-ws/src/Makefile \
481 samples/java/jax-ws/Makefile=>java/jax-ws/samples/Makefile \
482 samples/perl/clienttest.pl=>perl/samples/clienttest.pl \
483 samples/php/clienttest.php=>php/samples/clienttest.php \
484 samples/python/Makefile=>python/samples/Makefile \
485 samples/python/Makefile.glue=>python/lib/Makefile
486
487endif # VBOX_ONLY_SDK
488
489## @todo VBOXWEB_WSDL and VBOXWEBSERVICE_WSDL should be an install target.
490VBOXWEB_OTHERS += \
491 $(VBOXWEB_WSDL) \
492 $(VBOXWEBSERVICE_WSDL)
493
494#
495# Update the OTHERS and OTHER_CLEAN lists with VBOXWEB_OTHERS and some more stuff.
496#
497# We can't just built up OTHERS and append it to OTHER_CLEAN because we're sharing
498# OTHERS with all the other VBox makefiles (VBOX_SINGLE_MAKEFILE), thus VBOXWEB_OTHERS.
499#
500OTHERS += $(VBOXWEB_OTHERS)
501OTHER_CLEAN += \
502 $(VBOXWEB_OTHERS) \
503 $(VBOXWEB_TYPEMAP) \
504 $(VBOXWEB_IDL_SRC)
505
506# generate platform-specific XIDL file from original XIDL file
507$(VBOXWEB_IDL_SRC): $(VBOXWEB_IDL_SRC_ORIG) $(VBOX_PATH_WEBSERVICE)/platform-xidl.xsl | $$(dir $$@)
508 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using platform-xidl.xsl)
509 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/platform-xidl.xsl $<
510
511# generate WSDL from main XIDL file
512$(VBOXWEB_WSDL): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-wsdl.xsl $(VBOX_PATH_WEBSERVICE)/websrv-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) ## @todo | $$(dir $$@)
513 $(QUIET)$(MKDIR) -p $(@D)
514 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-wsdl.xsl)
515 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-wsdl.xsl $<
516
517$(VBOXWEBSERVICE_WSDL): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-wsdl-service.xsl $(VBOX_PATH_WEBSERVICE)/websrv-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) ## @todo | $$(dir $$@)
518 $(QUIET)$(MKDIR) -p $(@D)
519 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-wsdl-service.xsl)
520 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-wsdl-service.xsl $<
521
522ifdef VBOX_ONLY_SDK
523
524$(VBOXWEB_GLUE_PYTHON): $(VBOXWEB_IDL_SRC) $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL) $(VBOX_PATH_WEBSERVICE)/websrv-python.xsl
525 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-python.xsl)
526 $(QUIET)$(MKDIR) -p $(@D)
527 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-python.xsl $<
528
529$(VBOXWEB_WS_PYTHON): $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL)
530 $(call MSG_GENERATE,,$@, WS Python bindings)
531 $(QUIET)$(MKDIR) -p $(@D)
532# Try both w/o and with --file option
533 $(QUIET)$(REDIRECT) -C $(@D) -- bash -c "$(VBOX_WSDL2PY) -b $(VBOXWEBSERVICE_WSDL) || $(VBOX_WSDL2PY) -b --file $(VBOXWEBSERVICE_WSDL)"
534 $(QUIET)$(APPEND) $@ ''
535
536$(VBOXWEB_WS_PERL): $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL)
537 $(call MSG_GENERATE,,$@, WS Perl bindings)
538 $(QUIET)$(MKDIR) -p $(@D)
539 $(QUIET)$(REDIRECT) -C $(@D) -- $(VBOX_STUBMAKER) file://$(VBOXWEBSERVICE_WSDL)
540# Ugly, ugly, ugly, make me right once
541 $(QUIET)$(SED) -e "s+http://www.virtualbox.org/Service+http://www.virtualbox.org/+" < $(VBOXWEB_WS_PERL) > $(VBOXWEB_WS_PERL).tmp
542 $(QUIET)$(MV) $(VBOXWEB_WS_PERL).tmp $(VBOXWEB_WS_PERL)
543 $(QUIET)$(APPEND) $@ ''
544
545$(VBOXWEB_WS_PHP): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-php.xsl
546 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-php.xsl)
547 $(QUIET)$(MKDIR) -p $(@D)
548 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-php.xsl $<
549
550endif # VBOX_ONLY_SDK
551
552# generate typemap.dat (used by wsdl2h) from main XIDL file
553$(VBOXWEB_TYPEMAP): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-typemap.xsl $(VBOX_PATH_WEBSERVICE)/websrv-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
554 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-typemap.xsl)
555 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-typemap.xsl $<
556
557# generate gsoap pseudo-C header file from that WSDL; once via XSLT...
558$(VBOXWEB_GSOAPH_FROM_XSLT): $(VBOXWEB_WSDL) $(VBOX_PATH_WEBSERVICE)/websrv-wsdl2gsoapH.xsl $(VBOX_PATH_WEBSERVICE)/websrv-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
559 $(call MSG_GENERATE,,$@,$(VBOXWEB_WSDL) using websrv-wsdl2gsoapH.xsl)
560 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-wsdl2gsoapH.xsl $<
561
562NSMAP = $(VBOXWEB_OUT_DIR)/vboxwebsrv.nsmap
563
564$(NSMAP): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-nsmap.xsl $(VBOX_PATH_WEBSERVICE)/websrv-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
565 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-nsmap.xsl)
566 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-nsmap.xsl $<
567
568ifdef VBOX_GSOAP_INSTALLED
569# ... and once with the gSOAP tool (just for comparison, we don't use it for licensing reasons)
570$(VBOXWEB_GSOAPH_FROM_GSOAP): $(VBOXWEB_WSDL) $(VBOXWEB_TYPEMAP) | $$(dir $$@)
571 $(call MSG_GENERATE,,$@,)
572 $(VBOX_WSDL2H) $(VBOXWEB_WSDL_VERBOSE) -t$(VBOXWEB_TYPEMAP) -nvbox -o $@ $<
573
574# this sets the gsoap header that we use for further compilation; if stuff works, then the
575# one we generate via XSLT produces the same end result as the one from the gSOAP tool;
576# with this variable we can swap for testing, but shipped code must use VBOXWEB_GSOAPH_FROM_XSLT
577GSOAPH_RELEVANT = $(VBOXWEB_GSOAPH_FROM_XSLT)
578
579# wsdl2h -v: verbose
580# wsdl2h -e: don't qualify enum names
581# wsdl2h -n<prefix>: namespace header prefix
582
583## @todo change this to state explicitly what will be generated?
584
585# generate server and client code from gsoap pseudo-C header file
586$(VBOXWEB_OUT_DIR)/gsoap_generate_all_ts \
587+ $(VBOXWEB_OUT_DIR)/soapH.h \
588+ $(VBOXWEB_OUT_DIR)/soapStub.h \
589+ $(VBOXWEB_OUT_DIR)/soapC.cpp \
590+ $(VBOXWEB_OUT_DIR)/soapClient.cpp \
591+ $(VBOXWEB_OUT_DIR)/soapServer.cpp \
592: $(VBOXWEB_GSOAPH_FROM_GSOAP) $(VBOXWEB_GSOAPH_FROM_XSLT) $(NSMAP) $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
593 $(call MSG_GENERATE,,lots of files,$(GSOAPH_RELEVANT))
594 $(RM) -f $@
595 $(REDIRECT) -C $(VBOXWEB_OUT_DIR) -- $(VBOX_SOAPCPP2) $(VBOXWEB_SOAPCPP2_SKIP_FILES) -L -2 -w -I$(VBOX_PATH_GSOAP_IMPORT) $(GSOAPH_RELEVANT)
596 $(APPEND) $@ done
597
598# copy the generated headers and stuff. This has to be a separate rule if we
599# want to use wildcard (all commands are expaned when the rule is evaluated).
600$(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts: $(VBOXWEB_OUT_DIR)/gsoap_generate_all_ts | $$(dir $$@)
601 $(RM) -f $@
602 $(MKDIR) -p $(PATH_TARGET_SOAPDEMOXML) $(PATH_TARGET_SOAPDEMOHEADERS) $(PATH_TARGET_SOAPDEMONSMAPS)
603ifdef VBOX_GSOAP_VERBOSE
604 $(MV) -f $(wildcard $(VBOXWEB_OUT_DIR)/*.req.xml $(VBOXWEB_OUT_DIR)/*.res.xml) $(PATH_TARGET_SOAPDEMOXML)
605endif
606 $(MV) -f $(wildcard $(VBOXWEB_OUT_DIR)/soapvbox*.h) $(PATH_TARGET_SOAPDEMOHEADERS)
607 $(MV) -f $(VBOXWEB_OUT_DIR)/vboxBinding.nsmap $(PATH_TARGET_SOAPDEMONSMAPS)
608 $(APPEND) $@ done
609
610$(PATH_TARGET_SOAPDEMONSMAPS) \
611$(PATH_TARGET_SOAPDEMOHEADERS)/soapvboxBindingProxy.h \
612$(PATH_TARGET_SOAPDEMOHEADERS)/soapvboxBindingObject.h: $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts
613
614# soapcpp2 -2: generate SOAP 1.2 calls
615# soapcpp2 -S: server-side code only
616# soapcpp2 -L: don't generate soapClientLib/soapServerLib
617# soapcpp2 -w: don't generate WSDL and schema files
618# soapcpp2 -x: don't generate sample XML files
619
620ifndef VBOX_WITHOUT_SPLIT_SOAPC
621#
622# Split up the soapC.cpp monster into manageable bits that can be
623# built in parallel and without exhausting all available memory.
624#
625$(VBOXWEB_OUT_DIR)/soapC-1.cpp \
626+ $(VBOXWEB_OUT_DIR)/soapC-2.cpp \
627+ $(VBOXWEB_OUT_DIR)/soapC-3.cpp \
628+ $(VBOXWEB_OUT_DIR)/soapC-4.cpp \
629+ $(VBOXWEB_OUT_DIR)/soapC-5.cpp \
630+ $(VBOXWEB_OUT_DIR)/soapC-6.cpp \
631+ $(VBOXWEB_OUT_DIR)/soapC-7.cpp \
632+ $(VBOXWEB_OUT_DIR)/soapC-8.cpp \
633+ $(VBOXWEB_OUT_DIR)/soapC-9.cpp \
634+ $(VBOXWEB_OUT_DIR)/soapC-10.cpp \
635+ $(VBOXWEB_OUT_DIR)/soapC-11.cpp \
636+ $(VBOXWEB_OUT_DIR)/soapC-12.cpp \
637+ $(VBOXWEB_OUT_DIR)/soapC-13.cpp \
638+ $(VBOXWEB_OUT_DIR)/soapC-14.cpp \
639+ $(VBOXWEB_OUT_DIR)/soapC-15.cpp \
640+ $(VBOXWEB_OUT_DIR)/soapC-16.cpp \
641+ $(VBOXWEB_OUT_DIR)/soapC-17.cpp \
642+ $(VBOXWEB_OUT_DIR)/soapC-18.cpp \
643+ $(VBOXWEB_OUT_DIR)/soapC-19.cpp \
644+ $(VBOXWEB_OUT_DIR)/soapC-20.cpp \
645: $(VBOXWEB_OUT_DIR)/soapC.cpp $$(TARGET_split-soapC) | $$(dir $$@)
646 $(RM) -f $(wildcard $(VBOXWEB_OUT_DIR)/soapC-?.cpp $(VBOXWEB_OUT_DIR)/soapC-??.cpp)
647 $(TARGET_split-soapC) $(VBOXWEB_OUT_DIR)/soapC.cpp $(VBOXWEB_OUT_DIR) 20
648endif # !VBOX_WITHOUT_SPLIT_SOAPC
649
650endif # VBOX_GSOAP_INSTALLED
651
652
653
654# generate method maps in server: map wsdl operations to com/xpcom method calls
655$(VBOXWEB_OUT_DIR)/methodmaps.cpp: $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-cpp.xsl $(VBOX_PATH_WEBSERVICE)/websrv-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
656 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-cpp.xsl)
657 $(QUIET)$(VBOX_XSLTPROC) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-cpp.xsl $<
658
659
660ifdef VBOX_ONLY_SDK
661
662$(VBOXWEB_JAXWSSAMPLE): $(VBOX_PATH_WEBSERVICE)/samples/java/jax-ws/clienttest.java
663 $(QUIET)$(MKDIR) -p $(VBOXWEB_SAMPLES_JAXWS_DIR)
664 $(QUIET)$(SED) -e 's/{VBOX_API_SUFFIX}/$(VBOX_API_SUFFIX)/' < $< > $@
665
666$(VBOXWEB_METRICSAMPLE): $(VBOX_PATH_WEBSERVICE)/samples/java/jax-ws/metrictest.java
667 $(QUIET)$(MKDIR) -p $(VBOXWEB_SAMPLES_JAXWS_DIR)
668 $(QUIET)$(SED) -e 's/{VBOX_API_SUFFIX}/$(VBOX_API_SUFFIX)/' < $< > $@
669
670# generate jax-ws wrapper for java client code
671$(VBOXWEB_GLUE_JAVA_TMP): \
672 $(VBOXWEB_IDL_SRC) \
673 $(VBOX_PATH_WEBSERVICE)/glue-jaxws.xsl \
674 $(VBOX_PATH_WEBSERVICE)/websrv-shared.inc.xsl \
675 $(RECOMPILE_ON_MAKEFILE_CURRENT) \
676 | $$(dir $$@) \
677 $(VBOX_FILESPLIT)
678 $(QUIET)$(MKDIR) -p $(@D)
679 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using glue-jaxws.xsl)
680 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) \
681 --stringparam G_vboxApiSuffix $(VBOX_API_SUFFIX) \
682 -o $@ $(VBOX_PATH_WEBSERVICE)/glue-jaxws.xsl $<
683 $(call MSG_GENERATE,,java client glue files in $(VBOXWEB_PATH_SDK_GLUE_JAVA))
684 $(RM) -R -f $(VBOXWEB_PATH_SDK_GLUE_JAVA)
685 $(QUIET)$(MKDIR) -p $(VBOXWEB_PATH_SDK_GLUE_JAVA)
686 $(QUIET)$(VBOX_FILESPLIT) $@ $(VBOXWEB_PATH_SDK_GLUE_JAVA)
687 $(QUIET)$(CP) -f $(VBOX_PATH_WEBSERVICE)/../../../../COPYING.LIB $(VBOXWEB_PATH_SDK_GLUE_JAVA)
688
689$(VBOXWEB_GLUE_JAVA_TMP).done: $(VBOXWEB_GLUE_JAVA_TMP)
690 $(QUIET)$(APPEND) $@ ''
691
692$(VBOXWEB_JAVA15_JAR): $(VBOXWEB_GLUE_JAVA_TMP).done $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL)
693 $(QUIET)$(RM) -Rf $(VBOXWEB_JAVALIB)/gen15
694 $(QUIET)$(MKDIR) -p $(VBOXWEB_JAVALIB)/gen15
695 $(call MSG_GENERATE,,$@,JAX-WS for Java 1.5 bindings using $(VBOXWEBSERVICE_WSDL))
696 $(QUIET)$(VBOX_WSIMPORT15) -p $(VBOX_JAVA_PACKAGE) -d $(VBOXWEB_JAVALIB)/gen15 $(VBOXWEBSERVICE_WSDL)
697 $(call MSG_L1,Compiling bridge code)
698 $(QUIET)$(VBOX_JAVAC15) -cp \
699 $(VBOXWEB_JAVALIB)/gen15:$(VBOX_JAXWS_LIBDIR)/jaxws-api.jar:$(VBOX_JAXWS_LIBDIR)/lib/jaxb-api.jar:$(VBOX_JAXWS_LIBDIR)/jsr181-api.jar \
700 $(call find_java_files,$(VBOXWEB_PATH_SDK_GLUE_JAVA)) -d $(VBOXWEB_JAVALIB)/gen15
701 $(QUIET)$(SED) -e "s/vboxweb.wsdl/vboxweb$(VBOX_API_SUFFIX).wsdl/" < $(VBOXWEBSERVICE_WSDL) > $(VBOXWEB_JAVALIB)/gen15/vboxwebService$(VBOX_API_SUFFIX).wsdl
702 $(QUIET)$(CP) -f $(VBOXWEB_WSDL) $(VBOXWEB_JAVALIB)/gen15/vboxweb$(VBOX_API_SUFFIX).wsdl
703 $(QUIET)$(RM) -f $(call find_java_files,$(VBOXWEB_JAVALIB))
704 $(QUIET)$(VBOX_JAR) cf $@ -C $(VBOXWEB_JAVALIB)/gen15 .
705
706$(VBOXWEB_JAVA16_JAR): $(VBOXWEB_GLUE_JAVA_TMP).done $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL)
707 $(QUIET)$(RM) -Rf $(VBOXWEB_JAVALIB)/gen16
708 $(MKDIR) -p $(VBOXWEB_JAVALIB)/gen16
709 $(call MSG_GENERATE,,$@,JAX-WS for Java 1.6 bindings using $(VBOXWEBSERVICE_WSDL))
710 $(QUIET)$(VBOX_WSIMPORT16) -p $(VBOX_JAVA_PACKAGE) -d $(VBOXWEB_JAVALIB)/gen16 $(VBOXWEBSERVICE_WSDL)
711 $(call MSG_L1,Compiling bridge code)
712 $(QUIET)$(VBOX_JAVAC16) -cp $(VBOXWEB_JAVALIB)/gen16 \
713 $(VBOXWEB_PATH_SDK_GLUE_JAVA)/*.java -d $(VBOXWEB_JAVALIB)/gen16
714 $(QUIET)$(SED) -e "s/vboxweb.wsdl/vboxweb$(VBOX_API_SUFFIX).wsdl/" < $(VBOXWEBSERVICE_WSDL) > $(VBOXWEB_JAVALIB)/gen16/vboxwebService$(VBOX_API_SUFFIX).wsdl
715 $(QUIET)$(CP) -f $(VBOXWEB_WSDL) $(VBOXWEB_JAVALIB)/gen16/vboxweb$(VBOX_API_SUFFIX).wsdl
716 $(QUIET)$(RM) -f $(call find_java_files,$(VBOXWEB_JAVALIB)/gen16)
717 $(QUIET)$(VBOX_JAR) cf $@ -C $(VBOXWEB_JAVALIB)/gen16 .
718
719endif # VBOX_ONLY_SDK
720
721include $(KBUILD_PATH)/subfooter.kmk
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette