VirtualBox

source: vbox/trunk/src/VBox/Main/webservice/websrv-cpp.xsl@ 50295

Last change on this file since 50295 was 50117, checked in by vboxsync, 11 years ago

Main+Frontends: clear out some cruft code, outdated EventQueue stuff and whitespace cleanup

  • Property svn:eol-style set to native
File size: 65.9 KB
Line 
1<?xml version="1.0"?>
2
3<!--
4 websrv-cpp.xsl:
5 XSLT stylesheet that generates methodmaps.cpp from
6 VirtualBox.xidl. This generated C++ code contains
7 all the service implementations that one would
8 normally have to implement manually to create a
9 web service; our generated code automatically maps
10 all SOAP calls into COM/XPCOM method calls.
11 See webservice/Makefile.kmk for an overview of all the things
12 generated for the webservice.
13
14 Copyright (C) 2007-2014 Oracle Corporation
15
16 This file is part of VirtualBox Open Source Edition (OSE), as
17 available from http://www.virtualbox.org. This file is free software;
18 you can redistribute it and/or modify it under the terms of the GNU
19 General Public License (GPL) as published by the Free Software
20 Foundation, in version 2 as it comes in the "COPYING" file of the
21 VirtualBox OSE distribution. VirtualBox OSE is distributed in the
22 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
23-->
24
25<xsl:stylesheet
26 version="1.0"
27 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
28 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
29 xmlns:exsl="http://exslt.org/common"
30 extension-element-prefixes="exsl">
31
32 <xsl:output method="text"/>
33
34 <xsl:strip-space elements="*"/>
35
36<!-- - - - - - - - - - - - - - - - - - - - - - -
37 global XSLT variables
38 - - - - - - - - - - - - - - - - - - - - - - -->
39
40<xsl:variable name="G_xsltFilename" select="'websrv-cpp.xsl'" />
41
42<xsl:include href="../idl/typemap-shared.inc.xsl" />
43
44<!-- collect all interfaces with "wsmap='suppress'" in a global variable for
45 quick lookup -->
46<xsl:variable name="G_setSuppressedInterfaces"
47 select="//interface[@wsmap='suppress']" />
48
49<!-- - - - - - - - - - - - - - - - - - - - - - -
50 root match
51 - - - - - - - - - - - - - - - - - - - - - - -->
52
53<xsl:template match="/idl">
54 <xsl:text><![CDATA[
55/* DO NOT EDIT! This is a generated file.
56 * Generated from: src/VBox/Main/idl/VirtualBox.xidl (VirtualBox's interface definitions in XML)
57 * Generator: src/VBox/Main/webservice/websrv-cpp.xsl
58 */
59
60// shared webservice header
61#include "vboxweb.h"
62
63// vbox headers
64#include <VBox/com/com.h>
65#include <VBox/com/array.h>
66#include <VBox/com/ErrorInfo.h>
67#include <VBox/com/errorprint.h>
68#include <VBox/VBoxAuth.h>
69
70#include <iprt/assert.h>
71#include <iprt/initterm.h>
72#include <iprt/stream.h>
73#include <iprt/string.h>
74
75// gSOAP headers (must come after vbox includes because it checks for conflicting defs)
76#include "soapH.h"
77
78// standard headers
79#include <map>
80#include <sstream>
81
82// shared strings for debug output
83const char *g_pcszCallingComMethod = " calling COM method %s\n";
84const char *g_pcszDoneCallingComMethod = " done calling COM method\n";
85const char *g_pcszConvertComOutputBack = " convert COM output \"%s\" back to caller format\n";
86const char *g_pcszDoneConvertingComOutputBack = " done converting COM output \"%s\" back to caller format\n";
87const char *g_pcszEntering = "-- entering %s\n";
88const char *g_pcszLeaving = "-- leaving %s, rc: %#lx (%d)\n";
89
90// generated string constants for all interface names
91const char *g_pcszIUnknown = "IUnknown";
92]]></xsl:text>
93
94 <xsl:for-each select="//interface">
95 <xsl:variable name="ifname" select="@name" />
96 <xsl:value-of select="concat('const char *g_pcsz', $ifname, ' = &quot;', $ifname, '&quot;;')" />
97 <xsl:call-template name="emitNewline" />
98 </xsl:for-each>
99 <xsl:apply-templates />
100</xsl:template>
101
102<!-- - - - - - - - - - - - - - - - - - - - - - -
103 if
104 - - - - - - - - - - - - - - - - - - - - - - -->
105
106<!--
107 * ignore all |if|s except those for WSDL target
108-->
109<xsl:template match="if">
110 <xsl:if test="@target='wsdl'">
111 <xsl:apply-templates/>
112 </xsl:if>
113</xsl:template>
114
115<!-- - - - - - - - - - - - - - - - - - - - - - -
116 cpp
117 - - - - - - - - - - - - - - - - - - - - - - -->
118
119<xsl:template match="cpp">
120<!-- ignore this -->
121</xsl:template>
122
123<!-- - - - - - - - - - - - - - - - - - - - - - -
124 library
125 - - - - - - - - - - - - - - - - - - - - - - -->
126
127<xsl:template match="library">
128 <xsl:text>
129/****************************************************************************
130 *
131 * types: enum converter helper functions
132 *
133 ****************************************************************************/
134 </xsl:text>
135 <!--
136 enum converter functions at top of file
137 -->
138 <xsl:for-each select="//enum">
139 <xsl:variable name="enumname" select="@name" />
140 <!-- generate enum converter for COM-to-SOAP -->
141 <xsl:call-template name="emitNewline" />
142 <xsl:value-of select="concat('vbox__', $enumname, ' ', $G_funcPrefixOutputEnumConverter, $enumname, '(', $enumname, '_T e)')" />
143 <xsl:call-template name="emitNewline" />
144 <xsl:text>{</xsl:text>
145 <xsl:call-template name="emitNewline" />
146 <xsl:value-of select="concat(' vbox__', $enumname, ' v;')" />
147 <xsl:call-template name="emitNewline" />
148 <xsl:call-template name="emitNewline" />
149 <xsl:text> switch(e)</xsl:text>
150 <xsl:call-template name="emitNewline" />
151 <xsl:text> {</xsl:text>
152 <xsl:call-template name="emitNewline" />
153 <xsl:for-each select="const[not(@wsmap='suppress')]">
154 <xsl:variable name="enumconst" select="@name" />
155 <xsl:value-of select="concat(' case ', $enumname, '_', $enumconst, ':')" />
156 <xsl:call-template name="emitNewlineIndent8" />
157 <xsl:value-of select="concat(' v = vbox__', $enumname, '__')" />
158 <!-- escape all "_" in $enumconst -->
159 <xsl:call-template name="escapeUnderscores">
160 <xsl:with-param name="string" select="$enumconst" />
161 </xsl:call-template>
162 <xsl:value-of select="';'" />
163 <xsl:call-template name="emitNewlineIndent8" />
164 <xsl:text>break;</xsl:text>
165 <xsl:call-template name="emitNewline" />
166 </xsl:for-each>
167 <!-- Add a default case so gcc gives us a rest, esp. on darwin. -->
168 <xsl:call-template name="emitNewlineIndent8" />
169 <xsl:text>default:</xsl:text>
170 <xsl:call-template name="emitNewlineIndent8" />
171 <xsl:text> AssertMsgFailed(("e=%d\n", (int)e));</xsl:text>
172 <xsl:call-template name="emitNewlineIndent8" />
173 <xsl:value-of select="concat(' v = (vbox__', $enumname, ')0x7fffdead;')" />
174 <xsl:call-template name="emitNewlineIndent8" />
175 <xsl:text>break; </xsl:text>
176 <xsl:call-template name="emitNewline" />
177 <xsl:text> }</xsl:text>
178 <xsl:call-template name="emitNewline" />
179 <xsl:call-template name="emitNewline" />
180 <xsl:text> return v;</xsl:text>
181 <xsl:call-template name="emitNewline" />
182 <xsl:text>}</xsl:text>
183 <xsl:call-template name="emitNewline" />
184 <!-- generate enum converter for SOAP-to-COM -->
185 <xsl:call-template name="emitNewline" />
186 <xsl:value-of select="concat($enumname, '_T ', $G_funcPrefixInputEnumConverter, $enumname, '(vbox__', $enumname, ' v)')" />
187 <xsl:call-template name="emitNewline" />
188 <xsl:text>{</xsl:text>
189 <xsl:call-template name="emitNewline" />
190 <xsl:value-of select="concat(' ', $enumname, '_T e;')" />
191 <xsl:call-template name="emitNewline" />
192 <xsl:call-template name="emitNewline" />
193 <xsl:text> switch(v)</xsl:text>
194 <xsl:call-template name="emitNewline" />
195 <xsl:text> {</xsl:text>
196 <xsl:call-template name="emitNewline" />
197 <xsl:for-each select="const[not(@wsmap='suppress')]">
198 <xsl:variable name="enumconst" select="@name" />
199 <xsl:value-of select="concat(' case vbox__', $enumname, '__')" />
200 <!-- escape all "_" in $enumconst -->
201 <xsl:call-template name="escapeUnderscores">
202 <xsl:with-param name="string" select="$enumconst" />
203 </xsl:call-template>
204 <xsl:value-of select="':'" />
205 <xsl:call-template name="emitNewlineIndent8" />
206 <xsl:value-of select="concat(' e = ', $enumname, '_', $enumconst, ';')" />
207 <xsl:call-template name="emitNewlineIndent8" />
208 <xsl:text>break;</xsl:text>
209 <xsl:call-template name="emitNewline" />
210 </xsl:for-each>
211 <!-- Insert a default case so gcc gives us a rest, esp. on darwin. -->
212 <xsl:call-template name="emitNewlineIndent8" />
213 <xsl:text>default:</xsl:text>
214 <xsl:call-template name="emitNewlineIndent8" />
215 <xsl:text> AssertMsgFailed(("v=%d\n", (int)v));</xsl:text>
216 <xsl:call-template name="emitNewlineIndent8" />
217 <xsl:value-of select="concat(' e = (', $enumname, '_T)0x7fffbeef;')" />
218 <xsl:call-template name="emitNewlineIndent8" />
219 <xsl:text>break; </xsl:text>
220 <xsl:call-template name="emitNewline" />
221 <xsl:text> }</xsl:text>
222 <xsl:call-template name="emitNewline" />
223 <xsl:call-template name="emitNewline" />
224 <xsl:text> return e;</xsl:text>
225 <xsl:call-template name="emitNewline" />
226 <xsl:text>}</xsl:text>
227 <xsl:call-template name="emitNewline" />
228 </xsl:for-each>
229
230 <xsl:text>
231/****************************************************************************
232 *
233 * types: struct converter helper functions
234 *
235 ****************************************************************************/
236 </xsl:text>
237
238 <xsl:for-each select="//interface[@wsmap='struct']">
239 <xsl:variable name="structname" select="@name" />
240
241 <xsl:call-template name="emitNewline" />
242 <xsl:value-of select="concat('// ', $structname, ' converter: called from method mappers to convert data from')" />
243 <xsl:call-template name="emitNewline" />
244 <xsl:value-of select="concat('// COM interface ', $structname, ', which has wsmap=&quot;struct&quot;, to SOAP structures')" />
245 <xsl:call-template name="emitNewline" />
246 <xsl:value-of select="concat('vbox__', $structname, '* ', $G_funcPrefixOutputStructConverter, $structname, '(')" />
247 <xsl:call-template name="emitNewline" />
248 <xsl:value-of select="' struct soap *soap,'" />
249 <xsl:call-template name="emitNewline" />
250 <xsl:value-of select="' const WSDLT_ID &amp;idThis,'" />
251 <xsl:call-template name="emitNewline" />
252 <xsl:value-of select="' HRESULT &amp;rc,'" />
253 <xsl:call-template name="emitNewline" />
254 <xsl:value-of select="concat(' ComPtr&lt;', $structname, '&gt; &amp;in)')" />
255 <xsl:call-template name="emitNewline" />
256 <xsl:text>{</xsl:text>
257 <xsl:call-template name="emitNewline" />
258
259 <xsl:value-of select="concat(' vbox__', $structname, ' *resp = NULL;')" />
260 <xsl:call-template name="emitNewline" />
261
262 <xsl:call-template name="emitPrologue"><xsl:with-param name="fSkipHRESULT" select="'1'"/></xsl:call-template>
263
264 <xsl:value-of select="concat(' resp = soap_new_vbox__', $structname, '(soap, -1);')" />
265 <xsl:call-template name="emitNewline" />
266 <xsl:text> if (!in)&#10;</xsl:text>
267 <xsl:text> {&#10;</xsl:text>
268 <xsl:text> // @todo ambiguous. Problem is the MOR for the object converted to struct&#10;</xsl:text>
269 <xsl:text> RaiseSoapInvalidObjectFault(soap, "");&#10;</xsl:text>
270 <xsl:text> break;&#10;</xsl:text>
271 <xsl:text> }&#10;</xsl:text>
272 <xsl:call-template name="emitNewline" />
273
274 <xsl:for-each select="//interface[@name=$structname]/attribute">
275 <xsl:if test="not(@wsmap = 'suppress')">
276 <xsl:value-of select="concat(' // -- ', $structname, '.', @name)" />
277 <xsl:call-template name="emitNewline" />
278 <!-- recurse! -->
279 <xsl:call-template name="emitGetAttributeComCall">
280 <xsl:with-param name="ifname" select="$structname" />
281 <xsl:with-param name="object" select="'in'" />
282 <xsl:with-param name="attrname" select="@name" />
283 <xsl:with-param name="attrtype" select="@type" />
284 <xsl:with-param name="callerprefix" select="concat('out', '.')" />
285 </xsl:call-template>
286 <xsl:call-template name="emitNewline" />
287 </xsl:if>
288 </xsl:for-each>
289
290 <xsl:call-template name="emitEpilogue"><xsl:with-param name="fSkipHRESULT" select="'1'"/></xsl:call-template>
291
292 </xsl:for-each>
293
294 <xsl:apply-templates />
295</xsl:template>
296
297<!-- - - - - - - - - - - - - - - - - - - - - - -
298 class
299 - - - - - - - - - - - - - - - - - - - - - - -->
300
301<xsl:template match="module/class">
302<!-- TODO swallow for now -->
303</xsl:template>
304
305<!-- - - - - - - - - - - - - - - - - - - - - - -
306 enum
307 - - - - - - - - - - - - - - - - - - - - - - -->
308
309<xsl:template match="enum">
310</xsl:template>
311
312<!-- - - - - - - - - - - - - - - - - - - - - - -
313 const
314 - - - - - - - - - - - - - - - - - - - - - - -->
315
316<!--
317<xsl:template match="const">
318 <xsl:apply-templates />
319</xsl:template>
320-->
321
322<!-- - - - - - - - - - - - - - - - - - - - - - -
323 desc
324 - - - - - - - - - - - - - - - - - - - - - - -->
325
326<xsl:template match="desc">
327<!-- TODO swallow for now -->
328</xsl:template>
329
330<!-- - - - - - - - - - - - - - - - - - - - - - -
331 note
332 - - - - - - - - - - - - - - - - - - - - - - -->
333
334<xsl:template match="note">
335<!-- TODO -->
336 <xsl:apply-templates />
337</xsl:template>
338
339<!--
340 emitBeginOfFunctionHeader:
341-->
342
343<xsl:template name="emitBeginOfFunctionHeader">
344 <xsl:param name="ifname" />
345 <xsl:param name="method" />
346
347 <xsl:call-template name="emitNewline" />
348 <xsl:value-of select="concat('int __vbox__', $ifname, '_USCORE', $method, '(')" />
349 <xsl:call-template name="emitNewline" />
350 <xsl:text> struct soap *soap</xsl:text>
351</xsl:template>
352
353<!--
354 emitCppTypeForIDLType:
355 emits the C++ type that corresponds to the given WSDL type in $type.
356 -->
357<xsl:template name="emitCppTypeForIDLType">
358 <xsl:param name="method" />
359 <xsl:param name="type" />
360 <xsl:param name="safearray" />
361 <xsl:param name="varprefix" /> <!-- only with nested get-attribute calls -->
362 <xsl:param name="inptr" /> <!-- whether to add INPTR to BSTR (Dmitry template magic) -->
363
364 <!-- look up C++ glue type from IDL type from table array in typemap-shared.inc.xsl -->
365 <xsl:variable name="gluetypefield" select="exsl:node-set($G_aSharedTypes)/type[@idlname=$type]/@gluename" />
366
367 <xsl:choose>
368 <xsl:when test="$type='wstring' or $type='uuid'">
369 <xsl:choose>
370 <xsl:when test="$safearray='yes'">
371 <xsl:choose>
372 <xsl:when test="$inptr='yes'">
373 <xsl:value-of select="'com::SafeArray&lt;IN_BSTR&gt;'" /> <!-- input string arrays must use IN_BSTR (see com/array.h) -->
374 </xsl:when>
375 <xsl:otherwise>
376 <xsl:value-of select="'com::SafeArray&lt;BSTR&gt;'" /> <!-- output string arrays use raw BSTR -->
377 </xsl:otherwise>
378 </xsl:choose>
379 </xsl:when>
380 <xsl:otherwise>
381 <xsl:value-of select="'com::Bstr'" />
382 </xsl:otherwise>
383 </xsl:choose>
384 </xsl:when>
385 <!-- if above lookup in table succeeded, use that type -->
386 <xsl:when test="string-length($gluetypefield)">
387 <xsl:call-template name="emitTypeOrArray">
388 <xsl:with-param name="type" select="$gluetypefield"/>
389 <xsl:with-param name="safearray" select="$safearray"/>
390 </xsl:call-template>
391 </xsl:when>
392 <xsl:when test="//enum[@name=$type]">
393 <xsl:call-template name="emitTypeOrArray">
394 <xsl:with-param name="type" select="concat($type, '_T ')"/>
395 <xsl:with-param name="safearray" select="$safearray"/>
396 </xsl:call-template>
397 </xsl:when>
398 <xsl:when test="$type='$unknown'">
399 <xsl:choose>
400 <xsl:when test="$safearray='yes'">
401 <xsl:value-of select="'com::SafeIfaceArray&lt;IUnknown&gt;'" />
402 </xsl:when>
403 <xsl:otherwise>
404 <xsl:value-of select="'ComPtr&lt;IUnknown&gt;'" />
405 </xsl:otherwise>
406 </xsl:choose>
407 </xsl:when>
408 <xsl:when test="//interface[@name=$type]">
409 <xsl:variable name="thatif" select="//interface[@name=$type]" />
410 <xsl:variable name="thatifname" select="$thatif/@name" />
411 <xsl:choose>
412 <xsl:when test="$safearray='yes'">
413 <xsl:value-of select="concat('com::SafeIfaceArray&lt;', $thatifname, '&gt;')" />
414 </xsl:when>
415 <xsl:otherwise>
416 <xsl:value-of select="concat('ComPtr&lt;', $thatifname, '&gt;')" />
417 </xsl:otherwise>
418 </xsl:choose>
419 </xsl:when>
420 <xsl:otherwise>
421 <xsl:call-template name="fatalError">
422 <xsl:with-param name="msg" select="concat('emitCppTypeForIDLType: Type &quot;', $type, '&quot; in method &quot;', $method, '&quot; is not supported.')" />
423 </xsl:call-template>
424 </xsl:otherwise>
425 </xsl:choose>
426</xsl:template>
427
428
429<!--
430 emitDocumentStyleArgStructs:
431 with WSDL "document" style only, emits those lengthy structs for
432 the input and output argument in the function header.
433-->
434<xsl:template name="emitDocumentStyleArgStructs">
435 <xsl:param name="ifname" />
436 <xsl:param name="methodname" />
437 <xsl:param name="fOutputs" /> <!-- if 1, emit output struct as well -->
438
439 <xsl:text>,</xsl:text>
440 <xsl:call-template name="emitNewline" />
441 <xsl:value-of select="concat(' _vbox__', $ifname, '_USCORE', $methodname, $G_requestMessageElementSuffix, ' *', $G_requestElementVarName)" />
442 <xsl:if test="$fOutputs">
443 <xsl:text>,</xsl:text>
444 <xsl:call-template name="emitNewline" />
445 <xsl:value-of select="concat(' _vbox__', $ifname, '_USCORE', $methodname, $G_responseMessageElementSuffix, ' *', $G_responseElementVarName)" />
446 <!-- <xsl:value-of select="concat(' struct ', $ifname, '__', $methodname, 'Response &amp;', $G_result)" /> -->
447 </xsl:if>
448
449</xsl:template>
450
451<!--
452 emitPrologue:
453 emits the closing ")" for the parameter list and the beginning
454 of the function body.
455 -->
456<xsl:template name="emitPrologue">
457 <xsl:text> WEBDEBUG((g_pcszEntering, __FUNCTION__));
458
459 do {</xsl:text>
460 <xsl:call-template name="emitNewline" />
461</xsl:template>
462
463<!--
464 emitEpilogue
465 -->
466<xsl:template name="emitEpilogue">
467 <xsl:param name="fSkipHRESULT" />
468
469 <xsl:text> } while (0);</xsl:text>
470 <xsl:call-template name="emitNewline" />
471 <xsl:call-template name="emitNewline" />
472 <xsl:text> WEBDEBUG((g_pcszLeaving, __FUNCTION__, rc, rc));</xsl:text>
473 <xsl:call-template name="emitNewline" />
474 <xsl:if test="not($fSkipHRESULT)">
475 <xsl:text>
476 if (FAILED(rc))
477 return SOAP_FAULT;
478 return SOAP_OK;</xsl:text>
479 </xsl:if>
480 <xsl:if test="$fSkipHRESULT">
481 <xsl:text> return resp;</xsl:text>
482 </xsl:if>
483 <xsl:call-template name="emitNewline" />
484 <xsl:text>}</xsl:text>
485 <xsl:call-template name="emitNewline" />
486</xsl:template>
487
488<!--
489 emitObjForMethod:
490 after the function prologue, emit a "pObj" object that
491 specifies the object upon which the method should be invoked.
492-->
493<xsl:template name="emitObjForMethod">
494 <xsl:param name="ifname" />
495 <xsl:param name="wsmap" />
496 <xsl:param name="structprefix" /> <!-- with WSDL document style: req element prefix, like "vbox__IVirtualBox_USCOREcreateMachineRequestElement->" -->
497
498 <xsl:choose>
499 <xsl:when test="$wsmap='global'">
500 <xsl:choose>
501 <xsl:when test="$ifname='IVirtualBox'">
502 <xsl:text> // invoke method on global IVirtualBox instance</xsl:text>
503 <xsl:call-template name="emitNewlineIndent8" />
504 <xsl:text>ComPtr&lt;IVirtualBox&gt; pObj = G_pVirtualBox;</xsl:text>
505 <xsl:call-template name="emitNewline" />
506 </xsl:when>
507 <xsl:otherwise>
508 <xsl:call-template name="fatalError">
509 <xsl:with-param name="msg" select="concat('emitObjForMethod: Unknown interface &quot;', $ifname, '&quot; with wsmap=global in XIDL.')" />
510 </xsl:call-template>
511 </xsl:otherwise>
512 </xsl:choose>
513 </xsl:when>
514 <xsl:when test="($wsmap='managed')">
515 <xsl:text> // look up managed object reference for method call&#10;</xsl:text>
516 <xsl:value-of select="concat(' ComPtr&lt;', $ifname, '&gt; pObj;&#10;')" />
517 <xsl:value-of select="concat(' if (!', $G_requestElementVarName, ')&#10;')" />
518 <xsl:text> {&#10;</xsl:text>
519 <xsl:text> RaiseSoapInvalidObjectFault(soap, "");&#10;</xsl:text>
520 <xsl:text> break;&#10;</xsl:text>
521 <xsl:text> }&#10;</xsl:text>
522 <xsl:value-of select="concat(' const WSDLT_ID &amp;idThis = ', $structprefix, $G_nameObjectRefEncoded, ';&#10;')" />
523 <xsl:value-of select="' if ((rc = findComPtrFromId(soap, idThis, pObj, false)))&#10;'" />
524 <xsl:text> break;&#10;</xsl:text>
525 </xsl:when>
526 </xsl:choose>
527</xsl:template>
528
529<!--
530 emitInputArgConverter:
531 another type converter (from wsdl type to COM types),
532 that generates temporary variables on the stack with
533 the WSDL input parameters converted to the COM types,
534 so we can then pass them to the actual COM method call.
535-->
536<xsl:template name="emitInputArgConverter">
537 <xsl:param name="ifname" />
538 <xsl:param name="object" /> <!-- normally "pObj" -->
539 <xsl:param name="method" />
540 <xsl:param name="methodname" />
541 <xsl:param name="structprefix" /> <!-- with WSDL document style: req element prefix, like "vbox__IVirtualBox_USCOREcreateMachineRequestElement->" -->
542 <xsl:param name="name" />
543 <xsl:param name="type" />
544 <xsl:param name="safearray" />
545
546 <xsl:value-of select="concat(' // convert input arg ', $name, '(safearray: ', $safearray, ')')" />
547 <xsl:call-template name="emitNewlineIndent8" />
548
549 <xsl:choose>
550 <xsl:when test="$safearray='yes' and $type='octet'">
551 <xsl:value-of select="concat('com::SafeArray&lt;BYTE&gt; comcall_',$name, ';')" />
552 <xsl:call-template name="emitNewlineIndent8" />
553 <xsl:value-of select="concat('Base64DecodeByteArray(soap, ',$structprefix,$name,', ComSafeArrayAsOutParam(comcall_',$name, '), idThis, &quot;', $ifname, '::', $methodname, '&quot;, ', $object, ', COM_IIDOF(', $ifname, '));')" />
554 </xsl:when>
555
556 <xsl:when test="$safearray='yes'">
557 <xsl:value-of select="concat('size_t c', $name, ' = ', $structprefix, $name, '.size();')" />
558 <xsl:call-template name="emitNewlineIndent8" />
559 <xsl:call-template name="emitCppTypeForIDLType">
560 <xsl:with-param name="method" select="$method"/>
561 <xsl:with-param name="type" select="$type"/>
562 <xsl:with-param name="safearray" select="$safearray"/>
563 <xsl:with-param name="inptr" select="'yes'"/>
564 </xsl:call-template>
565 <xsl:value-of select="concat(' comcall_', $name, '(c', $name, ');')" />
566 <xsl:call-template name="emitNewlineIndent8" />
567 <xsl:value-of select="concat('for (size_t i = 0; i &lt; c', $name, '; ++i)')" />
568 <xsl:call-template name="emitNewlineIndent8" />
569 <xsl:value-of select="'{'" />
570 <xsl:call-template name="emitNewlineIndent8" />
571 <xsl:choose>
572 <xsl:when test="$type='$unknown'">
573 <xsl:value-of select="' ComPtr&lt;IUnknown&gt; tmpObject;'" />
574 <xsl:call-template name="emitNewlineIndent8" />
575 <xsl:value-of select="concat(' if ((rc = findComPtrFromId(soap, ', $structprefix, $name, '[i], tmpObject, true)))')" />
576 <xsl:call-template name="emitNewlineIndent8" />
577 <xsl:text> break;</xsl:text>
578 <xsl:call-template name="emitNewlineIndent8" />
579 <xsl:value-of select="concat(' IUnknown *tmpObject2(tmpObject); tmpObject2->AddRef(); comcall_', $name, '[i] = tmpObject;')" />
580 </xsl:when>
581 <xsl:when test="//interface[@name=$type]">
582 <xsl:value-of select="concat(' ComPtr&lt;', $type, '&gt; tmpObject;')" />
583 <xsl:call-template name="emitNewlineIndent8" />
584 <xsl:value-of select="concat(' if ((rc = findComPtrFromId(soap, ', $structprefix, $name, '[i], tmpObject, true)))')" />
585 <xsl:call-template name="emitNewlineIndent8" />
586 <xsl:text> break;</xsl:text>
587 <xsl:call-template name="emitNewlineIndent8" />
588 <xsl:value-of select="concat(' ', $type, ' *tmpObject2(tmpObject); tmpObject2->AddRef(); comcall_', $name, '[i] = tmpObject;')" />
589 </xsl:when>
590 <xsl:when test="$type='wstring'">
591 <xsl:value-of select="concat(' com::Bstr tmpObject(', $structprefix, $name, '[i].c_str());')" />
592 <xsl:call-template name="emitNewlineIndent8" />
593 <xsl:value-of select="' BSTR tmpObjectB;'" />
594 <xsl:call-template name="emitNewlineIndent8" />
595 <xsl:value-of select="' tmpObject.detachTo(&amp;tmpObjectB);'" />
596 <xsl:call-template name="emitNewlineIndent8" />
597 <xsl:value-of select="concat(' comcall_', $name, '[i] = tmpObjectB;')" />
598 </xsl:when>
599 <xsl:when test="$type='long'">
600 <xsl:call-template name="emitNewlineIndent8" />
601 <xsl:value-of select="concat(' comcall_', $name, '[i] = ', $structprefix, $name, '[i];')" />
602 </xsl:when>
603 <xsl:when test="$type='long long'">
604 <xsl:call-template name="emitNewlineIndent8" />
605 <xsl:value-of select="concat(' comcall_', $name, '[i] = ', $structprefix, $name, '[i];')" />
606 </xsl:when>
607 <xsl:when test="$type='boolean'">
608 <xsl:call-template name="emitNewlineIndent8" />
609 <xsl:value-of select="concat(' comcall_', $name, '[i] = ', $structprefix, $name, '[i];')" />
610 </xsl:when>
611 <xsl:when test="//enum[@name=$type]">
612 <xsl:call-template name="emitNewlineIndent8" />
613 <xsl:value-of select="concat(' comcall_', $name, '[i] = ', $G_funcPrefixInputEnumConverter, $type, '(', $structprefix, $name, '[i]);')" />
614 </xsl:when>
615 <xsl:otherwise>
616 <xsl:call-template name="fatalError">
617 <xsl:with-param name="msg" select="concat('emitInputArgConverter Type &quot;', $type, '&quot; in arg &quot;', $name, '&quot; of method &quot;', $method, '&quot; is not yet supported in safearrays.')" />
618 </xsl:call-template>
619 </xsl:otherwise>
620 </xsl:choose>
621 <xsl:call-template name="emitNewlineIndent8" />
622 <xsl:value-of select="'}'" />
623 <xsl:call-template name="emitNewline" />
624 </xsl:when>
625 <xsl:otherwise>
626 <xsl:call-template name="emitCppTypeForIDLType">
627 <xsl:with-param name="method" select="$method"/>
628 <xsl:with-param name="type" select="$type"/>
629 <xsl:with-param name="safearray" select="$safearray"/>
630 <xsl:with-param name="inptr" select="'yes'"/>
631 </xsl:call-template>
632 <xsl:choose>
633 <xsl:when test="$type='wstring' or $type='uuid'">
634 <xsl:value-of select="concat(' comcall_', $name, '(', $structprefix, $name, '.c_str())')" />
635 </xsl:when>
636 <xsl:when test="//enum[@name=$type]">
637 <xsl:value-of select="concat(' comcall_', $name, ' = ', $G_funcPrefixInputEnumConverter, $type, '(', $structprefix, $name, ')')" />
638 </xsl:when>
639 <xsl:when test="$type='$unknown'">
640 <xsl:value-of select="concat(' comcall_', $name, ';')" />
641 <xsl:call-template name="emitNewlineIndent8" />
642 <xsl:value-of select="concat('if ((rc = findComPtrFromId(soap, ', $structprefix, $name, ', comcall_', $name,', true)))')" />
643 <xsl:call-template name="emitNewlineIndent8" />
644 <xsl:text> break</xsl:text>
645 </xsl:when>
646 <xsl:when test="//interface[@name=$type]">
647 <!-- the type is one of our own interfaces: then it must have a wsmap attr -->
648 <xsl:variable name="thatif" select="//interface[@name=$type]" />
649 <xsl:variable name="wsmap" select="$thatif/@wsmap" />
650 <xsl:variable name="thatifname" select="$thatif/@name" />
651 <xsl:choose>
652 <xsl:when test="not($wsmap)">
653 <xsl:call-template name="fatalError">
654 <xsl:with-param name="msg" select="concat('emitInputArgConverter: Type &quot;', $type, '&quot; in arg &quot;', $name, '&quot; of method &quot;', $method, '&quot; lacks wsmap attribute in XIDL.')" />
655 </xsl:call-template>
656 </xsl:when>
657 <xsl:when test="($wsmap='managed')">
658 <xsl:value-of select="concat(' comcall_', $name, ';')" />
659 <xsl:call-template name="emitNewlineIndent8" />
660 <xsl:value-of select="concat('if ((rc = findComPtrFromId(soap, ', $structprefix, $name, ', comcall_', $name,', true)))')" />
661 <xsl:call-template name="emitNewlineIndent8" />
662 <xsl:text> break</xsl:text>
663 </xsl:when>
664 <xsl:otherwise>
665 <xsl:call-template name="fatalError">
666 <xsl:with-param name="msg" select="concat('emitInputArgConverter: Type &quot;', $type, '&quot; in arg &quot;', $name, '&quot; of method &quot;', $method, '&quot; has unsupported wsmap attribute value &quot;', $wsmap, '&quot; in XIDL.')" />
667 </xsl:call-template>
668 </xsl:otherwise>
669 </xsl:choose>
670 </xsl:when>
671 <xsl:otherwise>
672 <xsl:value-of select="concat(' comcall_', $name, ' = ', $structprefix, $name)" />
673 </xsl:otherwise>
674 </xsl:choose>
675 <xsl:text>;
676</xsl:text>
677 </xsl:otherwise>
678 </xsl:choose>
679
680</xsl:template>
681
682<!--
683 emitTypeOrArray
684-->
685
686<xsl:template name="emitTypeOrArray">
687 <xsl:param name="type" />
688 <xsl:param name="safearray" />
689
690 <xsl:choose>
691 <xsl:when test="$safearray='yes'">
692 <xsl:value-of select="concat('com::SafeArray&lt;', $type, '&gt;')" />
693 </xsl:when>
694 <xsl:otherwise>
695 <xsl:value-of select="$type" />
696 </xsl:otherwise>
697 </xsl:choose>
698</xsl:template>
699
700<!--
701 emitOutputArgBuffer:
702 another type converter (from wsdl type to COM types)
703 that generates a buffer variable which receives the
704 data from 'out' and 'return' parameters of the COM method call.
705-->
706<xsl:template name="emitOutputArgBuffer">
707 <xsl:param name="method" />
708 <xsl:param name="name" />
709 <xsl:param name="type" />
710 <xsl:param name="safearray" />
711 <xsl:param name="varprefix" /> <!-- only with nested get-attribute calls -->
712
713 <xsl:text> // com output arg for </xsl:text><xsl:value-of select="concat($name, ' (safearray: ', $safearray, ')')" /><xsl:text>
714 </xsl:text>
715 <xsl:call-template name="emitCppTypeForIDLType">
716 <xsl:with-param name="method" select="$method" />
717 <xsl:with-param name="type" select="$type" />
718 <xsl:with-param name="safearray" select="$safearray" />
719 </xsl:call-template>
720 <xsl:value-of select="concat(' comcall_', $varprefix, $name, ';')" />
721 <xsl:call-template name="emitNewline" />
722</xsl:template>
723
724<!--
725 emitInParam:
726-->
727<xsl:template name="emitInParam">
728 <xsl:param name="name" />
729 <xsl:param name="type" />
730 <xsl:param name="safearray" />
731 <xsl:param name="varprefix" /> <!-- only with nested set-attribute calls -->
732
733 <xsl:variable name="varname" select="concat('comcall_', $varprefix, $name)" />
734
735 <xsl:choose>
736 <xsl:when test="@safearray='yes'">
737 <xsl:value-of select="concat('ComSafeArrayAsInParam(', $varname, ')')" />
738 </xsl:when>
739 <xsl:otherwise>
740 <xsl:value-of select="$varname" />
741 <xsl:if test="@type='wstring' or @type='uuid'">
742 <xsl:text>.raw()</xsl:text>
743 </xsl:if>
744 </xsl:otherwise>
745 </xsl:choose>
746</xsl:template>
747
748<!--
749 emitOutParam:
750-->
751<xsl:template name="emitOutParam">
752 <xsl:param name="name" />
753 <xsl:param name="type" />
754 <xsl:param name="safearray" />
755 <xsl:param name="varprefix" /> <!-- only with nested get-attribute calls -->
756
757 <xsl:variable name="varname" select="concat('comcall_', $varprefix, $name)" />
758
759 <xsl:choose>
760 <xsl:when test="$safearray='yes'">
761 <xsl:value-of select="concat('ComSafeArrayAsOutParam(', $varname, ')')" />
762 </xsl:when>
763 <xsl:otherwise>
764 <xsl:choose>
765 <xsl:when test=" ($type='boolean')
766 or ($type='short')
767 or ($type='unsigned short')
768 or ($type='long')
769 or ($type='unsigned long')
770 or ($type='long long')
771 or ($type='unsigned long long')
772 or ($type='result')
773 or (//enum[@name=$type])">
774 <xsl:text>&amp;</xsl:text><xsl:value-of select="$varname" />
775 </xsl:when>
776 <xsl:otherwise>
777 <xsl:value-of select="$varname" /><xsl:text>.asOutParam()</xsl:text>
778 </xsl:otherwise>
779 </xsl:choose>
780 </xsl:otherwise>
781 </xsl:choose>
782</xsl:template>
783
784<!--
785 emitComCall:
786 emits the actual method call with the arguments.
787-->
788<xsl:template name="emitComCall">
789 <xsl:param name="ifname" />
790 <xsl:param name="object" /> <!-- normally "pObj" -->
791 <xsl:param name="methodname" />
792 <xsl:param name="attrname" /> <!-- with attributes only -->
793 <xsl:param name="attrtype" /> <!-- with attributes only -->
794 <xsl:param name="attrsafearray" /> <!-- with attributes only -->
795 <xsl:param name="attrdir" /> <!-- with attributes only: "in" or "return" -->
796 <xsl:param name="varprefix" /> <!-- only with nested get-attribute calls -->
797
798 <xsl:call-template name="emitNewlineIndent8" />
799 <xsl:value-of select="concat('WEBDEBUG((g_pcszCallingComMethod, &quot;', $methodname, '&quot;));')" />
800 <xsl:call-template name="emitNewlineIndent8" />
801 <xsl:value-of select="concat('rc = ', $object, '-&gt;', $methodname, '(')" />
802 <xsl:if test="$attrtype">
803 <xsl:choose>
804 <xsl:when test="$attrdir='in'">
805 <xsl:call-template name="emitInParam">
806 <xsl:with-param name="name" select="$attrname" />
807 <xsl:with-param name="type" select="$attrtype" />
808 <xsl:with-param name="safearray" select="$attrsafearray" />
809 <xsl:with-param name="varprefix" select="$varprefix" />
810 </xsl:call-template>
811 </xsl:when>
812 <xsl:when test="$attrdir='return'">
813 <xsl:call-template name="emitOutParam">
814 <xsl:with-param name="name" select="$attrname" />
815 <xsl:with-param name="type" select="$attrtype" />
816 <xsl:with-param name="safearray" select="$attrsafearray" />
817 <xsl:with-param name="varprefix" select="$varprefix" />
818 </xsl:call-template>
819 </xsl:when>
820 </xsl:choose>
821 </xsl:if>
822 <xsl:for-each select="param">
823 <xsl:if test="position()=1">
824 <xsl:call-template name="emitNewline" />
825 </xsl:if>
826 <xsl:if test="position() > 1">
827 <xsl:text>,</xsl:text>
828 <xsl:call-template name="emitNewline" />
829 </xsl:if>
830 <xsl:text> </xsl:text>
831 <xsl:choose>
832 <xsl:when test="@dir='in'">
833 <xsl:call-template name="emitInParam">
834 <xsl:with-param name="name" select="@name" />
835 <xsl:with-param name="type" select="@type" />
836 <xsl:with-param name="safearray" select="@safearray" />
837 <xsl:with-param name="varprefix" select="$varprefix" />
838 </xsl:call-template>
839 </xsl:when>
840 <xsl:when test="@dir='out'">
841 <xsl:call-template name="emitOutParam">
842 <xsl:with-param name="name" select="@name" />
843 <xsl:with-param name="type" select="@type" />
844 <xsl:with-param name="safearray" select="@safearray" />
845 <xsl:with-param name="varprefix" select="$varprefix" />
846 </xsl:call-template>
847 </xsl:when>
848 <xsl:when test="@dir='return'">
849 <xsl:call-template name="emitOutParam">
850 <xsl:with-param name="name" select="$G_result" />
851 <xsl:with-param name="type" select="@type" />
852 <xsl:with-param name="safearray" select="@safearray" />
853 <xsl:with-param name="varprefix" select="$varprefix" />
854 </xsl:call-template>
855 </xsl:when>
856 </xsl:choose>
857 </xsl:for-each>
858 <xsl:text>);</xsl:text>
859 <xsl:call-template name="emitNewlineIndent8" />
860 <xsl:text>if (FAILED(rc))</xsl:text>
861 <xsl:call-template name="emitNewlineIndent8" />
862 <xsl:text>{</xsl:text>
863 <xsl:call-template name="emitNewlineIndent8" />
864 <xsl:value-of select="concat(' RaiseSoapRuntimeFault(soap, idThis, &quot;', $ifname, '::', $methodname,'&quot;, rc, ', $object, ', COM_IIDOF(', $ifname, '));')" />
865 <xsl:call-template name="emitNewlineIndent8" />
866 <xsl:text> break;</xsl:text>
867 <xsl:call-template name="emitNewlineIndent8" />
868 <xsl:text>}</xsl:text>
869 <xsl:call-template name="emitNewlineIndent8" />
870 <xsl:text>WEBDEBUG((g_pcszDoneCallingComMethod));</xsl:text>
871 <xsl:call-template name="emitNewline" />
872</xsl:template>
873
874<!--
875 emitOutputArgBackConverter2: implementation details of emitOutputArgBackConverter.
876 -->
877
878<xsl:template name="emitOutputArgBackConverter2">
879 <xsl:param name="name" />
880 <xsl:param name="varname" />
881 <xsl:param name="type" />
882 <xsl:param name="callerprefix" />
883
884 <xsl:choose>
885 <xsl:when test="$type='wstring' or $type='uuid'">
886 <xsl:value-of select="concat('ConvertComString(', $varname, ')')" />
887 </xsl:when>
888 <xsl:when test="$type='boolean'">
889 <!-- the "!!" avoids a microsoft compiler warning -->
890 <xsl:value-of select="concat('!!', $varname)" />
891 </xsl:when>
892 <xsl:when test=" ($type='octet')
893 or ($type='short')
894 or ($type='unsigned short')
895 or ($type='long')
896 or ($type='unsigned long')
897 or ($type='long long')
898 or ($type='unsigned long long')
899 or ($type='result')">
900 <xsl:value-of select="$varname" />
901 </xsl:when>
902 <xsl:when test="//enum[@name=$type]">
903 <xsl:value-of select="concat($G_funcPrefixOutputEnumConverter, $type, '(', $varname, ')')" />
904 </xsl:when>
905 <xsl:when test="$type='$unknown'">
906 <xsl:value-of select="concat('createOrFindRefFromComPtr(idThis, g_pcszIUnknown, ', $varname, ')')" />
907 </xsl:when>
908 <xsl:when test="//interface[@name=$type]">
909 <!-- the type is one of our own interfaces: then it must have a wsmap attr -->
910 <xsl:variable name="thatif" select="//interface[@name=$type]" />
911 <xsl:variable name="wsmap" select="$thatif/@wsmap" />
912 <xsl:variable name="thatifname" select="$thatif/@name" />
913 <xsl:choose>
914 <xsl:when test=" ($wsmap='managed') or ($wsmap='global')">
915 <xsl:value-of select="concat('createOrFindRefFromComPtr(idThis, g_pcsz', $thatifname, ', ', $varname, ')')" />
916 </xsl:when>
917 <xsl:when test="$wsmap='struct'">
918 <!-- prevent infinite recursion -->
919 <!-- <xsl:call-template name="fatalError"><xsl:with-param name="msg" select="concat('emitOutputArgBackConverter2: attempted infinite recursion for type &quot;', $type, '&quot; in arg &quot;', $name, '&quot; of method &quot;', $ifname, '::', $method)" /></xsl:call-template> -->
920 <xsl:if test="not($callerprefix)">
921 <xsl:value-of select="concat('/* convert COM interface to struct */ ', $G_funcPrefixOutputStructConverter, $type, '(soap, idThis, rc, ', $varname, ')')" />
922 </xsl:if>
923 </xsl:when>
924 <xsl:otherwise>
925 <xsl:call-template name="fatalError">
926 <xsl:with-param name="msg" select="concat('emitOutputArgBackConverter2: Type &quot;', $type, '&quot; in arg &quot;', $name, '&quot; of method &quot;', $ifname, '::', $method, '&quot; has invalid wsmap attribute value &quot;', $wsmap, '&quot; in XIDL.')" />
927 </xsl:call-template>
928 </xsl:otherwise>
929 </xsl:choose>
930 </xsl:when>
931 <xsl:otherwise>
932 <xsl:call-template name="fatalError">
933 <xsl:with-param name="msg" select="concat('emitOutputArgBackConverter2: Type &quot;', $type, '&quot; in arg &quot;', $name, '&quot; of method &quot;', $method, '&quot; is not supported.')" />
934 </xsl:call-template>
935 </xsl:otherwise>
936 </xsl:choose>
937
938</xsl:template>
939
940<!--
941 emitOutputArgBackConverter:
942 another type converter (from COM type back to WSDL)
943 which converts the output argument from the COM
944 method call back to the WSDL type passed in by the
945 caller.
946-->
947<xsl:template name="emitOutputArgBackConverter">
948 <xsl:param name="ifname" />
949 <xsl:param name="method" />
950 <xsl:param name="name" />
951 <xsl:param name="type" />
952 <xsl:param name="safearray" />
953 <xsl:param name="varprefix" /> <!-- only when called recursively from emitGetAttributeComCall -->
954 <xsl:param name="callerprefix" /> <!-- only for out params or when called recursively from emitGetAttributeComCall -->
955
956 <xsl:variable name="topname" select="$name" />
957 <xsl:variable name="varname" select="concat('comcall_', $varprefix, $name)" />
958
959 <xsl:call-template name="emitNewlineIndent8" />
960 <xsl:value-of select="concat('WEBDEBUG((g_pcszConvertComOutputBack, &quot;', $name, '&quot;));')" />
961 <xsl:call-template name="emitNewlineIndent8" />
962
963 <xsl:variable name="receiverVariable">
964 <xsl:choose>
965 <xsl:when test="(not($varprefix))">
966 <xsl:choose>
967 <xsl:when test="$callerprefix"> <!-- callerprefix set but varprefix not: then this is an out parameter :-) -->
968 <xsl:value-of select="concat($G_responseElementVarName, '-&gt;', $name)" />
969 </xsl:when>
970 <xsl:otherwise>
971 <xsl:value-of select="concat($G_responseElementVarName, '-&gt;', $G_result)" />
972 </xsl:otherwise>
973 </xsl:choose>
974 </xsl:when>
975 <xsl:otherwise>
976 <xsl:value-of select="concat($callerprefix, $G_result, '-&gt;', $name)" />
977 </xsl:otherwise>
978 </xsl:choose>
979 </xsl:variable>
980
981 <xsl:choose>
982 <xsl:when test="$safearray='yes' and $type='octet'">
983 <xsl:value-of select="concat($receiverVariable, ' = Base64EncodeByteArray(ComSafeArrayAsInParam(', $varname,'));')" />
984 <xsl:call-template name="emitNewlineIndent8" />
985 </xsl:when>
986
987 <xsl:when test="$safearray='yes'">
988 <xsl:value-of select="concat('for (size_t i = 0; i &lt; ', $varname, '.size(); ++i)')" />
989 <xsl:call-template name="emitNewlineIndent8" />
990 <xsl:value-of select="'{'" />
991 <xsl:call-template name="emitNewlineIndent8" />
992 <!-- look up C++ glue type from IDL type from table array in typemap-shared.inc.xsl -->
993 <xsl:variable name="gluetypefield" select="exsl:node-set($G_aSharedTypes)/type[@idlname=$type]/@gluename" />
994 <xsl:choose>
995 <xsl:when test="//interface[@name=$type]">
996 <xsl:value-of select="concat(' ComPtr&lt;', $type, '&gt; tmpObject(', $varname, '[i]);')" />
997 </xsl:when>
998 <xsl:when test="//enum[@name=$type]">
999 <xsl:value-of select="concat(' ', $type, '_T tmpObject(', $varname, '[i]);')" />
1000 </xsl:when>
1001 <xsl:when test="$type='$unknown'">
1002 <xsl:value-of select="concat(' ComPtr&lt;IUnknown&gt; tmpObject(', $varname, '[i]);')" />
1003 </xsl:when>
1004 <xsl:when test="$type='wstring' or $type='uuid'">
1005 <xsl:value-of select="concat(' com::Bstr tmpObject(', $varname, '[i]);')" />
1006 </xsl:when>
1007 <xsl:when test="$gluetypefield">
1008 <xsl:value-of select="concat(' ', $gluetypefield, ' tmpObject(', $varname, '[i]);')" />
1009 </xsl:when>
1010 <xsl:otherwise>
1011 <xsl:call-template name="fatalError">
1012 <xsl:with-param name="msg" select="concat('emitOutputArgBackConverter (1): Type &quot;', $type, '&quot; in arg &quot;', $name, '&quot; of method &quot;', $method, '&quot; is not yet supported in safearrays.')" />
1013 </xsl:call-template>
1014
1015 </xsl:otherwise>
1016 </xsl:choose>
1017 <xsl:call-template name="emitNewlineIndent8" />
1018 <xsl:value-of select="concat(' ', $receiverVariable, '.push_back(')" />
1019 <xsl:call-template name="emitOutputArgBackConverter2">
1020 <xsl:with-param name="name" select="$name"/>
1021 <xsl:with-param name="varname" select="'tmpObject'"/>
1022 <xsl:with-param name="type" select="$type"/>
1023 <xsl:with-param name="callerprefix" select="$callerprefix"/>
1024 </xsl:call-template>
1025 <xsl:value-of select="');'" />
1026 <xsl:call-template name="emitNewlineIndent8" />
1027 <xsl:value-of select="'}'" />
1028 <xsl:call-template name="emitNewline" />
1029 </xsl:when>
1030 <xsl:otherwise>
1031 <!-- emit variable name: "resp->retval = " -->
1032 <xsl:value-of select="$receiverVariable" />
1033
1034 <xsl:value-of select="' = '" />
1035 <xsl:call-template name="emitOutputArgBackConverter2">
1036 <xsl:with-param name="name" select="$name"/>
1037 <xsl:with-param name="varname" select="$varname"/>
1038 <xsl:with-param name="type" select="$type"/>
1039 <xsl:with-param name="callerprefix" select="$callerprefix"/>
1040 </xsl:call-template>
1041 <xsl:value-of select="';'" />
1042 <xsl:call-template name="emitNewline" />
1043
1044 </xsl:otherwise>
1045 </xsl:choose>
1046
1047 <xsl:value-of select="concat(' WEBDEBUG((g_pcszDoneConvertingComOutputBack, &quot;', $name, '&quot;));')" />
1048 <xsl:call-template name="emitNewline" />
1049</xsl:template>
1050
1051<!--
1052 emitGetAttributeComCall
1053 -->
1054<xsl:template name="emitGetAttributeComCall">
1055 <xsl:param name="ifname" />
1056 <xsl:param name="object" /> <!-- normally "pObj->" -->
1057 <xsl:param name="attrname" />
1058 <xsl:param name="attrtype" />
1059 <xsl:param name="attrsafearray" />
1060 <xsl:param name="varprefix" /> <!-- only when called recursively from emitOutputArgBackConverter-->
1061 <xsl:param name="callerprefix" /> <!-- only when called recursively from emitOutputArgBackConverter-->
1062
1063 <xsl:variable name="gettername"><xsl:call-template name="makeGetterName"><xsl:with-param name="attrname" select="$attrname" /></xsl:call-template></xsl:variable>
1064 <xsl:call-template name="emitOutputArgBuffer">
1065 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1066 <xsl:with-param name="method"><xsl:value-of select="$gettername" /></xsl:with-param>
1067 <xsl:with-param name="name" select="$attrname" />
1068 <xsl:with-param name="type" select="$attrtype" />
1069 <xsl:with-param name="safearray" select="$attrsafearray" />
1070 <xsl:with-param name="varprefix" select="$varprefix" />
1071 </xsl:call-template>
1072 <xsl:variable name="upperattrname"><xsl:call-template name="capitalize"><xsl:with-param name="str" select="$attrname" /></xsl:call-template></xsl:variable>
1073 <!-- actual COM method call -->
1074 <xsl:call-template name="emitComCall">
1075 <xsl:with-param name="ifname" select="$ifname" />
1076 <xsl:with-param name="methodname" select="concat('COMGETTER(', $upperattrname, ')')" />
1077 <xsl:with-param name="object" select="$object" />
1078 <xsl:with-param name="attrname" select="$attrname" />
1079 <xsl:with-param name="attrtype" select="$attrtype" />
1080 <xsl:with-param name="attrsafearray" select="$attrsafearray" />
1081 <xsl:with-param name="attrdir" select="'return'" />
1082 <xsl:with-param name="varprefix" select="$varprefix" />
1083 </xsl:call-template>
1084 <!-- convert back the output data -->
1085 <xsl:call-template name="emitOutputArgBackConverter">
1086 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1087 <xsl:with-param name="method"><xsl:value-of select="$gettername" /></xsl:with-param>
1088 <xsl:with-param name="name" select="$attrname" />
1089 <xsl:with-param name="type" select="$attrtype" />
1090 <xsl:with-param name="safearray" select="$attrsafearray" />
1091 <xsl:with-param name="varprefix" select="$varprefix" />
1092 <xsl:with-param name="callerprefix" select="$callerprefix" />
1093 </xsl:call-template>
1094</xsl:template>
1095
1096<!--
1097 emitSetAttributeComCall
1098 -->
1099<xsl:template name="emitSetAttributeComCall">
1100 <xsl:param name="ifname" />
1101 <xsl:param name="object" /> <!-- normally "pObj->" -->
1102 <xsl:param name="attrname" />
1103 <xsl:param name="attrtype" />
1104 <xsl:param name="attrsafearray" />
1105 <xsl:param name="callerprefix" /> <!-- only when called recursively from emitOutputArgBackConverter-->
1106
1107 <xsl:variable name="settername"><xsl:call-template name="makeSetterName"><xsl:with-param name="attrname" select="$attrname" /></xsl:call-template></xsl:variable>
1108 <xsl:variable name="upperattrname"><xsl:call-template name="capitalize"><xsl:with-param name="str" select="$attrname" /></xsl:call-template></xsl:variable>
1109
1110 <xsl:call-template name="emitInputArgConverter">
1111 <xsl:with-param name="ifname" select="$ifname" />
1112 <xsl:with-param name="method" select="concat($ifname, '::', $settername)" />
1113 <xsl:with-param name="methodname" select="concat('COMSETTER(', $upperattrname, ')')" />
1114 <xsl:with-param name="object" select="$object" />
1115 <xsl:with-param name="name" select="$attrname" />
1116 <xsl:with-param name="structprefix" select="concat($G_requestElementVarName, '-&gt;')" />
1117 <xsl:with-param name="type" select="$attrtype" />
1118 <xsl:with-param name="safearray" select="$attrsafearray" />
1119 </xsl:call-template>
1120 <xsl:call-template name="emitComCall">
1121 <xsl:with-param name="ifname" select="$ifname" />
1122 <xsl:with-param name="methodname" select="concat('COMSETTER(', $upperattrname, ')')" />
1123 <xsl:with-param name="object" select="$object" />
1124 <xsl:with-param name="attrname" select="$attrname" />
1125 <xsl:with-param name="attrtype" select="$attrtype" />
1126 <xsl:with-param name="attrsafearray" select="$attrsafearray" />
1127 <xsl:with-param name="attrdir" select="'in'" />
1128 </xsl:call-template>
1129</xsl:template>
1130
1131<!--
1132 emitGetAttributeMapper
1133 -->
1134<xsl:template name="emitGetAttributeMapper">
1135 <xsl:param name="ifname" />
1136 <xsl:param name="wsmap" />
1137 <xsl:param name="attrname" />
1138 <xsl:param name="attrtype" />
1139 <xsl:param name="attrreadonly" />
1140 <xsl:param name="attrsafearray" />
1141
1142 <xsl:variable name="gettername"><xsl:call-template name="makeGetterName"><xsl:with-param name="attrname" select="$attrname" /></xsl:call-template></xsl:variable>
1143
1144 <xsl:call-template name="emitBeginOfFunctionHeader">
1145 <xsl:with-param name="ifname" select="$ifname" />
1146 <xsl:with-param name="method" select="$gettername" />
1147 </xsl:call-template>
1148
1149 <xsl:call-template name="emitDocumentStyleArgStructs">
1150 <xsl:with-param name="ifname" select="$ifname" />
1151 <xsl:with-param name="methodname" select="$gettername" />
1152 <xsl:with-param name="fOutputs" select="$attrtype" />
1153 </xsl:call-template>
1154
1155 <xsl:text>)</xsl:text>
1156 <xsl:call-template name="emitNewline" />
1157 <xsl:text>{</xsl:text>
1158 <xsl:call-template name="emitNewline" />
1159
1160 <xsl:value-of select="' HRESULT rc = S_OK;'" />
1161 <xsl:call-template name="emitNewline" />
1162
1163 <xsl:call-template name="emitPrologue" />
1164
1165 <!-- actual COM method call -->
1166 <!-- <xsl:choose>
1167 array attributes/parameters are not supported yet...
1168 <xsl:when test="@array or @safearray='yes'">
1169 <xsl:call-template name="warning"><xsl:with-param name="msg" select="concat('emitComCall: SKIPPING ATTRIBUTE IMPLEMENTATION for &quot;', $attrname, '&quot; because it has array type. THIS SOAP METHOD WILL NOT DO ANYTHING!')" /></xsl:call-template>
1170 </xsl:when>
1171 <xsl:otherwise> -->
1172 <xsl:call-template name="emitObjForMethod">
1173 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1174 <xsl:with-param name="wsmap"><xsl:value-of select="$wsmap" /></xsl:with-param>
1175 <xsl:with-param name="structprefix" select="concat($G_requestElementVarName, '-&gt;')" />
1176 </xsl:call-template>
1177
1178 <xsl:call-template name="emitGetAttributeComCall">
1179 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1180 <xsl:with-param name="object" select='"pObj"' />
1181 <xsl:with-param name="attrname"><xsl:value-of select="$attrname" /></xsl:with-param>
1182 <xsl:with-param name="attrtype"><xsl:value-of select="$attrtype" /></xsl:with-param>
1183 <xsl:with-param name="attrsafearray"><xsl:value-of select="$attrsafearray" /></xsl:with-param>
1184 </xsl:call-template>
1185 <!-- </xsl:otherwise>
1186 </xsl:choose> -->
1187
1188 <xsl:call-template name="emitEpilogue" />
1189</xsl:template>
1190
1191<!--
1192 emitSetAttributeMapper:
1193 -->
1194<xsl:template name="emitSetAttributeMapper">
1195 <xsl:param name="ifname" select="$ifname" />
1196 <xsl:param name="wsmap" select="$wsmap" />
1197 <xsl:param name="attrname" select="$attrname" />
1198 <xsl:param name="attrtype" select="$attrtype" />
1199 <xsl:param name="attrreadonly" select="$attrreadonly" />
1200 <xsl:param name="attrsafearray" select="$attrsafearray" />
1201
1202 <xsl:variable name="settername"><xsl:call-template name="makeSetterName"><xsl:with-param name="attrname" select="$attrname" /></xsl:call-template></xsl:variable>
1203
1204 <xsl:call-template name="emitBeginOfFunctionHeader">
1205 <xsl:with-param name="ifname" select="$ifname" />
1206 <xsl:with-param name="method" select="$settername" />
1207 </xsl:call-template>
1208
1209 <xsl:call-template name="emitDocumentStyleArgStructs">
1210 <xsl:with-param name="ifname" select="$ifname" />
1211 <xsl:with-param name="methodname" select="$settername" />
1212 <xsl:with-param name="fOutputs" select="1" />
1213 </xsl:call-template>
1214
1215 <xsl:text>)</xsl:text>
1216 <xsl:call-template name="emitNewline" />
1217 <xsl:text>{</xsl:text>
1218 <xsl:call-template name="emitNewline" />
1219 <xsl:value-of select="' HRESULT rc = S_OK;'" />
1220 <xsl:value-of select="concat(concat(' NOREF(', $G_responseElementVarName),');')" />
1221 <xsl:call-template name="emitNewline" />
1222 <xsl:call-template name="emitPrologue" />
1223
1224 <!-- actual COM method call -->
1225 <!-- <xsl:choose>
1226 array attributes/parameters are not supported yet...
1227 <xsl:when test="@array or @safearray='yes'">
1228 <xsl:call-template name="warning"><xsl:with-param name="msg" select="concat('emitComCall: SKIPPING ATTRIBUTE IMPLEMENTATION for &quot;', $attrname, '&quot; because it has array type. THIS SOAP METHOD WILL NOT DO ANYTHING!')" /></xsl:call-template>
1229 </xsl:when>
1230 <xsl:otherwise> -->
1231 <xsl:call-template name="emitObjForMethod">
1232 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1233 <xsl:with-param name="wsmap"><xsl:value-of select="$wsmap" /></xsl:with-param>
1234 <xsl:with-param name="structprefix" select="concat($G_requestElementVarName, '-&gt;')" />
1235 </xsl:call-template>
1236 <xsl:call-template name="emitSetAttributeComCall">
1237 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1238 <xsl:with-param name="object" select='"pObj"' />
1239 <xsl:with-param name="attrname"><xsl:value-of select="$attrname" /></xsl:with-param>
1240 <xsl:with-param name="attrtype"><xsl:value-of select="$attrtype" /></xsl:with-param>
1241 <xsl:with-param name="attrsafearray"><xsl:value-of select="$attrsafearray" /></xsl:with-param>
1242 </xsl:call-template>
1243 <!-- </xsl:otherwise>
1244 </xsl:choose> -->
1245
1246 <xsl:call-template name="emitEpilogue" />
1247</xsl:template>
1248
1249<!-- - - - - - - - - - - - - - - - - - - - - - -
1250 interface
1251 - - - - - - - - - - - - - - - - - - - - - - -->
1252
1253<xsl:template match="interface">
1254 <!-- remember the interface name in local variables -->
1255 <xsl:variable name="ifname"><xsl:value-of select="@name" /></xsl:variable>
1256 <xsl:variable name="wsmap"><xsl:value-of select="@wsmap" /></xsl:variable>
1257 <xsl:variable name="wscpp"><xsl:value-of select="@wscpp" /></xsl:variable>
1258
1259 <!-- we can save ourselves verifying the interface here as it's already
1260 done in the WSDL converter -->
1261
1262 <xsl:if test='not( ($wsmap="suppress") or ($wsmap="struct") or ($wscpp="hardcoded") )'>
1263 <xsl:text>
1264/****************************************************************************
1265 *
1266 * interface </xsl:text>
1267<xsl:copy-of select="$ifname" />
1268<xsl:text>
1269 *
1270 ****************************************************************************/
1271</xsl:text>
1272
1273 <!--
1274 here come the attributes
1275 -->
1276 <xsl:for-each select="attribute">
1277 <xsl:variable name="attrname"><xsl:value-of select="@name" /></xsl:variable>
1278 <xsl:variable name="attrtype"><xsl:value-of select="@type" /></xsl:variable>
1279 <xsl:variable name="attrreadonly"><xsl:value-of select="@readonly" /></xsl:variable>
1280 <xsl:variable name="attrsafearray"><xsl:value-of select="@safearray" /></xsl:variable>
1281 <xsl:call-template name="emitNewline" />
1282 <!-- skip this attribute if it has parameters of a type that has wsmap="suppress" -->
1283 <xsl:choose>
1284 <xsl:when test="( $attrtype=($G_setSuppressedInterfaces/@name) )">
1285 <xsl:value-of select="concat('// Skipping attribute ', $attrname, ' for it is of suppressed type ', $attrtype)" />
1286 </xsl:when>
1287 <xsl:when test="@wsmap = 'suppress'">
1288 <xsl:value-of select="concat('// Skipping attribute ', $attrname, ' for it is suppressed')" />
1289 </xsl:when>
1290 <xsl:otherwise>
1291 <xsl:choose>
1292 <xsl:when test="@readonly='yes'">
1293 <xsl:value-of select="concat('// read-only attribute ', $ifname, '::', $attrname, ' of type ', $attrtype)" />
1294 </xsl:when>
1295 <xsl:otherwise>
1296 <xsl:value-of select="concat('// read/write attribute ', $ifname, '::', $attrname, ' of type ', $attrtype)" />
1297 </xsl:otherwise>
1298 </xsl:choose>
1299 <xsl:value-of select="concat(' (safearray: ', $attrsafearray, ')')" />
1300 <!-- emit getter method -->
1301 <xsl:call-template name="emitGetAttributeMapper">
1302 <xsl:with-param name="ifname" select="$ifname" />
1303 <xsl:with-param name="wsmap" select="$wsmap" />
1304 <xsl:with-param name="attrname" select="$attrname" />
1305 <xsl:with-param name="attrtype" select="$attrtype" />
1306 <xsl:with-param name="attrreadonly" select="$attrreadonly" />
1307 <xsl:with-param name="attrsafearray" select="$attrsafearray" />
1308 </xsl:call-template>
1309 <!-- for read-write attributes, emit setter method -->
1310 <xsl:if test="not(@readonly='yes')">
1311 <xsl:call-template name="emitSetAttributeMapper">
1312 <xsl:with-param name="ifname" select="$ifname" />
1313 <xsl:with-param name="wsmap" select="$wsmap" />
1314 <xsl:with-param name="attrname" select="$attrname" />
1315 <xsl:with-param name="attrtype" select="$attrtype" />
1316 <xsl:with-param name="attrreadonly" select="$attrreadonly" />
1317 <xsl:with-param name="attrsafearray" select="$attrsafearray" />
1318 </xsl:call-template>
1319 </xsl:if>
1320 </xsl:otherwise> <!-- not wsmap=suppress -->
1321 </xsl:choose>
1322 </xsl:for-each>
1323
1324 <!--
1325 here come the real methods
1326 -->
1327
1328 <xsl:for-each select="method">
1329 <xsl:variable name="methodname"><xsl:value-of select="@name" /></xsl:variable>
1330 <!-- method header: return value "int", method name, soap arguments -->
1331 <!-- skip this method if it has parameters of a type that has wsmap="suppress" -->
1332 <xsl:choose>
1333 <xsl:when test=" (param[@type=($G_setSuppressedInterfaces/@name)])
1334 or (param[@mod='ptr'])" >
1335 <xsl:comment><xsl:value-of select="concat('Skipping method ', $methodname, ' for it has parameters with suppressed types')" /></xsl:comment>
1336 </xsl:when>
1337 <xsl:when test="@wsmap = 'suppress'">
1338 <xsl:comment><xsl:value-of select="concat('Skipping method ', $methodname, ' for it is suppressed')" /></xsl:comment>
1339 </xsl:when>
1340 <xsl:otherwise>
1341 <xsl:variable name="fHasReturnParms" select="param[@dir='return']" />
1342 <xsl:variable name="fHasOutParms" select="param[@dir='out']" />
1343
1344 <xsl:call-template name="emitNewline" />
1345 <xsl:value-of select="concat('/* method ', $ifname, '::', $methodname, '(')" />
1346 <xsl:for-each select="param">
1347 <xsl:call-template name="emitNewline" />
1348 <xsl:value-of select="concat(' [', @dir, '] ', @type, ' ', @name)" />
1349 <xsl:if test="@safearray='yes'">
1350 <xsl:text>[]</xsl:text>
1351 </xsl:if>
1352 <xsl:if test="not(position()=last())">
1353 <xsl:text>,</xsl:text>
1354 </xsl:if>
1355 </xsl:for-each>
1356 <xsl:text>)</xsl:text>
1357 <xsl:call-template name="emitNewline" />
1358 <xsl:text> */</xsl:text>
1359
1360 <xsl:call-template name="emitBeginOfFunctionHeader">
1361 <xsl:with-param name="ifname" select="$ifname" />
1362 <xsl:with-param name="method" select="$methodname" />
1363 </xsl:call-template>
1364
1365 <xsl:call-template name="emitDocumentStyleArgStructs">
1366 <xsl:with-param name="ifname" select="$ifname" />
1367 <xsl:with-param name="methodname" select="$methodname" />
1368 <xsl:with-param name="fOutputs" select="1" />
1369 </xsl:call-template>
1370 <xsl:text>)</xsl:text>
1371 <xsl:call-template name="emitNewline" />
1372 <xsl:text>{</xsl:text>
1373 <xsl:call-template name="emitNewline" />
1374 <xsl:value-of select="' HRESULT rc = S_OK;'" />
1375 <xsl:value-of select="concat(concat(' NOREF(', $G_responseElementVarName),');')" />
1376 <xsl:call-template name="emitNewline" />
1377 <xsl:call-template name="emitPrologue" />
1378
1379 <xsl:choose>
1380 <xsl:when test="param[@array]">
1381 <xsl:call-template name="warning"><xsl:with-param name="msg" select="concat('emitComCall: SKIPPING METHOD IMPLEMENTATION for &quot;', $methodname, '&quot; because it has arguments with &quot;array&quot; types. THIS SOAP METHOD WILL NOT DO ANYTHING!')" /></xsl:call-template>
1382 </xsl:when>
1383 <xsl:otherwise>
1384 <!-- emit the object upon which to invoke the method -->
1385 <xsl:call-template name="emitObjForMethod">
1386 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1387 <xsl:with-param name="wsmap"><xsl:value-of select="$wsmap" /></xsl:with-param>
1388 <xsl:with-param name="structprefix" select="concat($G_requestElementVarName, '-&gt;')" />
1389 </xsl:call-template>
1390 <!-- next, emit storage variables to convert the SOAP/C++ arguments to COM types -->
1391 <xsl:for-each select="param">
1392 <xsl:variable name="dir" select="@dir" />
1393 <xsl:choose>
1394 <xsl:when test="$dir='in'">
1395 <xsl:call-template name="emitInputArgConverter">
1396 <xsl:with-param name="ifname" select="$ifname" />
1397 <xsl:with-param name="method" select="concat($ifname, '::', $methodname)" />
1398 <xsl:with-param name="methodname">
1399 <xsl:call-template name="capitalize">
1400 <xsl:with-param name="str" select="$methodname" />
1401 </xsl:call-template>
1402 </xsl:with-param>
1403 <xsl:with-param name="object" select='"pObj"' />
1404 <xsl:with-param name="structprefix" select="concat($G_requestElementVarName, '-&gt;')" />
1405 <xsl:with-param name="name" select="@name" />
1406 <xsl:with-param name="type" select="@type" />
1407 <xsl:with-param name="safearray" select="@safearray" />
1408 </xsl:call-template>
1409 </xsl:when>
1410 <xsl:when test="$dir='out'">
1411 <xsl:call-template name="emitOutputArgBuffer">
1412 <xsl:with-param name="method" select="concat($ifname, '::', $methodname)" />
1413 <xsl:with-param name="name" select="@name" />
1414 <xsl:with-param name="type" select="@type" />
1415 <xsl:with-param name="safearray" select="@safearray" />
1416 </xsl:call-template>
1417 </xsl:when>
1418 <xsl:when test="$dir='return'">
1419 <xsl:call-template name="emitOutputArgBuffer">
1420 <xsl:with-param name="method" select="concat($ifname, '::', $methodname)" />
1421 <xsl:with-param name="name" select="$G_result" />
1422 <xsl:with-param name="type" select="@type" />
1423 <xsl:with-param name="safearray" select="@safearray" />
1424 </xsl:call-template>
1425 </xsl:when>
1426 </xsl:choose>
1427 </xsl:for-each>
1428 <!-- actual COM method call -->
1429 <xsl:call-template name="emitComCall">
1430 <xsl:with-param name="ifname" select="$ifname" />
1431 <xsl:with-param name="object" select='"pObj"' />
1432 <xsl:with-param name="methodname">
1433 <xsl:call-template name="capitalize">
1434 <xsl:with-param name="str" select="$methodname" />
1435 </xsl:call-template>
1436 </xsl:with-param>
1437 </xsl:call-template>
1438 <!-- convert back the output data -->
1439 <xsl:for-each select="param">
1440 <xsl:variable name="dir" select="@dir" />
1441 <xsl:if test="$dir='out'">
1442 <xsl:call-template name="emitOutputArgBackConverter">
1443 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1444 <xsl:with-param name="method" select="$methodname" />
1445 <xsl:with-param name="name"><xsl:value-of select="@name" /></xsl:with-param>
1446 <xsl:with-param name="type"><xsl:value-of select="@type" /></xsl:with-param>
1447 <xsl:with-param name="safearray"><xsl:value-of select="@safearray" /></xsl:with-param>
1448 <xsl:with-param name="callerprefix" select="'outparms.'"/>
1449 </xsl:call-template>
1450 </xsl:if>
1451 <xsl:if test="$dir='return'">
1452 <!-- return values _normally_ should convert to the input arg from the function prototype,
1453 except when there are both return and out params; in that case gsoap squeezes them all
1454 into the output args structure and the return thing is called "retval" -->
1455 <xsl:choose>
1456 <xsl:when test="$fHasOutParms">
1457 <xsl:call-template name="emitOutputArgBackConverter">
1458 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1459 <xsl:with-param name="method" select="$methodname" />
1460 <xsl:with-param name="name"><xsl:value-of select="$G_result" /></xsl:with-param>
1461 <xsl:with-param name="type"><xsl:value-of select="@type" /></xsl:with-param>
1462 <xsl:with-param name="safearray"><xsl:value-of select="@safearray" /></xsl:with-param>
1463 <xsl:with-param name="callerprefix" select="'outparms.'"/>
1464 </xsl:call-template>
1465 </xsl:when>
1466 <xsl:otherwise>
1467 <xsl:call-template name="emitOutputArgBackConverter">
1468 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1469 <xsl:with-param name="method" select="$methodname" />
1470 <xsl:with-param name="name"><xsl:value-of select="$G_result" /></xsl:with-param>
1471 <xsl:with-param name="type"><xsl:value-of select="@type" /></xsl:with-param>
1472 <xsl:with-param name="safearray"><xsl:value-of select="@safearray" /></xsl:with-param>
1473 </xsl:call-template>
1474 </xsl:otherwise>
1475 </xsl:choose>
1476 </xsl:if>
1477 </xsl:for-each>
1478 </xsl:otherwise>
1479 </xsl:choose>
1480 <xsl:call-template name="emitEpilogue" />
1481 </xsl:otherwise>
1482 </xsl:choose>
1483 </xsl:for-each>
1484 </xsl:if>
1485
1486</xsl:template>
1487
1488
1489</xsl:stylesheet>
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