VirtualBox

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

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

VRDPAuth -> VBoxAuth.

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