VirtualBox

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

最後變更 在這個檔案從35429是 34618,由 vboxsync 提交於 14 年 前

VCC70 workaround.

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

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