VirtualBox

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

Last change on this file since 30503 was 30503, checked in by vboxsync, 15 years ago

webservice: introduce global lock for converting method parameters

  • Property svn:eol-style set to native
File size: 65.1 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.215389.xyz. 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/VRDPAuth.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 util::AutoWriteLock paramsLock(*g_pParamsLockHandle COMMA_LOCKVAL_SRC_POS);
459
460 do {</xsl:text>
461 <xsl:call-template name="emitNewline" />
462</xsl:template>
463
464<!--
465 emitEpilogue
466 -->
467<xsl:template name="emitEpilogue">
468 <xsl:param name="fSkipHRESULT" />
469
470 <xsl:text> } while (0);</xsl:text>
471 <xsl:call-template name="emitNewline" />
472 <xsl:call-template name="emitNewline" />
473 <xsl:text> WEBDEBUG((g_pcszLeaving, __FUNCTION__, rc, rc));</xsl:text>
474 <xsl:call-template name="emitNewline" />
475 <xsl:if test="not($fSkipHRESULT)">
476 <xsl:text>
477 if (FAILED(rc))
478 return SOAP_FAULT;
479 return SOAP_OK;</xsl:text>
480 </xsl:if>
481 <xsl:if test="$fSkipHRESULT">
482 <xsl:text> return resp;</xsl:text>
483 </xsl:if>
484 <xsl:call-template name="emitNewline" />
485 <xsl:text>}</xsl:text>
486 <xsl:call-template name="emitNewline" />
487</xsl:template>
488
489<!--
490 emitObjForMethod:
491 after the function prologue, emit a "pObj" object that
492 specifies the object upon which the method should be invoked.
493-->
494<xsl:template name="emitObjForMethod">
495 <xsl:param name="ifname" />
496 <xsl:param name="wsmap" />
497 <xsl:param name="structprefix" /> <!-- with WSDL document style: req element prefix, like "vbox__IVirtualBox_USCOREcreateMachineRequestElement->" -->
498
499 <xsl:choose>
500 <xsl:when test="$wsmap='global'">
501 <xsl:choose>
502 <xsl:when test="$ifname='IVirtualBox'">
503 <xsl:text> // invoke method on global IVirtualBox instance</xsl:text>
504 <xsl:call-template name="emitNewlineIndent8" />
505 <xsl:text>ComPtr&lt;IVirtualBox&gt; pObj = G_pVirtualBox;</xsl:text>
506 <xsl:call-template name="emitNewline" />
507 </xsl:when>
508 <xsl:otherwise>
509 <xsl:call-template name="fatalError">
510 <xsl:with-param name="msg" select="concat('emitObjForMethod: Unknown interface &quot;', $ifname, '&quot; with wsmap=global in XIDL.')" />
511 </xsl:call-template>
512 </xsl:otherwise>
513 </xsl:choose>
514 </xsl:when>
515 <xsl:when test="($wsmap='managed')">
516 <xsl:text> // look up managed object reference for method call&#10;</xsl:text>
517 <xsl:value-of select="concat(' ComPtr&lt;', $ifname, '&gt; pObj;&#10;')" />
518 <xsl:value-of select="concat(' if (!', $G_requestElementVarName, ')&#10;')" />
519 <xsl:text> {&#10;</xsl:text>
520 <xsl:text> RaiseSoapInvalidObjectFault(soap, "");&#10;</xsl:text>
521 <xsl:text> break;&#10;</xsl:text>
522 <xsl:text> }&#10;</xsl:text>
523 <xsl:value-of select="concat(' const WSDLT_ID &amp;idThis = ', $structprefix, $G_nameObjectRefEncoded, ';&#10;')" />
524 <xsl:value-of select="' if ((rc = findComPtrFromId(soap, idThis, pObj, false)))&#10;'" />
525 <xsl:text> break;&#10;</xsl:text>
526 </xsl:when>
527 </xsl:choose>
528</xsl:template>
529
530<!--
531 emitInputArgConverter:
532 another type converter (from wsdl type to COM types),
533 that generates temporary variables on the stack with
534 the WSDL input parameters converted to the COM types,
535 so we can then pass them to the actual COM method call.
536-->
537<xsl:template name="emitInputArgConverter">
538 <xsl:param name="method" />
539 <xsl:param name="structprefix" /> <!-- with WSDL document style: req element prefix, like "vbox__IVirtualBox_USCOREcreateMachineRequestElement->" -->
540 <xsl:param name="name" />
541 <xsl:param name="type" />
542 <xsl:param name="safearray" />
543
544 <xsl:value-of select="concat(' // convert input arg ', $name)" />
545 <xsl:call-template name="emitNewlineIndent8" />
546
547 <xsl:choose>
548 <xsl:when test="$safearray='yes'">
549 <xsl:value-of select="concat('size_t c', $name, ' = ', $structprefix, $name, '.size();')" />
550 <xsl:call-template name="emitNewlineIndent8" />
551 <xsl:call-template name="emitCppTypeForIDLType">
552 <xsl:with-param name="method" select="$method"/>
553 <xsl:with-param name="type" select="$type"/>
554 <xsl:with-param name="safearray" select="$safearray"/>
555 <xsl:with-param name="inptr" select="'yes'"/>
556 </xsl:call-template>
557 <xsl:value-of select="concat(' comcall_', $name, '(c', $name, ');')" />
558 <xsl:call-template name="emitNewlineIndent8" />
559 <xsl:value-of select="concat('for (size_t i = 0; i &lt; c', $name, '; ++i)')" />
560 <xsl:call-template name="emitNewlineIndent8" />
561 <xsl:value-of select="'{'" />
562 <xsl:call-template name="emitNewlineIndent8" />
563 <xsl:choose>
564 <xsl:when test="$type='$unknown'">
565 <xsl:value-of select="' ComPtr&lt;IUnknown&gt; tmpObject;'" />
566 <xsl:call-template name="emitNewlineIndent8" />
567 <xsl:value-of select="concat(' if ((rc = findComPtrFromId(soap, ', $structprefix, $name, '[i], tmpObject, true)))')" />
568 <xsl:call-template name="emitNewlineIndent8" />
569 <xsl:text> break;</xsl:text>
570 <xsl:call-template name="emitNewlineIndent8" />
571 <xsl:value-of select="concat(' IUnknown *tmpObject2(tmpObject); tmpObject2->AddRef(); comcall_', $name, '[i] = tmpObject;')" />
572 </xsl:when>
573 <xsl:when test="$type='wstring'">
574 <xsl:value-of select="concat(' com::Bstr tmpObject(', $structprefix, $name, '[i].c_str());')" />
575 <xsl:call-template name="emitNewlineIndent8" />
576 <xsl:value-of select="' BSTR tmpObjectB;'" />
577 <xsl:call-template name="emitNewlineIndent8" />
578 <xsl:value-of select="' tmpObject.detachTo(&amp;tmpObjectB);'" />
579 <xsl:call-template name="emitNewlineIndent8" />
580 <xsl:value-of select="concat(' comcall_', $name, '[i] = tmpObjectB;')" />
581 </xsl:when>
582 <xsl:when test="$type='long'">
583 <xsl:call-template name="emitNewlineIndent8" />
584 <xsl:value-of select="concat(' comcall_', $name, '[i] = ', $structprefix, $name, '[i];')" />
585 </xsl:when>
586 <xsl:when test="$type='boolean'">
587 <xsl:call-template name="emitNewlineIndent8" />
588 <xsl:value-of select="concat(' comcall_', $name, '[i] = ', $structprefix, $name, '[i];')" />
589 </xsl:when>
590 <xsl:when test="//enum[@name=$type]">
591 <xsl:call-template name="emitNewlineIndent8" />
592 <xsl:value-of select="concat(' comcall_', $name, '[i] = ', $G_funcPrefixInputEnumConverter, $type, '(', $structprefix, $name, '[i]);')" />
593 </xsl:when>
594 <xsl:otherwise>
595 <xsl:call-template name="fatalError">
596 <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.')" />
597 </xsl:call-template>
598 </xsl:otherwise>
599 </xsl:choose>
600 <xsl:call-template name="emitNewlineIndent8" />
601 <xsl:value-of select="'}'" />
602 <xsl:call-template name="emitNewline" />
603 </xsl:when>
604 <xsl:otherwise>
605 <xsl:call-template name="emitCppTypeForIDLType">
606 <xsl:with-param name="method" select="$method"/>
607 <xsl:with-param name="type" select="$type"/>
608 <xsl:with-param name="safearray" select="$safearray"/>
609 <xsl:with-param name="inptr" select="'yes'"/>
610 </xsl:call-template>
611 <xsl:choose>
612 <xsl:when test="$type='wstring' or $type='uuid'">
613 <xsl:value-of select="concat(' comcall_', $name, '(', $structprefix, $name, '.c_str())')" />
614 </xsl:when>
615 <xsl:when test="//enum[@name=$type]">
616 <xsl:value-of select="concat(' comcall_', $name, ' = ', $G_funcPrefixInputEnumConverter, $type, '(', $structprefix, $name, ')')" />
617 </xsl:when>
618 <xsl:when test="$type='$unknown'">
619 <xsl:value-of select="concat(' comcall_', $name, ';')" />
620 <xsl:call-template name="emitNewlineIndent8" />
621 <xsl:value-of select="concat('if ((rc = findComPtrFromId(soap, ', $structprefix, $name, ', comcall_', $name,', true)))')" />
622 <xsl:call-template name="emitNewlineIndent8" />
623 <xsl:text> break</xsl:text>
624 </xsl:when>
625 <xsl:when test="(//interface[@name=$type]) or (//collection[@name=$type])">
626 <!-- the type is one of our own interfaces: then it must have a wsmap attr -->
627 <xsl:variable name="thatif" select="(//interface[@name=$type]) | (//collection[@name=$type])" />
628 <xsl:variable name="wsmap" select="$thatif/@wsmap" />
629 <xsl:variable name="thatifname" select="$thatif/@name" />
630 <xsl:choose>
631 <xsl:when test="not($wsmap)">
632 <xsl:call-template name="fatalError">
633 <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.')" />
634 </xsl:call-template>
635 </xsl:when>
636 <xsl:when test="($wsmap='managed')">
637 <xsl:value-of select="concat(' comcall_', $name, ';')" />
638 <xsl:call-template name="emitNewlineIndent8" />
639 <xsl:value-of select="concat('if ((rc = findComPtrFromId(soap, ', $structprefix, $name, ', comcall_', $name,', true)))')" />
640 <xsl:call-template name="emitNewlineIndent8" />
641 <xsl:text> break</xsl:text>
642 </xsl:when>
643 <xsl:otherwise>
644 <xsl:call-template name="fatalError">
645 <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.')" />
646 </xsl:call-template>
647 </xsl:otherwise>
648 </xsl:choose>
649 </xsl:when>
650 <xsl:otherwise>
651 <xsl:value-of select="concat(' comcall_', $name, ' = ', $structprefix, $name)" />
652 </xsl:otherwise>
653 </xsl:choose>
654 <xsl:text>;
655</xsl:text>
656 </xsl:otherwise>
657 </xsl:choose>
658
659</xsl:template>
660
661<!--
662 emitTypeOrArray
663-->
664
665<xsl:template name="emitTypeOrArray">
666 <xsl:param name="type" />
667 <xsl:param name="safearray" />
668
669 <xsl:choose>
670 <xsl:when test="$safearray='yes'">
671 <xsl:value-of select="concat('com::SafeArray&lt;', $type, '&gt;')" />
672 </xsl:when>
673 <xsl:otherwise>
674 <xsl:value-of select="$type" />
675 </xsl:otherwise>
676 </xsl:choose>
677</xsl:template>
678
679<!--
680 emitOutputArgBuffer:
681 another type converter (from wsdl type to COM types)
682 that generates a buffer variable which receives the
683 data from 'out' and 'return' parameters of the COM method call.
684-->
685<xsl:template name="emitOutputArgBuffer">
686 <xsl:param name="method" />
687 <xsl:param name="name" />
688 <xsl:param name="type" />
689 <xsl:param name="safearray" />
690 <xsl:param name="varprefix" /> <!-- only with nested get-attribute calls -->
691
692 <xsl:text> // com output arg for </xsl:text><xsl:value-of select="concat($name, ' (safearray: ', $safearray, ')')" /><xsl:text>
693 </xsl:text>
694 <xsl:call-template name="emitCppTypeForIDLType">
695 <xsl:with-param name="method" select="$method" />
696 <xsl:with-param name="type" select="$type" />
697 <xsl:with-param name="safearray" select="$safearray" />
698 </xsl:call-template>
699 <xsl:value-of select="concat(' comcall_', $varprefix, $name, ';')" />
700 <xsl:call-template name="emitNewline" />
701</xsl:template>
702
703<!--
704 emitOutParam:
705-->
706<xsl:template name="emitOutParam">
707 <xsl:param name="name" />
708 <xsl:param name="type" />
709 <xsl:param name="safearray" />
710 <xsl:param name="varprefix" /> <!-- only with nested get-attribute calls -->
711
712 <xsl:variable name="varname" select="concat('comcall_', $varprefix, $name)" />
713
714 <xsl:choose>
715 <xsl:when test="$safearray='yes'">
716 <xsl:value-of select="concat('ComSafeArrayAsOutParam(', $varname, ')')" />
717 </xsl:when>
718 <xsl:otherwise>
719 <xsl:choose>
720 <xsl:when test=" ($type='boolean')
721 or ($type='short')
722 or ($type='unsigned short')
723 or ($type='long')
724 or ($type='unsigned long')
725 or ($type='long long')
726 or ($type='unsigned long long')
727 or ($type='result')
728 or (//enum[@name=$type])">
729 <xsl:text>&amp;</xsl:text><xsl:value-of select="$varname" />
730 </xsl:when>
731 <xsl:otherwise>
732 <xsl:value-of select="$varname" /><xsl:text>.asOutParam()</xsl:text>
733 </xsl:otherwise>
734 </xsl:choose>
735 </xsl:otherwise>
736 </xsl:choose>
737</xsl:template>
738
739<!--
740 emitComCall:
741 emits the actual method call with the arguments.
742-->
743<xsl:template name="emitComCall">
744 <xsl:param name="object" /> <!-- normally "pObj->" -->
745 <xsl:param name="methodname" />
746 <xsl:param name="attrname" /> <!-- with attributes only -->
747 <xsl:param name="attrtype" /> <!-- with attributes only -->
748 <xsl:param name="attrsafearray" /> <!-- with attributes only -->
749 <xsl:param name="attrdir" /> <!-- with attributes only: "in" or "return" -->
750 <xsl:param name="varprefix" /> <!-- only with nested get-attribute calls -->
751
752 <xsl:variable name="comMethodName">
753 <xsl:call-template name="capitalize"><xsl:with-param name="str" select="$methodname" /></xsl:call-template>
754 </xsl:variable>
755
756 <xsl:call-template name="emitNewlineIndent8" />
757 <xsl:text>paramsLock.release();</xsl:text>
758 <xsl:call-template name="emitNewlineIndent8" />
759 <xsl:value-of select="concat('WEBDEBUG((g_pcszCallingComMethod, &quot;', $comMethodName, '&quot;));')" />
760 <xsl:call-template name="emitNewlineIndent8" />
761 <xsl:value-of select="concat('rc = ', $object, '-&gt;', $comMethodName, '(')" />
762 <xsl:if test="$attrtype">
763 <xsl:choose>
764 <xsl:when test="$attrdir='in'">
765 <xsl:value-of select="concat('comcall_', $varprefix, @name)" />
766 </xsl:when>
767 <xsl:when test="$attrdir='return'">
768 <xsl:call-template name="emitOutParam">
769 <xsl:with-param name="name" select="$attrname" />
770 <xsl:with-param name="type" select="$attrtype" />
771 <xsl:with-param name="safearray" select="$attrsafearray" />
772 <xsl:with-param name="varprefix" select="$varprefix" />
773 </xsl:call-template>
774 </xsl:when>
775 </xsl:choose>
776 </xsl:if>
777 <xsl:for-each select="param">
778 <xsl:if test="position()=1">
779 <xsl:call-template name="emitNewline" />
780 </xsl:if>
781 <xsl:if test="position() > 1">
782 <xsl:text>,</xsl:text>
783 <xsl:call-template name="emitNewline" />
784 </xsl:if>
785 <xsl:text> </xsl:text>
786 <xsl:choose>
787 <xsl:when test="@dir='in'">
788 <xsl:choose>
789 <xsl:when test="@safearray='yes'">
790 <xsl:value-of select="concat('ComSafeArrayAsInParam(comcall_', $varprefix, @name, ')')" />
791 </xsl:when>
792 <xsl:otherwise>
793 <xsl:value-of select="concat('comcall_', $varprefix, @name)" />
794 </xsl:otherwise>
795 </xsl:choose>
796 </xsl:when>
797 <xsl:when test="@dir='out'">
798 <xsl:call-template name="emitOutParam">
799 <xsl:with-param name="name" select="@name" />
800 <xsl:with-param name="type" select="@type" />
801 <xsl:with-param name="safearray" select="@safearray" />
802 <xsl:with-param name="varprefix" select="$varprefix" />
803 </xsl:call-template>
804 </xsl:when>
805 <xsl:when test="@dir='return'">
806 <xsl:call-template name="emitOutParam">
807 <xsl:with-param name="name" select="$G_result" />
808 <xsl:with-param name="type" select="@type" />
809 <xsl:with-param name="safearray" select="@safearray" />
810 <xsl:with-param name="varprefix" select="$varprefix" />
811 </xsl:call-template>
812 </xsl:when>
813 </xsl:choose>
814 </xsl:for-each>
815 <xsl:text>);</xsl:text>
816 <xsl:call-template name="emitNewlineIndent8" />
817 <xsl:text>if (FAILED(rc))</xsl:text>
818 <xsl:call-template name="emitNewlineIndent8" />
819 <xsl:text>{</xsl:text>
820 <xsl:call-template name="emitNewlineIndent8" />
821 <xsl:value-of select="concat(' RaiseSoapRuntimeFault(soap, rc, ', $object, ');')" />
822 <xsl:call-template name="emitNewlineIndent8" />
823 <xsl:text> break;</xsl:text>
824 <xsl:call-template name="emitNewlineIndent8" />
825 <xsl:text>}</xsl:text>
826 <xsl:call-template name="emitNewlineIndent8" />
827 <xsl:text>WEBDEBUG((g_pcszDoneCallingComMethod));</xsl:text>
828 <xsl:call-template name="emitNewlineIndent8" />
829 <xsl:text>paramsLock.acquire();</xsl:text>
830 <xsl:call-template name="emitNewline" />
831</xsl:template>
832
833<!--
834 emitOutputArgBackConverter2: implementation details of emitOutputArgBackConverter.
835 -->
836
837<xsl:template name="emitOutputArgBackConverter2">
838 <xsl:param name="name" />
839 <xsl:param name="varname" />
840 <xsl:param name="type" />
841 <xsl:param name="callerprefix" />
842
843 <xsl:choose>
844 <xsl:when test="$type='wstring' or $type='uuid'">
845 <xsl:value-of select="concat('ConvertComString(', $varname, ')')" />
846 </xsl:when>
847 <xsl:when test="$type='boolean'">
848 <!-- the "!!" avoids a microsoft compiler warning -->
849 <xsl:value-of select="concat('!!', $varname)" />
850 </xsl:when>
851 <xsl:when test=" ($type='octet')
852 or ($type='short')
853 or ($type='unsigned short')
854 or ($type='long')
855 or ($type='unsigned long')
856 or ($type='long long')
857 or ($type='unsigned long long')
858 or ($type='result')">
859 <xsl:value-of select="$varname" />
860 </xsl:when>
861 <xsl:when test="//enum[@name=$type]">
862 <xsl:value-of select="concat($G_funcPrefixOutputEnumConverter, $type, '(', $varname, ')')" />
863 </xsl:when>
864 <xsl:when test="$type='$unknown'">
865 <xsl:value-of select="concat('createOrFindRefFromComPtr(idThis, g_pcszIUnknown, ', $varname, ')')" />
866 </xsl:when>
867 <xsl:when test="//interface[@name=$type]">
868 <!-- the type is one of our own interfaces: then it must have a wsmap attr -->
869 <xsl:variable name="thatif" select="//interface[@name=$type]" />
870 <xsl:variable name="wsmap" select="$thatif/@wsmap" />
871 <xsl:variable name="thatifname" select="$thatif/@name" />
872 <xsl:choose>
873 <xsl:when test=" ($wsmap='managed') or ($wsmap='global')">
874 <xsl:value-of select="concat('createOrFindRefFromComPtr(idThis, g_pcsz', $thatifname, ', ', $varname, ')')" />
875 </xsl:when>
876 <xsl:when test="$wsmap='struct'">
877 <!-- prevent infinite recursion -->
878 <!-- <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> -->
879 <xsl:if test="not($callerprefix)">
880 <xsl:value-of select="concat('/* convert COM interface to struct */ ', $G_funcPrefixOutputEnumConverter, $type, '(soap, idThis, rc, ', $varname, ')')" />
881 </xsl:if>
882 </xsl:when>
883 <xsl:otherwise>
884 <xsl:call-template name="fatalError">
885 <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.')" />
886 </xsl:call-template>
887 </xsl:otherwise>
888 </xsl:choose>
889 </xsl:when>
890 <xsl:when test="//collection[@name=$type]">
891 <!-- the type is a collection of our own types: then build an array from it -->
892 <xsl:variable name="collectiontype" select="//collection[@name=$type]/@type" />
893 <xsl:variable name="targetwsmap" select="//interface[@name=$collectiontype]/@wsmap" />
894 <xsl:value-of select="concat('soap_new_vbox__ArrayOf', $collectiontype, '(soap, -1);')" />
895 <xsl:call-template name="emitNewlineIndent8" />
896 <xsl:variable name="enumerator" select="concat('comcall_', $callerprefix, $name, '_enum')" />
897 <xsl:value-of select="concat('ComPtr&lt;', $collectiontype, 'Enumerator&gt; ', $enumerator, ';')" />
898 <xsl:call-template name="emitNewlineIndent8" />
899 <xsl:value-of select="concat('CHECK_ERROR_BREAK( comcall_', $callerprefix, $name, ', Enumerate(', $enumerator, '.asOutParam()) );')" />
900 <xsl:call-template name="emitNewlineIndent8" />
901 <xsl:value-of select="concat('BOOL comcall_', $callerprefix, $name, '_hasmore = FALSE;')" />
902 <xsl:call-template name="emitNewlineIndent8" />
903 <xsl:value-of select="'do {'" />
904 <xsl:call-template name="emitNewlineIndent8" />
905 <xsl:value-of select="concat(' CHECK_ERROR_BREAK( ', $enumerator, ', HasMore(&amp;comcall_', $callerprefix, $name, '_hasmore) );')" />
906 <xsl:call-template name="emitNewlineIndent8" />
907 <xsl:value-of select="concat(' if (!comcall_', $callerprefix, $name, '_hasmore) break;')" />
908 <xsl:call-template name="emitNewlineIndent8" />
909 <xsl:value-of select="concat(' ComPtr&lt;', $collectiontype, '&gt; arrayitem;')" />
910 <xsl:call-template name="emitNewlineIndent8" />
911 <xsl:value-of select="concat(' CHECK_ERROR_BREAK( ', $enumerator, ', GetNext(arrayitem.asOutParam()) );')" />
912 <xsl:call-template name="emitNewlineIndent8" />
913 <xsl:value-of select="concat(' // collection of &quot;', $collectiontype, '&quot;, target interface wsmap: &quot;', $targetwsmap, '&quot;')" />
914 <xsl:call-template name="emitNewlineIndent8" />
915 <xsl:value-of select="concat(' ', $G_responseElementVarName, '-&gt;', $G_result)" />
916 <xsl:value-of select="'->array.push_back('" />
917 <xsl:choose>
918 <xsl:when test="($targetwsmap='managed')">
919 <xsl:value-of select="concat('createOrFindRefFromComPtr(idThis, g_pcsz', $collectiontype, ', arrayitem));')" />
920 </xsl:when>
921 <xsl:when test="$targetwsmap='struct'">
922 <xsl:value-of select="concat($G_funcPrefixOutputEnumConverter, $collectiontype, '(soap, idThis, rc, arrayitem));')" />
923 </xsl:when>
924 <xsl:otherwise>
925 <xsl:call-template name="fatalError">
926 <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;.')" />
927 </xsl:call-template>
928 </xsl:otherwise>
929 </xsl:choose>
930 <xsl:call-template name="emitNewlineIndent8" />
931 <xsl:value-of select="'} while (1)'" />
932 </xsl:when>
933 <xsl:otherwise>
934 <xsl:call-template name="fatalError">
935 <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.')" />
936 </xsl:call-template>
937 </xsl:otherwise>
938 </xsl:choose>
939
940</xsl:template>
941
942<!--
943 emitOutputArgBackConverter:
944 another type converter (from COM type back to WSDL)
945 which converts the output argument from the COM
946 method call back to the WSDL type passed in by the
947 caller.
948-->
949<xsl:template name="emitOutputArgBackConverter">
950 <xsl:param name="ifname" />
951 <xsl:param name="method" />
952 <xsl:param name="name" />
953 <xsl:param name="type" />
954 <xsl:param name="safearray" />
955 <xsl:param name="varprefix" /> <!-- only when called recursively from emitGetAttributeComCall -->
956 <xsl:param name="callerprefix" /> <!-- only for out params or when called recursively from emitGetAttributeComCall -->
957
958 <xsl:variable name="topname" select="$name" />
959 <xsl:variable name="varname" select="concat('comcall_', $varprefix, $name)" />
960
961 <xsl:call-template name="emitNewlineIndent8" />
962 <xsl:value-of select="concat('WEBDEBUG((g_pcszConvertComOutputBack, &quot;', $name, '&quot;));')" />
963 <xsl:call-template name="emitNewlineIndent8" />
964
965 <xsl:variable name="receiverVariable">
966 <xsl:choose>
967 <xsl:when test="(not($varprefix))">
968 <xsl:choose>
969 <xsl:when test="$callerprefix"> <!-- callerprefix set but varprefix not: then this is an out parameter :-) -->
970 <xsl:value-of select="concat($G_responseElementVarName, '-&gt;', $name)" />
971 </xsl:when>
972 <xsl:otherwise>
973 <xsl:value-of select="concat($G_responseElementVarName, '-&gt;', $G_result)" />
974 </xsl:otherwise>
975 </xsl:choose>
976 </xsl:when>
977 <xsl:otherwise>
978 <xsl:value-of select="concat($callerprefix, $G_result, '-&gt;', $name)" />
979 </xsl:otherwise>
980 </xsl:choose>
981 </xsl:variable>
982
983 <xsl:choose>
984 <xsl:when test="$safearray='yes'">
985 <xsl:value-of select="concat('for (size_t i = 0; i &lt; ', $varname, '.size(); ++i)')" />
986 <xsl:call-template name="emitNewlineIndent8" />
987 <xsl:value-of select="'{'" />
988 <xsl:call-template name="emitNewlineIndent8" />
989 <!-- look up C++ glue type from IDL type from table array in websrv-shared.inc.xsl -->
990 <xsl:variable name="gluetypefield" select="exsl:node-set($G_aSharedTypes)/type[@idlname=$type]/@gluename" />
991 <xsl:choose>
992 <xsl:when test="//interface[@name=$type]">
993 <xsl:value-of select="concat(' ComPtr&lt;', $type, '&gt; tmpObject(', $varname, '[i]);')" />
994 </xsl:when>
995 <xsl:when test="//enum[@name=$type]">
996 <xsl:value-of select="concat(' ', $type, '_T tmpObject(', $varname, '[i]);')" />
997 </xsl:when>
998 <xsl:when test="$type='$unknown'">
999 <xsl:value-of select="concat(' ComPtr&lt;IUnknown&gt; tmpObject(', $varname, '[i]);')" />
1000 </xsl:when>
1001 <xsl:when test="$type='wstring' or $type='uuid'">
1002 <xsl:value-of select="concat(' com::Bstr tmpObject(', $varname, '[i]);')" />
1003 </xsl:when>
1004 <xsl:when test="$gluetypefield">
1005 <xsl:value-of select="concat(' ', $gluetypefield, ' tmpObject(', $varname, '[i]);')" />
1006 </xsl:when>
1007 <xsl:otherwise>
1008 <xsl:call-template name="fatalError">
1009 <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.')" />
1010 </xsl:call-template>
1011
1012 </xsl:otherwise>
1013 </xsl:choose>
1014 <xsl:call-template name="emitNewlineIndent8" />
1015 <xsl:value-of select="concat(' ', $receiverVariable, '.push_back(')" />
1016 <xsl:call-template name="emitOutputArgBackConverter2">
1017 <xsl:with-param name="name" select="$name"/>
1018 <xsl:with-param name="varname" select="'tmpObject'"/>
1019 <xsl:with-param name="type" select="$type"/>
1020 <xsl:with-param name="callerprefix" select="$callerprefix"/>
1021 </xsl:call-template>
1022 <xsl:value-of select="');'" />
1023 <xsl:call-template name="emitNewlineIndent8" />
1024 <xsl:value-of select="'}'" />
1025 <xsl:call-template name="emitNewline" />
1026 </xsl:when>
1027 <xsl:otherwise>
1028 <!-- emit variable name: "resp->retval = " -->
1029 <xsl:value-of select="$receiverVariable" />
1030
1031 <xsl:value-of select="' = '" />
1032 <xsl:call-template name="emitOutputArgBackConverter2">
1033 <xsl:with-param name="name" select="$name"/>
1034 <xsl:with-param name="varname" select="$varname"/>
1035 <xsl:with-param name="type" select="$type"/>
1036 <xsl:with-param name="callerprefix" select="$callerprefix"/>
1037 </xsl:call-template>
1038 <xsl:value-of select="';'" />
1039 <xsl:call-template name="emitNewline" />
1040
1041 </xsl:otherwise>
1042 </xsl:choose>
1043
1044 <xsl:value-of select="concat(' WEBDEBUG((g_pcszDoneConvertingComOutputBack, &quot;', $name, '&quot;));')" />
1045 <xsl:call-template name="emitNewline" />
1046</xsl:template>
1047
1048<!--
1049 emitGetAttributeComCall
1050 -->
1051<xsl:template name="emitGetAttributeComCall">
1052 <xsl:param name="ifname" />
1053 <xsl:param name="object" /> <!-- normally "pObj->" -->
1054 <xsl:param name="attrname" />
1055 <xsl:param name="attrtype" />
1056 <xsl:param name="attrsafearray" />
1057 <xsl:param name="varprefix" /> <!-- only when called recursively from emitOutputArgBackConverter-->
1058 <xsl:param name="callerprefix" /> <!-- only when called recursively from emitOutputArgBackConverter-->
1059
1060 <xsl:variable name="gettername"><xsl:call-template name="makeGetterName"><xsl:with-param name="attrname" select="$attrname" /></xsl:call-template></xsl:variable>
1061 <xsl:call-template name="emitOutputArgBuffer">
1062 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1063 <xsl:with-param name="method"><xsl:value-of select="$gettername" /></xsl:with-param>
1064 <xsl:with-param name="name" select="$attrname" />
1065 <xsl:with-param name="type" select="$attrtype" />
1066 <xsl:with-param name="safearray" select="$attrsafearray" />
1067 <xsl:with-param name="varprefix" select="$varprefix" />
1068 </xsl:call-template>
1069 <xsl:variable name="upperattrname"><xsl:call-template name="capitalize"><xsl:with-param name="str" select="$attrname" /></xsl:call-template></xsl:variable>
1070 <!-- actual COM method call -->
1071 <xsl:call-template name="emitComCall">
1072 <xsl:with-param name="methodname" select="concat('COMGETTER(', $upperattrname, ')')" />
1073 <xsl:with-param name="object" select="$object" />
1074 <xsl:with-param name="attrname" select="$attrname" />
1075 <xsl:with-param name="attrtype" select="$attrtype" />
1076 <xsl:with-param name="attrsafearray" select="$attrsafearray" />
1077 <xsl:with-param name="attrdir" select="'return'" />
1078 <xsl:with-param name="varprefix" select="$varprefix" />
1079 </xsl:call-template>
1080 <!-- convert back the output data -->
1081 <xsl:call-template name="emitOutputArgBackConverter">
1082 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1083 <xsl:with-param name="method"><xsl:value-of select="$gettername" /></xsl:with-param>
1084 <xsl:with-param name="name" select="$attrname" />
1085 <xsl:with-param name="type" select="$attrtype" />
1086 <xsl:with-param name="safearray" select="$attrsafearray" />
1087 <xsl:with-param name="varprefix" select="$varprefix" />
1088 <xsl:with-param name="callerprefix" select="$callerprefix" />
1089 </xsl:call-template>
1090</xsl:template>
1091
1092<!--
1093 emitSetAttributeComCall
1094 -->
1095<xsl:template name="emitSetAttributeComCall">
1096 <xsl:param name="ifname" />
1097 <xsl:param name="object" /> <!-- normally "pObj->" -->
1098 <xsl:param name="attrname" />
1099 <xsl:param name="attrtype" />
1100 <xsl:param name="attrsafearray" />
1101 <xsl:param name="callerprefix" /> <!-- only when called recursively from emitOutputArgBackConverter-->
1102
1103 <xsl:variable name="settername"><xsl:call-template name="makeSetterName"><xsl:with-param name="attrname" select="$attrname" /></xsl:call-template></xsl:variable>
1104 <xsl:variable name="upperattrname"><xsl:call-template name="capitalize"><xsl:with-param name="str" select="$attrname" /></xsl:call-template></xsl:variable>
1105
1106 <xsl:call-template name="emitInputArgConverter">
1107 <xsl:with-param name="method" select="concat($ifname, '::', $settername)" />
1108 <xsl:with-param name="name" select="$attrname" />
1109 <xsl:with-param name="structprefix" select="concat($G_requestElementVarName, '-&gt;')" />
1110 <xsl:with-param name="type" select="$attrtype" />
1111 <xsl:with-param name="safearray" select="$attrsafearray" />
1112 </xsl:call-template>
1113 <xsl:call-template name="emitComCall">
1114 <xsl:with-param name="methodname" select="concat('COMSETTER(', $upperattrname, ')')" />
1115 <xsl:with-param name="object" select="$object" />
1116 <xsl:with-param name="attrname" select="$attrname" />
1117 <xsl:with-param name="attrtype" select="$attrtype" />
1118 <xsl:with-param name="attrsafearray" select="$attrsafearray" />
1119 <xsl:with-param name="attrdir" select="'in'" />
1120 </xsl:call-template>
1121</xsl:template>
1122
1123<!--
1124 emitGetAttributeMapper
1125 -->
1126<xsl:template name="emitGetAttributeMapper">
1127 <xsl:param name="ifname" />
1128 <xsl:param name="wsmap" />
1129 <xsl:param name="attrname" />
1130 <xsl:param name="attrtype" />
1131 <xsl:param name="attrreadonly" />
1132 <xsl:param name="attrsafearray" />
1133
1134 <xsl:variable name="gettername"><xsl:call-template name="makeGetterName"><xsl:with-param name="attrname" select="$attrname" /></xsl:call-template></xsl:variable>
1135
1136 <xsl:call-template name="emitBeginOfFunctionHeader">
1137 <xsl:with-param name="ifname" select="$ifname" />
1138 <xsl:with-param name="method" select="$gettername" />
1139 </xsl:call-template>
1140
1141 <xsl:call-template name="emitDocumentStyleArgStructs">
1142 <xsl:with-param name="ifname" select="$ifname" />
1143 <xsl:with-param name="methodname" select="$gettername" />
1144 <xsl:with-param name="fOutputs" select="$attrtype" />
1145 </xsl:call-template>
1146
1147 <xsl:text>)</xsl:text>
1148 <xsl:call-template name="emitNewline" />
1149 <xsl:text>{</xsl:text>
1150 <xsl:call-template name="emitNewline" />
1151
1152 <xsl:value-of select="' HRESULT rc = S_OK;'" />
1153 <xsl:call-template name="emitNewline" />
1154
1155 <xsl:call-template name="emitPrologue" />
1156
1157 <!-- actual COM method call -->
1158 <!-- <xsl:choose>
1159 array attributes/parameters are not supported yet...
1160 <xsl:when test="@array or @safearray='yes'">
1161 <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>
1162 </xsl:when>
1163 <xsl:otherwise> -->
1164 <xsl:call-template name="emitObjForMethod">
1165 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1166 <xsl:with-param name="wsmap"><xsl:value-of select="$wsmap" /></xsl:with-param>
1167 <xsl:with-param name="structprefix" select="concat($G_requestElementVarName, '-&gt;')" />
1168 </xsl:call-template>
1169
1170 <xsl:call-template name="emitGetAttributeComCall">
1171 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1172 <xsl:with-param name="object" select='"pObj"' />
1173 <xsl:with-param name="attrname"><xsl:value-of select="$attrname" /></xsl:with-param>
1174 <xsl:with-param name="attrtype"><xsl:value-of select="$attrtype" /></xsl:with-param>
1175 <xsl:with-param name="attrsafearray"><xsl:value-of select="$attrsafearray" /></xsl:with-param>
1176 </xsl:call-template>
1177 <!-- </xsl:otherwise>
1178 </xsl:choose> -->
1179
1180 <xsl:call-template name="emitEpilogue" />
1181</xsl:template>
1182
1183<!--
1184 emitSetAttributeMapper:
1185 -->
1186<xsl:template name="emitSetAttributeMapper">
1187 <xsl:param name="ifname" select="$ifname" />
1188 <xsl:param name="wsmap" select="$wsmap" />
1189 <xsl:param name="attrname" select="$attrname" />
1190 <xsl:param name="attrtype" select="$attrtype" />
1191 <xsl:param name="attrreadonly" select="$attrreadonly" />
1192
1193 <xsl:variable name="settername"><xsl:call-template name="makeSetterName"><xsl:with-param name="attrname" select="$attrname" /></xsl:call-template></xsl:variable>
1194
1195 <xsl:call-template name="emitBeginOfFunctionHeader">
1196 <xsl:with-param name="ifname" select="$ifname" />
1197 <xsl:with-param name="method" select="$settername" />
1198 </xsl:call-template>
1199
1200 <xsl:call-template name="emitDocumentStyleArgStructs">
1201 <xsl:with-param name="ifname" select="$ifname" />
1202 <xsl:with-param name="methodname" select="$settername" />
1203 <xsl:with-param name="fOutputs" select="1" />
1204 </xsl:call-template>
1205
1206 <xsl:text>)</xsl:text>
1207 <xsl:call-template name="emitNewline" />
1208 <xsl:text>{</xsl:text>
1209 <xsl:call-template name="emitNewline" />
1210 <xsl:value-of select="' HRESULT rc = S_OK;'" />
1211 <xsl:call-template name="emitNewline" />
1212 <xsl:call-template name="emitPrologue" />
1213
1214 <!-- actual COM method call -->
1215 <!-- <xsl:choose>
1216 array attributes/parameters are not supported yet...
1217 <xsl:when test="@array or @safearray='yes'">
1218 <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>
1219 </xsl:when>
1220 <xsl:otherwise> -->
1221 <xsl:call-template name="emitObjForMethod">
1222 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1223 <xsl:with-param name="wsmap"><xsl:value-of select="$wsmap" /></xsl:with-param>
1224 <xsl:with-param name="structprefix" select="concat($G_requestElementVarName, '-&gt;')" />
1225 </xsl:call-template>
1226 <xsl:call-template name="emitSetAttributeComCall">
1227 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1228 <xsl:with-param name="object" select='"pObj"' />
1229 <xsl:with-param name="attrname"><xsl:value-of select="$attrname" /></xsl:with-param>
1230 <xsl:with-param name="attrtype"><xsl:value-of select="$attrtype" /></xsl:with-param>
1231 </xsl:call-template>
1232 <!-- </xsl:otherwise>
1233 </xsl:choose> -->
1234
1235 <xsl:call-template name="emitEpilogue" />
1236</xsl:template>
1237
1238<!-- - - - - - - - - - - - - - - - - - - - - - -
1239 interface
1240 - - - - - - - - - - - - - - - - - - - - - - -->
1241
1242<xsl:template match="interface">
1243 <!-- remember the interface name in local variables -->
1244 <xsl:variable name="ifname"><xsl:value-of select="@name" /></xsl:variable>
1245 <xsl:variable name="wsmap"><xsl:value-of select="@wsmap" /></xsl:variable>
1246 <xsl:variable name="wscpp"><xsl:value-of select="@wscpp" /></xsl:variable>
1247
1248 <!-- we can save ourselves verifying the interface here as it's already
1249 done in the WSDL converter -->
1250
1251 <xsl:if test='not( ($wsmap="suppress") or ($wsmap="struct") or ($wscpp="hardcoded") )'>
1252 <xsl:text>
1253/****************************************************************************
1254 *
1255 * interface </xsl:text>
1256<xsl:copy-of select="$ifname" />
1257<xsl:text>
1258 *
1259 ****************************************************************************/
1260</xsl:text>
1261
1262 <!--
1263 here come the attributes
1264 -->
1265 <xsl:for-each select="attribute">
1266 <xsl:variable name="attrname"><xsl:value-of select="@name" /></xsl:variable>
1267 <xsl:variable name="attrtype"><xsl:value-of select="@type" /></xsl:variable>
1268 <xsl:variable name="attrreadonly"><xsl:value-of select="@readonly" /></xsl:variable>
1269 <xsl:variable name="attrsafearray"><xsl:value-of select="@safearray" /></xsl:variable>
1270 <xsl:call-template name="emitNewline" />
1271 <!-- skip this attribute if it has parameters of a type that has wsmap="suppress" -->
1272 <xsl:choose>
1273 <xsl:when test="( $attrtype=($G_setSuppressedInterfaces/@name) )">
1274 <xsl:value-of select="concat('// Skipping attribute ', $attrtype, ' for it is of suppressed type ', $attrtype)" />
1275 </xsl:when>
1276 <xsl:otherwise>
1277 <xsl:choose>
1278 <xsl:when test="@readonly='yes'">
1279 <xsl:value-of select="concat('// read-only attribute ', $ifname, '::', $attrname, ' of type ', $attrtype)" />
1280 </xsl:when>
1281 <xsl:otherwise>
1282 <xsl:value-of select="concat('// read/write attribute ', $ifname, '::', $attrname, ' of type ', $attrtype)" />
1283 </xsl:otherwise>
1284 </xsl:choose>
1285 <xsl:value-of select="concat(' (safearray: ', $attrsafearray, ')')" />
1286 <!-- emit getter method -->
1287 <xsl:call-template name="emitGetAttributeMapper">
1288 <xsl:with-param name="ifname" select="$ifname" />
1289 <xsl:with-param name="wsmap" select="$wsmap" />
1290 <xsl:with-param name="attrname" select="$attrname" />
1291 <xsl:with-param name="attrtype" select="$attrtype" />
1292 <xsl:with-param name="attrreadonly" select="$attrreadonly" />
1293 <xsl:with-param name="attrsafearray" select="$attrsafearray" />
1294 </xsl:call-template>
1295 <!-- for read-write attributes, emit setter method -->
1296 <xsl:if test="not(@readonly='yes')">
1297 <xsl:call-template name="emitSetAttributeMapper">
1298 <xsl:with-param name="ifname" select="$ifname" />
1299 <xsl:with-param name="wsmap" select="$wsmap" />
1300 <xsl:with-param name="attrname" select="$attrname" />
1301 <xsl:with-param name="attrtype" select="$attrtype" />
1302 <xsl:with-param name="attrreadonly" select="$attrreadonly" />
1303 </xsl:call-template>
1304 </xsl:if>
1305 </xsl:otherwise> <!-- not wsmap=suppress -->
1306 </xsl:choose>
1307 </xsl:for-each>
1308
1309 <!--
1310 here come the real methods
1311 -->
1312
1313 <xsl:for-each select="method">
1314 <xsl:variable name="methodname"><xsl:value-of select="@name" /></xsl:variable>
1315 <!-- method header: return value "int", method name, soap arguments -->
1316 <!-- skip this method if it has parameters of a type that has wsmap="suppress" -->
1317 <xsl:choose>
1318 <xsl:when test=" (param[@type=($G_setSuppressedInterfaces/@name)])
1319 or (param[@mod='ptr'])" >
1320 <xsl:comment><xsl:value-of select="concat('Skipping method ', $methodname, ' for it has parameters with suppressed types')" /></xsl:comment>
1321 </xsl:when>
1322 <xsl:otherwise>
1323 <xsl:variable name="fHasReturnParms" select="param[@dir='return']" />
1324 <xsl:variable name="fHasOutParms" select="param[@dir='out']" />
1325
1326 <xsl:call-template name="emitNewline" />
1327 <xsl:value-of select="concat('/* method ', $ifname, '::', $methodname, '(')" />
1328 <xsl:for-each select="param">
1329 <xsl:call-template name="emitNewline" />
1330 <xsl:value-of select="concat(' [', @dir, '] ', @type, ' ', @name)" />
1331 <xsl:if test="@safearray='yes'">
1332 <xsl:text>[]</xsl:text>
1333 </xsl:if>
1334 <xsl:if test="not(position()=last())">
1335 <xsl:text>,</xsl:text>
1336 </xsl:if>
1337 </xsl:for-each>
1338 <xsl:text>)</xsl:text>
1339 <xsl:call-template name="emitNewline" />
1340 <xsl:text> */</xsl:text>
1341
1342 <xsl:call-template name="emitBeginOfFunctionHeader">
1343 <xsl:with-param name="ifname" select="$ifname" />
1344 <xsl:with-param name="method" select="$methodname" />
1345 </xsl:call-template>
1346
1347 <xsl:call-template name="emitDocumentStyleArgStructs">
1348 <xsl:with-param name="ifname" select="$ifname" />
1349 <xsl:with-param name="methodname" select="$methodname" />
1350 <xsl:with-param name="fOutputs" select="1" />
1351 </xsl:call-template>
1352 <xsl:text>)</xsl:text>
1353 <xsl:call-template name="emitNewline" />
1354 <xsl:text>{</xsl:text>
1355 <xsl:call-template name="emitNewline" />
1356 <xsl:value-of select="' HRESULT rc = S_OK;'" />
1357 <xsl:call-template name="emitNewline" />
1358 <xsl:call-template name="emitPrologue" />
1359
1360 <xsl:choose>
1361 <xsl:when test="param[@array]">
1362 <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>
1363 </xsl:when>
1364 <xsl:otherwise>
1365 <!-- emit the object upon which to invoke the method -->
1366 <xsl:call-template name="emitObjForMethod">
1367 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1368 <xsl:with-param name="wsmap"><xsl:value-of select="$wsmap" /></xsl:with-param>
1369 <xsl:with-param name="structprefix" select="concat($G_requestElementVarName, '-&gt;')" />
1370 </xsl:call-template>
1371 <!-- next, emit storage variables to convert the SOAP/C++ arguments to COM types -->
1372 <xsl:for-each select="param">
1373 <xsl:variable name="dir" select="@dir" />
1374 <xsl:choose>
1375 <xsl:when test="$dir='in'">
1376 <xsl:call-template name="emitInputArgConverter">
1377 <xsl:with-param name="method" select="concat($ifname, '::', $methodname)" />
1378 <xsl:with-param name="structprefix" select="concat($G_requestElementVarName, '-&gt;')" />
1379 <xsl:with-param name="name" select="@name" />
1380 <xsl:with-param name="type" select="@type" />
1381 <xsl:with-param name="safearray" select="@safearray" />
1382 </xsl:call-template>
1383 </xsl:when>
1384 <xsl:when test="$dir='out'">
1385 <xsl:call-template name="emitOutputArgBuffer">
1386 <xsl:with-param name="method" select="concat($ifname, '::', $methodname)" />
1387 <xsl:with-param name="name" select="@name" />
1388 <xsl:with-param name="type" select="@type" />
1389 <xsl:with-param name="safearray" select="@safearray" />
1390 </xsl:call-template>
1391 </xsl:when>
1392 <xsl:when test="$dir='return'">
1393 <xsl:call-template name="emitOutputArgBuffer">
1394 <xsl:with-param name="method" select="concat($ifname, '::', $methodname)" />
1395 <xsl:with-param name="name" select="$G_result" />
1396 <xsl:with-param name="type" select="@type" />
1397 <xsl:with-param name="safearray" select="@safearray" />
1398 </xsl:call-template>
1399 </xsl:when>
1400 </xsl:choose>
1401 </xsl:for-each>
1402 <!-- actual COM method call -->
1403 <xsl:call-template name="emitComCall">
1404 <xsl:with-param name="object" select='"pObj"' />
1405 <xsl:with-param name="methodname">
1406 <xsl:call-template name="capitalize">
1407 <xsl:with-param name="str" select="$methodname" />
1408 </xsl:call-template>
1409 </xsl:with-param>
1410 </xsl:call-template>
1411 <!-- convert back the output data -->
1412 <xsl:for-each select="param">
1413 <xsl:variable name="dir" select="@dir" />
1414 <xsl:if test="$dir='out'">
1415 <xsl:call-template name="emitOutputArgBackConverter">
1416 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1417 <xsl:with-param name="method" select="$methodname" />
1418 <xsl:with-param name="name"><xsl:value-of select="@name" /></xsl:with-param>
1419 <xsl:with-param name="type"><xsl:value-of select="@type" /></xsl:with-param>
1420 <xsl:with-param name="safearray"><xsl:value-of select="@safearray" /></xsl:with-param>
1421 <xsl:with-param name="callerprefix" select="'outparms.'"/>
1422 </xsl:call-template>
1423 </xsl:if>
1424 <xsl:if test="$dir='return'">
1425 <!-- return values _normally_ should convert to the input arg from the function prototype,
1426 except when there are both return and out params; in that case gsoap squeezes them all
1427 into the output args structure and the return thing is called "retval" -->
1428 <xsl:choose>
1429 <xsl:when test="$fHasOutParms">
1430 <xsl:call-template name="emitOutputArgBackConverter">
1431 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1432 <xsl:with-param name="method" select="$methodname" />
1433 <xsl:with-param name="name"><xsl:value-of select="$G_result" /></xsl:with-param>
1434 <xsl:with-param name="type"><xsl:value-of select="@type" /></xsl:with-param>
1435 <xsl:with-param name="safearray"><xsl:value-of select="@safearray" /></xsl:with-param>
1436 <xsl:with-param name="callerprefix" select="'outparms.'"/>
1437 </xsl:call-template>
1438 </xsl:when>
1439 <xsl:otherwise>
1440 <xsl:call-template name="emitOutputArgBackConverter">
1441 <xsl:with-param name="ifname"><xsl:value-of select="$ifname" /></xsl:with-param>
1442 <xsl:with-param name="method" select="$methodname" />
1443 <xsl:with-param name="name"><xsl:value-of select="$G_result" /></xsl:with-param>
1444 <xsl:with-param name="type"><xsl:value-of select="@type" /></xsl:with-param>
1445 <xsl:with-param name="safearray"><xsl:value-of select="@safearray" /></xsl:with-param>
1446 </xsl:call-template>
1447 </xsl:otherwise>
1448 </xsl:choose>
1449 </xsl:if>
1450 </xsl:for-each>
1451 </xsl:otherwise>
1452 </xsl:choose>
1453 <xsl:call-template name="emitEpilogue" />
1454 </xsl:otherwise>
1455 </xsl:choose>
1456 </xsl:for-each>
1457 </xsl:if>
1458
1459</xsl:template>
1460
1461
1462</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.

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