VirtualBox

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

Last change on this file since 84490 was 84490, checked in by vboxsync, 5 years ago

webservices/Makefile.kmk: Remove PATH_ROOT from the VBOXWEB_OTHERS list.

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