VirtualBox

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

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

Webservice: back out r63195

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