VirtualBox

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

Last change on this file since 63966 was 63966, checked in by vboxsync, 8 years ago

Main: Use always precompiled headers for VBoxAPIWrap and vboxsoap.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 35.7 KB
Line 
1# $Id: Makefile.kmk 63966 2016-09-23 10:21:08Z 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-2016 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 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
132endif
133VBOX_SOAPCPP2 := $(VBOX_PATH_GSOAP_BIN)/soapcpp2$(HOSTSUFF_EXE)
134VBOX_WSDL2H := $(VBOX_PATH_GSOAP_BIN)/wsdl2h$(HOSTSUFF_EXE)
135VBOX_STUBMAKER = $(firstword $(which stubmaker stubmaker.pl) stubmaker_not_found)
136# Keep in mind that Python ZSI only exists for Python 2.x, so this hardcodes
137# some things. If you want to build using Python 3.x only you need to disable
138# the creation of the Python webservice bindings anyway.
139if "$(KBUILD_HOST)" != "win"
140VBOX_WSDL2PY = $(firstword $(which wsdl2py) wsdl2py_not_found)
141else
142VBOX_WSDL2PY = $(firstword $(wildcard C:/Python27/Scripts/wsdl2py.exe) wsdl2py_not_found)
143endif
144
145VBOX_PATH_GSOAP_IMPORT := $(strip $(if $(VBOX_PATH_GSOAP_IMPORT),$(VBOX_PATH_GSOAP_IMPORT),$(VBOX_PATH_GSOAP)/import))
146VBOX_GSOAP_INCS := $(strip $(if $(VBOX_GSOAP_INCS),$(VBOX_GSOAP_INCS),$(VBOX_PATH_GSOAP) $(VBOX_PATH_GSOAP_IMPORT) ))
147# note: $(if $(defined FOO)) does not work here!
148VBOX_GSOAP_CXX_SOURCES := $(strip $(if-expr "$(origin VBOX_GSOAP_CXX_SOURCES)" != "undefined",$(VBOX_GSOAP_CXX_SOURCES),$(VBOX_PATH_GSOAP)/stdsoap2.cpp))
149VBOX_GSOAP_CXX_LIBS := $(strip $(if-expr "$(origin VBOX_GSOAP_CXX_LIBS)" != "undefined",$(VBOX_GSOAP_CXX_LIBS),))
150
151
152#
153# Globals
154#
155VBOXWEB_OUT_DIR := $(PATH_TARGET)/webservice
156BLDDIRS += $(VBOXWEB_OUT_DIR)
157
158# The webservice location
159VBOX_PATH_WEBSERVICE := $(PATH_SUB_CURRENT)
160
161# The IDL subdirectory (contains some XSLT files)
162VBOX_PATH_IDL := $(abspath $(PATH_SUB_CURRENT)/../idl)
163
164# If this is set, all webservice files are considered out-of-date every time
165# this makefile is touched. Otherwise, set this to empty.
166RECOMPILE_ON_MAKEFILE_CURRENT := $(MAKEFILE_CURRENT)
167
168PATH_TARGET_SOAPDEMOXML := $(VBOXWEB_OUT_DIR)/demo_soapxml
169PATH_TARGET_SOAPDEMOHEADERS := $(VBOXWEB_OUT_DIR)/demo_headers
170PATH_TARGET_SOAPDEMONSMAPS := $(VBOXWEB_OUT_DIR)/demo_namespacemaps
171PATH_TARGET_WEBTEST := $(VBOXWEB_OUT_DIR)/webtest
172
173# the original XIDL file (has to include documentation as we need it):
174VBOXWEB_IDL_SRC_ORIG := $(VBOX_XIDL_FILE_SRC)
175# the original XIDL file without documentation
176VBOXWEB_IDL_SRC_STRIPPED := $(VBOX_XIDL_FILE)
177# platform-specific XIDL file generated from $(VBOXWEB_IDL_SRC_STRIPPED):
178VBOXWEB_IDL_SRC := $(VBOXWEB_OUT_DIR)/VirtualBox.xidl
179
180VBOXWEB_WSDL = $(VBOXWEB_OUT_DIR)/vboxweb.wsdl
181VBOXWEBSERVICE_WSDL = $(VBOXWEB_OUT_DIR)/vboxwebService.wsdl
182
183VBOXWEB_TYPEMAP := $(VBOXWEB_OUT_DIR)/typemap.dat
184
185VBOXWEB_GSOAPH_FROM_XSLT := $(VBOXWEB_OUT_DIR)/gsoapH_from_xslt.h
186ifdef VBOX_GSOAP_INSTALLED
187 VBOXWEB_GSOAPH_FROM_GSOAP := $(VBOXWEB_OUT_DIR)/gsoapH_from_gsoap.h
188else
189 VBOXWEB_GSOAPH_FROM_GSOAP :=
190endif
191VBOXWEB_SOAP_CLIENT_H := $(VBOXWEB_OUT_DIR)/soapStub.h
192VBOXWEB_SOAP_SERVER_H := $(VBOXWEB_OUT_DIR)/soapH.h
193
194
195ifdef VBOX_GSOAP_VERBOSE
196 VBOXWEB_XSLTPROC_VERBOSE = --stringparam G_argDebug '1'
197 VBOXWEB_WSDL_VERBOSE = -v
198else
199 VBOXWEB_SOAPCPP2_SKIP_FILES = -x
200endif
201
202
203## @todo VBOXWEB_GSOAPH_FROM_XSLT should probably be a indirect dep of something.
204VBOXWEB_OTHERS += \
205 $(VBOXWEB_GSOAPH_FROM_XSLT)
206
207
208# disable -fvisibility=hidden as the SOAP stuff does not properly set the visibility attributes
209TEMPLATE_VBOXWEBR3EXE = Webservices without -fvisibility
210TEMPLATE_VBOXWEBR3EXE_EXTENDS = VBOXR3EXE
211TEMPLATE_VBOXWEBR3EXE_CXXFLAGS = $(filter-out $(VBOX_GCC_fvisibility-hidden) $(VBOX_GCC_fvisibility-inlines-hidden),\
212 $(TEMPLATE_VBOXR3EXE_CXXFLAGS))
213
214ifdef VBOX_GSOAP_INSTALLED
215 ifndef VBOX_ONLY_SDK
216 #
217 # vboxsoap - Library used by both the programs (save build time).
218 #
219 LIBRARIES += vboxsoap
220 vboxsoap_TEMPLATE = VBOXWEBR3EXE
221 ifeq ($(KBUILD_TARGET),win)
222 vboxsoap_USES = vccprecomp
223 vboxsoap_PCH_HDR := $(VBOXWEB_SOAP_SERVER_H)
224 endif
225 vboxsoap_CXXFLAGS += $(VBOX_C_CXX_FLAGS_NO_UNUSED_PARAMETERS)
226 vboxsoap_CXXFLAGS.win += -bigobj
227 ifn1of ($(KBUILD_TARGET), win)
228 vboxsoap_CXXFLAGS += -Wno-shadow -Wno-parentheses $(VBOX_GCC_Wno-literal-suffix)
229 endif
230 vboxsoap_INCS := \
231 $(VBOX_GSOAP_INCS) \
232 $(VBOXWEB_OUT_DIR) \
233 $(PATH_SUB_CURRENT)
234 ifdef VBOX_WITH_WEBSERVICES_SSL
235 vboxsoap_DEFS += WITH_OPENSSL
236 vboxsoap_SDKS += VBOX_OPENSSL2
237 endif
238 ifdef VBOX_WITHOUT_SPLIT_SOAPC
239 vboxsoap_SOURCES = \
240 $(VBOXWEB_OUT_DIR)/soapC.cpp
241 else
242 BLDPROGS += split-soapC
243 split-soapC_TEMPLATE = VBoxBldProg
244 split-soapC_SOURCES = split-soapC.cpp
245
246 vboxsoap_SOURCES = \
247 $(VBOXWEB_OUT_DIR)/soapC-1.cpp \
248 $(VBOXWEB_OUT_DIR)/soapC-2.cpp \
249 $(VBOXWEB_OUT_DIR)/soapC-3.cpp \
250 $(VBOXWEB_OUT_DIR)/soapC-4.cpp \
251 $(VBOXWEB_OUT_DIR)/soapC-5.cpp \
252 $(VBOXWEB_OUT_DIR)/soapC-6.cpp \
253 $(VBOXWEB_OUT_DIR)/soapC-7.cpp \
254 $(VBOXWEB_OUT_DIR)/soapC-8.cpp \
255 $(VBOXWEB_OUT_DIR)/soapC-9.cpp \
256 $(VBOXWEB_OUT_DIR)/soapC-10.cpp \
257 $(VBOXWEB_OUT_DIR)/soapC-11.cpp \
258 $(VBOXWEB_OUT_DIR)/soapC-12.cpp \
259 $(VBOXWEB_OUT_DIR)/soapC-13.cpp \
260 $(VBOXWEB_OUT_DIR)/soapC-14.cpp \
261 $(VBOXWEB_OUT_DIR)/soapC-15.cpp \
262 $(VBOXWEB_OUT_DIR)/soapC-16.cpp \
263 $(VBOXWEB_OUT_DIR)/soapC-17.cpp \
264 $(VBOXWEB_OUT_DIR)/soapC-18.cpp \
265 $(VBOXWEB_OUT_DIR)/soapC-19.cpp \
266 $(VBOXWEB_OUT_DIR)/soapC-20.cpp
267 vboxsoap_CXXFLAGS += \
268 $(VBOX_GCC_Wno-vla)
269 endif
270 vboxsoap_CLEAN := $(vboxsoap_SOURCES) # lazy bird
271 vboxsoap_SOURCES += \
272 $(VBOX_GSOAP_CXX_SOURCES)
273 vboxsoap_ORDERDEPS = \
274 $(VBOXWEB_IDL_SRC) \
275 $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts
276 ifn1of ($(KBUILD_TARGET), win)
277 $(VBOX_GSOAP_CXX_SOURCES)_CXXFLAGS = \
278 -Wno-format \
279 $(if $(VBOX_GCC_Wlogical-op),-Wno-error=logical-op,)
280 # currently necessary when compiling against OpenSSL 1.0 due to a missing
281 # typecase from 'const v3_ext_method*' to 'aka v3_ext_method*'.
282 $(VBOX_GSOAP_CXX_SOURCES)_CXXFLAGS += -fpermissive
283
284 endif
285 $(VBOXWEB_OUT_DIR)/soapC-3.cpp_CXXFLAGS.win.x86 = -Og- # VCC70 says "function too large".
286
287 if "$(KBUILD_TARGET)" == "win" && "$(VBOX_GSOAP_CXX_SOURCES)" != ""
288 $(VBOX_GSOAP_CXX_SOURCES)_CXXFLAGS.win += -wd4668 # preprocessor / windows.h
289 $(VBOX_GSOAP_CXX_SOURCES)_CXXFLAGS.win += -wd4211 # nonstandard extension used: redefined extern to static
290 $(VBOX_GSOAP_CXX_SOURCES)_CXXFLAGS.win += -wd4310 # cast truncates constant value
291 endif
292
293 ifdef VBOX_SOAP_PRECOMPILED_HEADER
294 # This'll save a few seconds, but the compiler invocation currently makes it impracticable. This will
295 # be addressed in a future kBuild version, by adding PCH support or/and by adding some helpers to
296 # gather the required data (DEFS,INCS,CXXTOOL,CXXFLAGS).
297 vboxsoap_INTERMEDIATES += $(VBOXWEB_OUT_DIR)/soapH.h.gch
298 vboxsoap_CXXFLAGS += -Winvalid-pch -H
299 vboxsoap_CLEAN += $(VBOXWEB_OUT_DIR)/soapH.h.gch
300
301 $(VBOXWEB_OUT_DIR)/soapH.h.gch: $(VBOXWEB_OUT_DIR)/soapH.h
302 g++ -x c++-header -g -g -Wall -pedantic -Wno-long-long -Wno-trigraphs -Wno-variadic-macros -pipe -O0 -fno-omit-frame-pointer \
303 -fno-strict-aliasing -fvisibility-inlines-hidden -fvisibility=hidden -DVBOX_HAVE_VISIBILITY_HIDDEN \
304 -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -m32 \
305 -I/Volumes/ScratchHFS/bird/vbox/svn/trunk/src/VBox/Main/webservice/gsoap \
306 -I/Volumes/ScratchHFS/bird/vbox/svn/trunk/out/darwin.x86/debug/obj/src/VBox/Main \
307 -I/Volumes/ScratchHFS/bird/vbox/svn/trunk/src/VBox/Main/webservice \
308 -I/Volumes/ScratchHFS/bird/vbox/svn/trunk/include -I/Volumes/ScratchHFS/bird/vbox/svn/trunk/out/darwin.x86/debug
309 \-DVBOX -DVBOX_WITH_DEBUGGER -DVBOX_WITH_DEBUGGER_GUI -DDEBUG -DDEBUG_bird -DDEBUG_USERNAME=bird -DRT_OS_DARWIN \
310 -D__DARWIN__ -DRT_ARCH_X86 -D__X86__ -DVBOX_WITH_HYBRID_32BIT_KERNEL -DIN_RING3 -DHC_ARCH_BITS=32 -DGC_ARCH_BITS=32 \
311 -DMAC_OS_X_VERSION_MIN_REQUIRED=1040 -DMAC_OS_X_VERSION_MAX_ALLOWED=1040 \
312 $< -o $@
313 endif
314 endif # !VBOX_ONLY_SDK
315
316
317 ifndef VBOX_ONLY_SDK
318 #
319 # vboxwebsrv - webservice server process
320 #
321 PROGRAMS += vboxwebsrv
322 vboxwebsrv_TEMPLATE = VBOXMAINCLIENTEXE
323 vboxwebsrv_DEFS += SOCKET_CLOSE_ON_EXEC
324 vboxwebsrv_INCS = \
325 $(VBOX_GSOAP_INCS) \
326 $(VBOXWEB_OUT_DIR) \
327 .
328 vboxwebsrv_CXXFLAGS.win += -bigobj
329 ifn1of ($(KBUILD_TARGET), win)
330 vboxwebsrv_CXXFLAGS += -Wno-shadow $(VBOX_GCC_Wno-literal-suffix)
331 endif
332 vboxwebsrv_LIBS += \
333 $(PATH_STAGE_LIB)/vboxsoap$(VBOX_SUFF_LIB) \
334 $(VBOX_GSOAP_CXX_LIBS) \
335 $(LIB_RUNTIME)
336 vboxwebsrv_LIBS.solaris += socket nsl
337 ifdef VBOX_WITH_WEBSERVICES_SSL
338 vboxwebsrv_DEFS += WITH_OPENSSL
339 vboxwebsrv_SDKS += VBOX_OPENSSL2
340 endif
341 vboxwebsrv_SOURCES = \
342 vboxweb.cpp \
343 $(VBOXWEB_OUT_DIR)/methodmaps.cpp \
344 $(VBOXWEB_OUT_DIR)/soapServer.cpp \
345 $(VBOXWEB_OUT_DIR)/vboxweb-wsdl.c
346 vboxwebsrv_SOURCES.win = \
347 VBoxWebSrv.rc
348 vboxwebsrv_CLEAN = \
349 $(VBOXWEB_OUT_DIR)/methodmaps.cpp \
350 $(VBOXWEB_OUT_DIR)/soapServer.cpp \
351 $(VBOXWEB_OUT_DIR)/vboxweb-wsdl.c
352
353 vboxweb.cpp_DEFS = \
354 $(if $(VBOX_BLEEDING_EDGE),VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\",)
355
356 vboxwebsrv_ORDERDEPS = $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts
357 endif # !VBOX_ONLY_SDK
358
359 ifdef VBOX_WITH_JWS
360INSTALLS += VBoxJWs-inst-jar
361
362#
363# Java glue JAR files
364#
365VBOX_JWS_JAR = $(VBoxJWs-inst-jar_0_OUTDIR)/vboxjws.jar
366VBOX_JWSDOC_JAR = $(VBoxJWs-inst-jar_0_OUTDIR)/vboxjws-doc.jar
367VBOX_JWSSRC_JAR = $(VBoxJWs-inst-jar_0_OUTDIR)/vboxjws-src.jar
368VBOX_JWS_TARGET := $(PATH_TARGET)/vboxjws-gen
369VBOX_JWS_GEN = $(VBOX_JWS_TARGET)/jwsgen
370VBOX_JWS_GEN_RAWSRC = $(VBOX_JWS_GEN)/merged.file
371VBOX_JWS_JDEST := $(VBOX_JWS_TARGET)/jdest
372VBOX_JWSDOC_JDEST := $(VBOX_JWS_TARGET)/jdest-doc
373VBOX_GLUE_XSLT_DIR := $(PATH_ROOT)/src/VBox/Main/glue
374VBOX_JAXLIB_DIR := $(PATH_ROOT)/src/VBox/Main/webservice/jaxlibs
375
376VBoxJWs-inst-jar_INST = $(INST_SDK)bindings/webservice/java/jax-ws/
377VBoxJWs-inst-jar_MODE = a+r,u+w
378VBoxJWs-inst-jar_SOURCES = \
379 $(VBOX_JWS_JAR) \
380 $(VBOX_JWSDOC_JAR) \
381 $(VBOX_JWSSRC_JAR)
382VBoxJWs-inst-jar_CLEAN = \
383 $(VBOX_JWS_JAR) \
384 $(VBOX_JWSDOC_JAR) \
385 $(VBOX_JWSSRC_JAR) \
386 $(VBOX_JWS_GEN)/jwsglue.list \
387 $(VBOX_JWSDOC_JDEST)/package-list \
388 $(wildcard \
389 $(VBOX_JWS_GEN)/java/*/*/*.java \
390 $(VBOX_JWS_GEN)/java/*/*/*/*.java \
391 $(VBOX_JWS_JDEST)/*.class \
392 $(VBOX_JWS_JDEST)/*/*.class \
393 $(VBOX_JWS_JDEST)/*/*/*.class \
394 $(VBOX_JWS_JDEST)/*/*/*/*.class \
395 $(VBOX_JWSDOC_JDEST)/*.html \
396 $(VBOX_JWSDOC_JDEST)/*.css \
397 $(VBOX_JWSDOC_JDEST)/*/*.gif \
398 $(VBOX_JWSDOC_JDEST)/*/*/*.html \
399 $(VBOX_JWSDOC_JDEST)/*/*/*/*.html \
400 )
401VBoxJWs-inst-jar_BLDDIRS += $(VBOX_JWS_GEN)/java
402VBoxJWs-inst-jar_GENERATEDSOURCES = $(addprefix $(VBoxJWs-inst-jar_BLDDIRS)/,$(VBoxJWS_VBOX_JWSGLUEFILES))
403
404VBoxJWSGlue_KMK = $(PATH_OUT)/vboxjwsglue.kmk
405include $(VBoxJWSGlue_KMK)
406
407$(VBoxJWSGlue_KMK).ts +| $(VBoxJWSGlue_KMK): $(VBOXWEB_IDL_SRC_ORIG) $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl $(VBOX_VERSION_STAMP)
408 $(call MSG_GENERATE,,$(VBoxJWSGlue_KMK))
409 $(QUIET)$(RM) -f $@
410 $(QUIET)$(MKDIR) -p $(@D)
411 $(QUIET)$(VBOX_XSLTPROC) \
412 --stringparam filelistonly VBoxJWS_VBOX_JWSGLUEFILES \
413 --stringparam G_vboxApiSuffix $(VBOX_API_SUFFIX) \
414 --stringparam G_vboxGlueStyle jaxws \
415 --stringparam G_vboxDirPrefix org/virtualbox$(VBOX_API_SUFFIX)/ \
416 -o $@ $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl $<
417 $(QUIET)$(CP) --changed -fv $@ $(VBoxJWSGlue_KMK)
418
419$(VBOX_JWS_GEN_RAWSRC) \
420+| $(VBoxJWs-inst-jar_GENERATEDSOURCES): \
421 $(VBOXWEB_IDL_SRC_ORIG) \
422 $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl \
423 $(VBOX_FILESPLIT) \
424 $(VBOX_VERSION_STAMP)
425 $(call MSG_L1,Generating JAX-WS Java glue files from XIDL)
426 $(QUIET)$(RM) -f $(filter-out $(VBoxJWs-inst-jar_GENERATEDSOURCES),$(wildcard $(VBOX_JWS_GEN)/java/*/*/*.java))
427 $(QUIET)$(MKDIR) -p $(@D)
428 $(QUIET)$(VBOX_XSLTPROC) \
429 --stringparam filelistonly "" \
430 --stringparam G_vboxApiSuffix $(VBOX_API_SUFFIX) \
431 --stringparam G_vboxGlueStyle jaxws \
432 --stringparam G_vboxDirPrefix org/virtualbox$(VBOX_API_SUFFIX)/ \
433 -o $(VBOX_JWS_GEN_RAWSRC) $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl $<
434 $(QUIET)$(MKDIR) -p $(VBOX_JWS_GEN)/java/org/virtualbox$(VBOX_API_SUFFIX)
435 $(QUIET)$(VBOX_FILESPLIT) $(VBOX_JWS_GEN_RAWSRC) $(VBOX_JWS_GEN)/java
436
437## @todo somehow also find out the authoritative list of files generated by
438# wsimport (before running it), then we could rely on proper dependencies
439# instead of creating jwsglue.list. Would allow avoiding a lot of unnecessary
440# compilation with incremental builds, when almost nothing changed in the IDL
441# file. Currently everything is recompiled if only one file is changed.
442$(VBOX_JWS_GEN)/jwsglue.list.ts +| $(VBOX_JWS_GEN)/jwsglue.list: \
443 $(VBOXWEB_IDL_SRC) \
444 $(VBOX_FILESPLIT) \
445 $(VBOXWEBSERVICE_WSDL) \
446 $(VBOXWEB_WSDL) \
447 $(VBoxJWs-inst-jar_GENERATEDSOURCES) \
448 | $(VBOX_JWS_GEN)/java/
449 $(QUIET)$(RM) -f -- $(wildcard $(VBOX_JWS_GEN)/java/*/*/*/*.java)
450 $(call MSG_GENERATE,,$(VBOX_JWS_GEN)/jwsglue.list,JAX-WS for Java 1.6 bindings using $(VBOXWEBSERVICE_WSDL))
451 $(VBOX_WSIMPORT) -Xnocompile -p $(VBOX_JAVA_PACKAGE).jaxws -d $(VBOX_JWS_GEN)/java $(VBOXWEBSERVICE_WSDL)
452 $(QUIET)echo $(VBoxJWs-inst-jar_GENERATEDSOURCES) > $@
453 $(QUIET)echo $(VBOX_JWS_GEN)/java/*/*/*/*.java >> $@
454 $(QUIET)$(CP) --changed -fv $@ $(VBOX_JWS_GEN)/jwsglue.list
455
456$$(VBOX_JWS_JAR): $(VBOX_JWS_GEN)/jwsglue.list $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL) $(VBOX_JWS_GEN)/MANIFEST.MF | $$(dir $$@)
457 $(call MSG_TOOL,javac,$(notdir $@),jwsgen.list,)
458 $(QUIET)$(RM) -Rf $(VBOX_JWS_JDEST)
459 $(QUIET)$(MKDIR) -p $(VBOX_JWS_JDEST)
460 $(call MSG_L1,Compiling bridge code)
461 $(VBOX_JAVAC) $(VBOX_JAVAC_OPTS) \
462 @$(VBOX_JWS_GEN)/jwsglue.list \
463 -d $(VBOX_JWS_JDEST) -classpath $(VBOX_JWS_JDEST)
464 $(QUIET)$(SED) -e "s/vboxweb.wsdl/vboxweb$(VBOX_API_SUFFIX).wsdl/" < $(VBOXWEBSERVICE_WSDL) > $(VBOX_JWS_JDEST)/vboxwebService$(VBOX_API_SUFFIX).wsdl
465 $(QUIET)$(CP) -f $(VBOXWEB_WSDL) $(VBOX_JWS_JDEST)/vboxweb$(VBOX_API_SUFFIX).wsdl
466 $(call MSG_LINK,$(notdir $@),$@)
467 $(VBOX_JAR) cfm $@ $(VBOX_JWS_GEN)/MANIFEST.MF -C $(VBOX_JWS_JDEST) .
468
469$(VBOX_JWS_GEN)/MANIFEST.MF: $(VBOX_PATH_WEBSERVICE)/MANIFEST.MF.in
470 $(QUIET)$(RM) -f -- $@
471 $(QUIET)$(MKDIR) -p $(VBOX_JWS_GEN)
472 $(QUIET)$(SED) \
473 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/' \
474 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/' \
475 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/' \
476 -e 's/@VBOX_API_SUFFIX@/$(VBOX_API_SUFFIX)/' \
477 < $< > $@
478
479$$(VBOX_JWSDOC_JAR): $(VBOX_JWS_GEN)/jwsglue.list $$(VBoxJWs-inst-jar_GENERATEDSOURCES) $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL) $$(VBOX_JWS_JAR) | $$(dir $$@)
480 $(call MSG_TOOL,javadoc,$(notdir $@),jwsgen.list,)
481 $(QUIET)$(RM) -Rf $(VBOX_JWSDOC_JDEST)
482 $(QUIET)$(MKDIR) -p $(VBOX_JWSDOC_JDEST)
483 $(call MSG_L1,Generating javadoc html documentation)
484 $(VBOX_JAVADOC) $(VBOX_JAVADOC_OPTS) -quiet \
485 -sourcepath $(VBOX_JWS_GEN)/java org.virtualbox$(VBOX_API_SUFFIX) \
486 -d $(VBOX_JWSDOC_JDEST)
487 $(call MSG_LINK,$(notdir $@),$@)
488 $(VBOX_JAR) cf $@ -C $(VBOX_JWSDOC_JDEST) .
489
490$$(VBOX_JWSSRC_JAR): $$(VBOX_JWS_JAR) | $$(dir $$@)
491 $(call MSG_LINK,$(notdir $@),$@)
492 $(VBOX_JAR) cf $@ -C $(VBOX_JWS_GEN)/java .
493
494## @todo compile ../glue/tests/TestVBox.java to have sanity checking
495
496 endif # VBOX_WITH_JWS
497
498 ifndef VBOX_ONLY_SDK
499 #
500 # webtest - webservice sample client in C++
501 #
502 PROGRAMS += webtest
503 webtest_TEMPLATE = VBOXWEBR3EXE
504 webtest_CXXFLAGS.win += -bigobj
505 ifn1of ($(KBUILD_TARGET), win)
506 webtest_CXXFLAGS += -Wno-shadow
507 endif
508 webtest_INCS := \
509 $(VBOX_GSOAP_INCS) \
510 $(VBOXWEB_OUT_DIR) \
511 .
512 webtest_LIBS += \
513 $(PATH_STAGE_LIB)/vboxsoap$(VBOX_SUFF_LIB) \
514 $(VBOX_GSOAP_CXX_LIBS) \
515 $(LIB_RUNTIME)
516 webtest_LIBS.solaris += nsl
517 ifdef VBOX_WITH_WEBSERVICES_SSL
518 webtest_DEFS += WITH_OPENSSL
519 webtest_SDKS += VBOX_OPENSSL2
520 endif
521 webtest_SOURCES = \
522 webtest.cpp \
523 $(VBOXWEB_OUT_DIR)/soapClient.cpp
524 webtest_CLEAN = \
525 $(VBOXWEB_OUT_DIR)/soapClient.cpp
526
527 webtest_ORDERDEPS = $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts
528 endif # !VBOX_ONLY_SDK
529
530
531 #
532 # Additional mess to cleanup (applies to both webtest and vboxwebsrv).
533 #
534 ## @todo figure out whether the SDK really needs this or not...
535 OTHER_CLEAN += \
536 $(wildcard $(VBOXWEB_OUT_DIR)/soap*.h) \
537 $(wildcard $(VBOXWEB_OUT_DIR)/soap*.cpp) \
538 $(wildcard $(VBOXWEB_OUT_DIR)/*.nsmap) \
539 $(VBOXWEB_GSOAPH_FROM_XSLT) \
540 $(VBOXWEB_GSOAPH_FROM_GSOAP) \
541 $(VBOXWEB_SOAP_CLIENT_H) \
542 $(VBOXWEB_SOAP_SERVER_H) \
543 $(VBOXWEB_OUT_DIR)/gsoap_generate_all_ts \
544 $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts \
545 $(wildcard $(PATH_TARGET_SOAPDEMOXML)/*) \
546 $(PATH_TARGET_SOAPDEMOXML)/dummy_file \
547 $(wildcard $(PATH_TARGET_SOAPDEMOHEADERS)/*) \
548 $(PATH_TARGET_SOAPDEMOHEADERS)/dummy_file \
549 $(wildcard $(PATH_TARGET_SOAPDEMONSMAPS)/*) \
550 $(PATH_TARGET_SOAPDEMONSMAPS)/dummy_file
551
552endif # VBOX_GSOAP_INSTALLED
553
554
555if defined(VBOX_ONLY_SDK) && ("$(KBUILD_TARGET)" != "win" || defined(VBOX_FORCE_SDK))
556 #
557 # Globals relevant to the SDK.
558 #
559 VBOXWEB_GLUE_PYTHON = $(VBOX_PATH_SDK)/bindings/webservice/python/lib/VirtualBox_wrappers.py
560 # The following 3 files are generated by Python ZSI 2.1_a1 (alpha version
561 # shipped by many Linux distributions). Only the first two are actually used.
562 # The 4th and 5th file is created by ZSI 2.0 (released in 2007), and gets
563 # renamed to the 1st/2nd file for simplicity reasons.
564 # ZSI 1.x used different file names. Not worth supporting any more. If you're
565 # curious, check the VirtualBox 4.3 sources.
566 VBOXWEB_WS_PYTHON = $(VBOX_PATH_SDK)/bindings/webservice/python/lib/VirtualBox_client.py
567 VBOXWEB_WS_PYTHON_TYPES = $(VBOX_PATH_SDK)/bindings/webservice/python/lib/VirtualBox_types.py
568 VBOXWEB_WS_PYTHON_SERVER = $(VBOX_PATH_SDK)/bindings/webservice/python/lib/VirtualBox_server.py
569 VBOXWEB_WS_PYTHON_ALTERNATIVE = $(VBOX_PATH_SDK)/bindings/webservice/python/lib/VirtualBox_services.py
570 VBOXWEB_WS_PERL = $(VBOX_PATH_SDK)/bindings/webservice/perl/lib/vboxService.pm
571 VBOXWEB_WS_PHP = $(VBOX_PATH_SDK)/bindings/webservice/php/lib/vboxServiceWrappers.php
572 VBOXWEB_SAMPLES_JAXWS_DIR = $(VBOX_PATH_SDK)/bindings/webservice/java/jax-ws/samples
573 VBOXWEB_JAXWSSAMPLE = $(VBOXWEB_SAMPLES_JAXWS_DIR)/clienttest.java
574 VBOXWEB_METRICSAMPLE = $(VBOXWEB_SAMPLES_JAXWS_DIR)/metrictest.java
575
576 define find_java_files
577 $(shell find $(1) -name \*.java)
578 endef
579
580 VBOXWEB_OTHERS += \
581 $(if $(VBOX_WITH_PYTHON),$(VBOXWEB_GLUE_PYTHON),) \
582 $(if $(VBOX_WITH_PYTHON),$(VBOXWEB_WS_PYTHON),) \
583 $(if $(VBOX_WITH_PYTHON),$(VBOXWEB_WS_PYTHON_TYPES),) \
584 $(if $(VBOX_WITH_PERL),$(VBOXWEB_WS_PERL),) \
585 $(if $(VBOX_WITH_PHP),$(VBOXWEB_WS_PHP),) \
586 $(PATH_ROOT)
587
588
589 #
590 # Install sample code.
591 #
592 INSTALLS += vboxwebinst
593 vboxwebinst_INST = $(INST_SDK)bindings/webservice/
594 vboxwebinst_MODE = a+rx,u+w
595 vboxwebinst_SOURCES = \
596 $(if $(VBOX_WITH_PERL),samples/perl/clienttest.pl=>perl/samples/clienttest.pl,) \
597 $(if $(VBOX_WITH_PHP),samples/php/clienttest.php=>php/samples/clienttest.php,) \
598 $(if $(VBOX_WITH_PYTHON),samples/python/clienttest.py=>python/samples/clienttest.py,)
599
600 INSTALLS += vboxwebinst_nox
601 vboxwebinst_nox_INST = $(INST_SDK)bindings/webservice/
602 vboxwebinst_nox_MODE = a+r,u+w
603 vboxwebinst_nox_SOURCES = \
604 $(if $(VBOX_WITH_PYTHON),samples/python/Makefile=>python/samples/Makefile,) \
605 $(if $(VBOX_WITH_PYTHON),samples/python/Makefile.glue=>python/lib/Makefile,) \
606 $(if ($VBOX_WITH_JWS),$(PATH_ROOT)/COPYING.LIB=>java/jax-ws/COPYING.LIB,)
607
608 INSTALLS += vboxwebinst_wsdl
609 vboxwebinst_wsdl_INST = $(INST_SDK)bindings/webservice/
610 vboxwebinst_wsdl_MODE = a+r,u+w
611 vboxwebinst_wsdl_SOURCES = \
612 $(VBOXWEB_WSDL)=>vboxweb.wsdl \
613 $(VBOXWEBSERVICE_WSDL)=>vboxwebService.wsdl
614
615 INSTALLS += vboxwebinst_webtest
616 vboxwebinst_webtest_INST = $(INST_SDK)bindings/webservice/
617 vboxwebinst_webtest_MODE = a+r,u+w
618 vboxwebinst_webtest_SOURCES = \
619 $(VBOX_PATH_WEBSERVICE)/websrv-wsdl2gsoapH.xsl=>xsl/websrv-wsdl2gsoapH.xsl \
620 $(VBOX_PATH_WEBSERVICE)/websrv-nsmap.xsl=>xsl/websrv-nsmap.xsl \
621 $(VBOX_PATH_IDL)/typemap-shared.inc.xsl=>idl/typemap-shared.inc.xsl \
622 $(VBOX_PATH_WEBSERVICE)/split-soapC.cpp=>tools/split-soapC.cpp \
623 $(VBOX_PATH_WEBSERVICE)/webtest.cpp=>cpp/samples/webtest/webtest.cpp \
624 $(VBOX_PATH_WEBSERVICE)/Makefile.webtest=>cpp/samples/webtest/Makefile
625
626endif # VBOX_ONLY_SDK
627
628#
629# Update the OTHERS and OTHER_CLEAN lists with VBOXWEB_OTHERS and some more stuff.
630#
631# We can't just built up OTHERS and append it to OTHER_CLEAN because we're sharing
632# OTHERS with all the other VBox makefiles, thus VBOXWEB_OTHERS.
633#
634OTHERS += $(VBOXWEB_OTHERS)
635OTHER_CLEAN += \
636 $(VBOXWEB_OTHERS) \
637 $(if $(VBOX_WITH_PYTHON),$(VBOXWEB_WS_PYTHON_SERVER),) \
638 $(VBOXWEB_WSDL) \
639 $(VBOXWEBSERVICE_WSDL) \
640 $(VBOXWEB_TYPEMAP) \
641 $(VBOXWEB_IDL_SRC)
642
643# generate platform-specific XIDL file from original XIDL file
644$(VBOXWEB_IDL_SRC): $(VBOXWEB_IDL_SRC_STRIPPED) $(VBOX_PATH_WEBSERVICE)/platform-xidl.xsl | $$(dir $$@)
645 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using platform-xidl.xsl)
646 $(QUIET)$(RM) -f -- $@
647 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/platform-xidl.xsl $<
648
649# generate WSDL from main XIDL file
650$(VBOXWEB_WSDL): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-wsdl.xsl $(VBOX_PATH_IDL)/typemap-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
651 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-wsdl.xsl)
652 $(QUIET)$(RM) -f -- $@
653 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-wsdl.xsl $<
654
655$(VBOXWEBSERVICE_WSDL): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-wsdl-service.xsl $(VBOX_PATH_IDL)/typemap-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
656 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-wsdl-service.xsl)
657 $(QUIET)$(RM) -f -- $@
658 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-wsdl-service.xsl $<
659
660ifdef VBOX_ONLY_SDK
661
662$(VBOXWEB_GLUE_PYTHON): $(VBOXWEB_IDL_SRC) $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL) $(VBOX_PATH_WEBSERVICE)/websrv-python.xsl
663 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-python.xsl)
664 $(QUIET)$(RM) -f -- $@
665 $(QUIET)$(MKDIR) -p $(@D)
666 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-python.xsl $<
667
668$(VBOXWEB_WS_PYTHON) \
669+ $(VBOXWEB_WS_PYTHON_TYPES): $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL)
670 $(call MSG_GENERATE,,$@, WS Python bindings)
671 $(QUIET)$(RM) -f -- $@
672 $(QUIET)$(MKDIR) -p $(@D)
673# Change directory to the "source", as otherwise ZSI 2.0 has trouble finding
674# the 2nd WSDL file included in the main one. ZSI 2.1 is smarter, but some
675# versions floating around (especially on Linux) lack the --file option.
676if "$(KBUILD_HOST)" != "win"
677 $(QUIET)$(REDIRECT) -C $(dir $(VBOXWEBSERVICE_WSDL)) -- $(SHELL) -c "$(VBOX_WSDL2PY) -b --output-dir $(@D) $(VBOXWEBSERVICE_WSDL) || $(VBOX_WSDL2PY) -b --file $(VBOXWEBSERVICE_WSDL) --output-dir $(@D)"
678else
679 $(QUIET)$(REDIRECT) -C $(dir $(VBOXWEBSERVICE_WSDL)) -- $(VBOX_WSDL2PY) -b --file $(subst /,\\\\,$(VBOXWEBSERVICE_WSDL)) --output-dir $(@D)
680endif
681# Hack: some wsdl2py versions generate VirtualBox_client.py, some generate
682# VirtualBox_services.py. Standardize on the former.
683 -$(QUIET)$(MV) -f $(VBOXWEB_WS_PYTHON_ALTERNATIVE) $(VBOXWEB_WS_PYTHON)
684# We do not ever need the VirtualBox_server.py file. Delete it immediately
685# so that it will not get packaged in the SDK.
686 $(QUIET)$(RM) -f -- $(VBOXWEB_WS_PYTHON_SERVER)
687 $(QUIET)$(APPEND) $@ ''
688
689$(VBOXWEB_WS_PERL): $(VBOXWEB_WSDL) $(VBOXWEBSERVICE_WSDL)
690 $(call MSG_GENERATE,,$@, WS Perl bindings)
691 $(QUIET)$(MKDIR) -p $(@D)
692 $(QUIET)$(REDIRECT) -C $(@D) -- $(VBOX_STUBMAKER) file://$(VBOXWEBSERVICE_WSDL)
693# Ugly, ugly, ugly, make me right once
694 $(QUIET)$(SED) -e "s+http://www.virtualbox.org/Service+http://www.virtualbox.org/+" --output $(VBOXWEB_WS_PERL).tmp $(VBOXWEB_WS_PERL)
695 $(QUIET)$(MV) $(VBOXWEB_WS_PERL).tmp $(VBOXWEB_WS_PERL)
696 $(QUIET)$(APPEND) $@ ''
697
698$(VBOXWEB_WS_PHP): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-php.xsl
699 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-php.xsl)
700 $(QUIET)$(RM) -f -- $@
701 $(QUIET)$(MKDIR) -p $(@D)
702 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-php.xsl $<
703
704endif # VBOX_ONLY_SDK
705
706# generate typemap.dat (used by wsdl2h) from main XIDL file
707$(VBOXWEB_TYPEMAP): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-typemap.xsl $(VBOX_PATH_IDL)/typemap-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
708 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-typemap.xsl)
709 $(QUIET)$(RM) -f -- $@
710 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-typemap.xsl $<
711
712# generate gsoap pseudo-C header file from that WSDL; once via XSLT...
713$(VBOXWEB_GSOAPH_FROM_XSLT): $(VBOXWEB_WSDL) $(VBOX_PATH_WEBSERVICE)/websrv-wsdl2gsoapH.xsl $(VBOX_PATH_IDL)/typemap-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
714 $(call MSG_GENERATE,,$@,$(VBOXWEB_WSDL) using websrv-wsdl2gsoapH.xsl)
715 $(QUIET)$(RM) -f -- $@
716 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-wsdl2gsoapH.xsl $<
717
718VBOX_NSMAP = $(VBOXWEB_OUT_DIR)/vboxwebsrv.nsmap
719$(VBOX_NSMAP): $(VBOXWEB_IDL_SRC) $(VBOX_PATH_WEBSERVICE)/websrv-nsmap.xsl $(VBOX_PATH_IDL)/typemap-shared.inc.xsl $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
720 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-nsmap.xsl)
721 $(QUIET)$(RM) -f -- $@
722 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-nsmap.xsl $<
723
724ifdef VBOX_GSOAP_INSTALLED
725# ... and once with the gSOAP tool (just for comparison, we don't use it for licensing reasons)
726$(VBOXWEB_GSOAPH_FROM_GSOAP): $(VBOXWEB_WSDL) $(VBOXWEB_TYPEMAP) | $$(dir $$@)
727 $(call MSG_GENERATE,,$@,)
728 $(QUIET)$(RM) -f -- $@
729 $(VBOX_WSDL2H) $(VBOXWEB_WSDL_VERBOSE) -t$(VBOXWEB_TYPEMAP) -nvbox -o $@ $<
730
731# this sets the gsoap header that we use for further compilation; if stuff works, then the
732# one we generate via XSLT produces the same end result as the one from the gSOAP tool;
733# with this variable we can swap for testing, but shipped code must use VBOXWEB_GSOAPH_FROM_XSLT
734GSOAPH_RELEVANT = $(VBOXWEB_GSOAPH_FROM_XSLT)
735
736# wsdl2h -v: verbose
737# wsdl2h -e: don't qualify enum names
738# wsdl2h -n<prefix>: namespace header prefix
739
740## @todo change this to state explicitly what will be generated?
741
742# generate server and client code from gsoap pseudo-C header file
743$(VBOXWEB_OUT_DIR)/gsoap_generate_all_ts \
744+ $(VBOXWEB_OUT_DIR)/soapH.h \
745+ $(VBOXWEB_SOAP_CLIENT_H) \
746+ $(VBOXWEB_OUT_DIR)/soapC.cpp \
747+ $(VBOXWEB_OUT_DIR)/soapClient.cpp \
748+ $(VBOXWEB_OUT_DIR)/soapServer.cpp \
749: $(VBOXWEB_GSOAPH_FROM_GSOAP) $(VBOXWEB_GSOAPH_FROM_XSLT) $(VBOX_NSMAP) $(VBOX_PATH_WEBSERVICE)/stdsoap2.sed \
750 $(RECOMPILE_ON_MAKEFILE_CURRENT) | $$(dir $$@)
751 $(call MSG_GENERATE,,lots of files,$(GSOAPH_RELEVANT))
752 $(RM) -f $@
753 $(REDIRECT) -C $(VBOXWEB_OUT_DIR) -- $(VBOX_SOAPCPP2) $(VBOXWEB_SOAPCPP2_SKIP_FILES) -L -2 -w -I$(VBOX_PATH_GSOAP_IMPORT) $(GSOAPH_RELEVANT)
754ifeq ($(KBUILD_TARGET),win) # MSC -Wall workaround.
755 $(CP) -f "$(VBOXWEB_SOAP_CLIENT_H)" "$(VBOXWEB_SOAP_CLIENT_H).tmp"
756 $(SED) -f $(VBOX_PATH_WEBSERVICE)/stdsoap2.sed --output "$(VBOXWEB_SOAP_CLIENT_H)" "$(VBOXWEB_SOAP_CLIENT_H).tmp"
757 $(RM) -f "$(VBOXWEB_SOAP_CLIENT_H).tmp"
758endif
759 $(APPEND) $@ done
760
761# Copy the generated headers and stuff. This was split into a separate rule
762# way back because we thought we could use $(wildcard ) and avoid the shell,
763# however we cannot as it is subject to caching. Let the shell do the globbing.
764# GSOAP versions 2.8 and later do not generate the unneeded soapvbox*.h files
765# any more. Ignoring the exit code is the simple solution, accepting the error.
766$(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts: $(VBOXWEB_OUT_DIR)/gsoap_generate_all_ts | $$(dir $$@)
767 $(RM) -f $@
768 $(MKDIR) -p $(PATH_TARGET_SOAPDEMOXML) $(PATH_TARGET_SOAPDEMOHEADERS) $(PATH_TARGET_SOAPDEMONSMAPS)
769ifdef VBOX_GSOAP_VERBOSE
770 $(MV_EXT) -f -- $(VBOXWEB_OUT_DIR)/*.req.xml $(VBOXWEB_OUT_DIR)/*.res.xml $(PATH_TARGET_SOAPDEMOXML)/
771endif
772 -$(MV_EXT) -f -- $(VBOXWEB_OUT_DIR)/soapvbox*.h $(PATH_TARGET_SOAPDEMOHEADERS)/
773 $(MV_EXT) -f -- $(VBOXWEB_OUT_DIR)/vboxBinding.nsmap $(PATH_TARGET_SOAPDEMONSMAPS)/
774 $(APPEND) $@ done
775
776$(PATH_TARGET_SOAPDEMONSMAPS) \
777$(PATH_TARGET_SOAPDEMOHEADERS)/soapvboxBindingProxy.h \
778$(PATH_TARGET_SOAPDEMOHEADERS)/soapvboxBindingObject.h: $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts
779
780# soapcpp2 -2: generate SOAP 1.2 calls
781# soapcpp2 -S: server-side code only
782# soapcpp2 -L: don't generate soapClientLib/soapServerLib
783# soapcpp2 -w: don't generate WSDL and schema files
784# soapcpp2 -x: don't generate sample XML files
785
786ifndef VBOX_WITHOUT_SPLIT_SOAPC
787#
788# Split up the soapC.cpp monster into manageable bits that can be
789# built in parallel and without exhausting all available memory.
790#
791$(VBOXWEB_OUT_DIR)/soapC-1.cpp \
792+ $(VBOXWEB_OUT_DIR)/soapC-2.cpp \
793+ $(VBOXWEB_OUT_DIR)/soapC-3.cpp \
794+ $(VBOXWEB_OUT_DIR)/soapC-4.cpp \
795+ $(VBOXWEB_OUT_DIR)/soapC-5.cpp \
796+ $(VBOXWEB_OUT_DIR)/soapC-6.cpp \
797+ $(VBOXWEB_OUT_DIR)/soapC-7.cpp \
798+ $(VBOXWEB_OUT_DIR)/soapC-8.cpp \
799+ $(VBOXWEB_OUT_DIR)/soapC-9.cpp \
800+ $(VBOXWEB_OUT_DIR)/soapC-10.cpp \
801+ $(VBOXWEB_OUT_DIR)/soapC-11.cpp \
802+ $(VBOXWEB_OUT_DIR)/soapC-12.cpp \
803+ $(VBOXWEB_OUT_DIR)/soapC-13.cpp \
804+ $(VBOXWEB_OUT_DIR)/soapC-14.cpp \
805+ $(VBOXWEB_OUT_DIR)/soapC-15.cpp \
806+ $(VBOXWEB_OUT_DIR)/soapC-16.cpp \
807+ $(VBOXWEB_OUT_DIR)/soapC-17.cpp \
808+ $(VBOXWEB_OUT_DIR)/soapC-18.cpp \
809+ $(VBOXWEB_OUT_DIR)/soapC-19.cpp \
810+ $(VBOXWEB_OUT_DIR)/soapC-20.cpp \
811: $(VBOXWEB_OUT_DIR)/soapC.cpp $$(split-soapC_1_TARGET) | $$(dir $$@)
812 $(RM) -f -- $(wildcard $(VBOXWEB_OUT_DIR)/soapC-?.cpp $(VBOXWEB_OUT_DIR)/soapC-??.cpp)
813 $(split-soapC_1_TARGET) $(VBOXWEB_OUT_DIR)/soapC.cpp $(VBOXWEB_OUT_DIR) 20
814endif # !VBOX_WITHOUT_SPLIT_SOAPC
815
816endif # VBOX_GSOAP_INSTALLED
817
818
819
820# generate method maps in server: map wsdl operations to com/xpcom method calls
821$(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 $$@)
822 $(call MSG_GENERATE,,$@,$(VBOXWEB_IDL_SRC) using websrv-cpp.xsl)
823 $(QUIET)$(VBOX_XSLTPROC) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-cpp.xsl $<
824
825# generate C file which contains vboxweb.wsdl
826$$(VBOXWEB_OUT_DIR)/vboxweb-wsdl.c: $(VBOXWEB_WSDL) $(VBOX_BIN2C)
827 $(call MSG_TOOL,bin2c,vboxweb-wsdl,$<,$@)
828 $(QUIET)$(VBOX_BIN2C) -ascii VBoxWebWSDL $< $@
829
830
831ifdef VBOX_ONLY_SDK
832
833$(VBOXWEB_JAXWSSAMPLE): $(VBOX_PATH_WEBSERVICE)/samples/java/jax-ws/clienttest.java
834 $(QUIET)$(RM) -f -- $@
835 $(QUIET)$(MKDIR) -p $(VBOXWEB_SAMPLES_JAXWS_DIR)
836 $(QUIET)$(SED) -e 's/{VBOX_API_SUFFIX}/$(VBOX_API_SUFFIX)/' < $< > $@
837
838$(VBOXWEB_METRICSAMPLE): $(VBOX_PATH_WEBSERVICE)/samples/java/jax-ws/metrictest.java
839 $(QUIET)$(RM) -f -- $@
840 $(QUIET)$(MKDIR) -p $(VBOXWEB_SAMPLES_JAXWS_DIR)
841 $(QUIET)$(SED) -e 's/{VBOX_API_SUFFIX}/$(VBOX_API_SUFFIX)/' < $< > $@
842
843endif # VBOX_ONLY_SDK
844
845include $(FILE_KBUILD_SUB_FOOTER)
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