VirtualBox

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

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

Main: rework new implementation of Machine::Unregister() and Machine::Delete() to be more flexible and still easy to use

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