VirtualBox

source: vbox/trunk/src/VBox/Main/idl/xpidl.xsl@ 55909

Last change on this file since 55909 was 53939, checked in by vboxsync, 10 years ago

shared uppercase template.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 35.4 KB
Line 
1<?xml version="1.0"?>
2<!-- $Id: xpidl.xsl 53939 2015-01-22 21:01:09Z vboxsync $ -->
3
4<!--
5 * A template to generate a XPCOM IDL compatible interface definition file
6 * from the generic interface definition expressed in XML.
7
8 Copyright (C) 2006-2014 Oracle Corporation
9
10 This file is part of VirtualBox Open Source Edition (OSE), as
11 available from http://www.virtualbox.org. This file is free software;
12 you can redistribute it and/or modify it under the terms of the GNU
13 General Public License (GPL) as published by the Free Software
14 Foundation, in version 2 as it comes in the "COPYING" file of the
15 VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17-->
18
19<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
20<xsl:output method="text"/>
21
22<xsl:strip-space elements="*"/>
23
24<xsl:include href="typemap-shared.inc.xsl"/>
25
26<!--
27// templates
28/////////////////////////////////////////////////////////////////////////////
29-->
30
31
32<!--
33 * not explicitly matched elements and attributes
34-->
35<xsl:template match="*"/>
36
37
38<!--
39 * header
40-->
41<xsl:template match="/idl">
42 <xsl:text>
43/*
44 * DO NOT EDIT! This is a generated file.
45 *
46 * XPCOM IDL (XPIDL) definition for VirtualBox Main API (COM interfaces)
47 * generated from XIDL (XML interface definition).
48 *
49 * Source : src/VBox/Main/idl/VirtualBox.xidl
50 * Generator : src/VBox/Main/idl/xpidl.xsl
51 */
52
53#include "nsISupports.idl"
54#include "nsIException.idl"
55
56</xsl:text>
57 <!-- native typedefs for the 'mod="ptr"' attribute -->
58 <xsl:text>
59[ptr] native booleanPtr (PRBool);
60[ptr] native octetPtr (PRUint8);
61[ptr] native shortPtr (PRInt16);
62[ptr] native ushortPtr (PRUint16);
63[ptr] native longPtr (PRInt32);
64[ptr] native llongPtr (PRInt64);
65[ptr] native ulongPtr (PRUint32);
66[ptr] native ullongPtr (PRUint64);
67<!-- charPtr is already defined in nsrootidl.idl -->
68<!-- [ptr] native charPtr (char) -->
69[ptr] native stringPtr (string);
70[ptr] native wcharPtr (wchar);
71[ptr] native wstringPtr (wstring);
72
73</xsl:text>
74 <xsl:apply-templates/>
75</xsl:template>
76
77
78<!--
79 * ignore all |if|s except those for XPIDL target
80-->
81<xsl:template match="if">
82 <xsl:if test="@target='xpidl'">
83 <xsl:apply-templates/>
84 </xsl:if>
85</xsl:template>
86<xsl:template match="if" mode="forward">
87 <xsl:if test="@target='xpidl'">
88 <xsl:apply-templates mode="forward"/>
89 </xsl:if>
90</xsl:template>
91<xsl:template match="if" mode="forwarder">
92 <xsl:if test="@target='midl'">
93 <xsl:apply-templates mode="forwarder"/>
94 </xsl:if>
95</xsl:template>
96
97
98<!--
99 * cpp_quote
100-->
101<xsl:template match="cpp">
102 <xsl:if test="text()">
103 <xsl:text>%{C++</xsl:text>
104 <xsl:value-of select="text()"/>
105 <xsl:text>&#x0A;%}&#x0A;&#x0A;</xsl:text>
106 </xsl:if>
107 <xsl:if test="not(text()) and @line">
108 <xsl:text>%{C++&#x0A;</xsl:text>
109 <xsl:value-of select="@line"/>
110 <xsl:text>&#x0A;%}&#x0A;&#x0A;</xsl:text>
111 </xsl:if>
112</xsl:template>
113
114
115<!--
116 * #if statement (@if attribute)
117 * @note
118 * xpidl doesn't support any preprocessor defines other than #include
119 * (it just ignores them), so the generated IDL will most likely be
120 * invalid. So for now we forbid using @if attributes
121-->
122<xsl:template match="@if" mode="begin">
123 <xsl:message terminate="yes">
124 @if attributes are not currently allowed because xpidl lacks
125 support for #ifdef and stuff.
126 </xsl:message>
127 <xsl:text>#if </xsl:text>
128 <xsl:value-of select="."/>
129 <xsl:text>&#x0A;</xsl:text>
130</xsl:template>
131<xsl:template match="@if" mode="end">
132 <xsl:text>#endif&#x0A;</xsl:text>
133</xsl:template>
134
135
136<!--
137 * libraries
138-->
139<xsl:template match="library">
140 <xsl:text>%{C++&#x0A;</xsl:text>
141 <xsl:text>#ifndef VBOX_EXTERN_C&#x0A;</xsl:text>
142 <xsl:text># ifdef __cplusplus&#x0A;</xsl:text>
143 <xsl:text># define VBOX_EXTERN_C extern "C"&#x0A;</xsl:text>
144 <xsl:text># else // !__cplusplus&#x0A;</xsl:text>
145 <xsl:text># define VBOX_EXTERN_C extern&#x0A;</xsl:text>
146 <xsl:text># endif // !__cplusplus&#x0A;</xsl:text>
147 <xsl:text>#endif // !VBOX_EXTERN_C&#x0A;</xsl:text>
148 <!-- result codes -->
149 <xsl:text>// result codes declared in API spec&#x0A;</xsl:text>
150 <xsl:for-each select="result">
151 <xsl:apply-templates select="."/>
152 </xsl:for-each>
153 <xsl:text>%}&#x0A;&#x0A;</xsl:text>
154 <!-- forward declarations -->
155 <xsl:apply-templates select="if | interface" mode="forward"/>
156 <xsl:text>&#x0A;</xsl:text>
157 <!-- all enums go first -->
158 <xsl:apply-templates select="enum | if/enum"/>
159 <!-- everything else but result codes and enums -->
160 <xsl:apply-templates select="*[not(self::result or self::enum) and
161 not(self::if[result] or self::if[enum])]"/>
162 <!-- -->
163</xsl:template>
164
165
166<!--
167 * result codes
168-->
169<xsl:template match="result">
170 <xsl:value-of select="concat('#define ',@name,' ',@value)"/>
171 <xsl:text>&#x0A;</xsl:text>
172</xsl:template>
173
174
175<!--
176 * forward declarations
177-->
178<xsl:template match="interface" mode="forward">
179 <xsl:text>interface </xsl:text>
180 <xsl:value-of select="@name"/>
181 <xsl:text>;&#x0A;</xsl:text>
182</xsl:template>
183
184
185<!--
186 * interfaces
187-->
188<xsl:template match="interface">[
189 uuid(<xsl:value-of select="@uuid"/>),
190 scriptable
191]
192<xsl:text>interface </xsl:text>
193 <xsl:value-of select="@name"/>
194 <xsl:text> : </xsl:text>
195 <xsl:choose>
196 <xsl:when test="@extends='$unknown'">nsISupports</xsl:when>
197 <xsl:when test="@extends='$errorinfo'">nsIException</xsl:when>
198 <xsl:otherwise><xsl:value-of select="@extends"/></xsl:otherwise>
199 </xsl:choose>
200 <xsl:call-template name="xsltprocNewlineOutputHack"/>
201 <xsl:text>{&#x0A;</xsl:text>
202 <!-- attributes (properties) -->
203 <xsl:apply-templates select="attribute"/>
204 <!-- methods -->
205 <xsl:apply-templates select="method"/>
206 <!-- 'if' enclosed elements, unsorted -->
207 <xsl:apply-templates select="if"/>
208 <!-- -->
209 <xsl:text>}; /* interface </xsl:text>
210 <xsl:value-of select="@name"/>
211 <xsl:text> */&#x0A;&#x0A;</xsl:text>
212 <!-- Interface implementation forwarder macro -->
213 <xsl:text>/* Interface implementation forwarder macro */&#x0A;</xsl:text>
214 <xsl:text>%{C++&#x0A;</xsl:text>
215 <!-- 1) individual methods -->
216 <xsl:apply-templates select="attribute" mode="forwarder"/>
217 <xsl:apply-templates select="method" mode="forwarder"/>
218 <xsl:apply-templates select="if" mode="forwarder"/>
219 <!-- 2) COM_FORWARD_Interface_TO(smth) -->
220 <xsl:text>#define COM_FORWARD_</xsl:text>
221 <xsl:value-of select="@name"/>
222 <xsl:text>_TO(smth) NS_FORWARD_</xsl:text>
223 <xsl:call-template name="string-to-upper">
224 <xsl:with-param name="str" select="@name"/>
225 </xsl:call-template>
226 <xsl:text> (smth)&#x0A;</xsl:text>
227 <!-- 3) COM_FORWARD_Interface_TO_OBJ(obj) -->
228 <xsl:text>#define COM_FORWARD_</xsl:text>
229 <xsl:value-of select="@name"/>
230 <xsl:text>_TO_OBJ(obj) COM_FORWARD_</xsl:text>
231 <xsl:value-of select="@name"/>
232 <xsl:text>_TO ((obj)->)&#x0A;</xsl:text>
233 <!-- 4) COM_FORWARD_Interface_TO_BASE(base) -->
234 <xsl:text>#define COM_FORWARD_</xsl:text>
235 <xsl:value-of select="@name"/>
236 <xsl:text>_TO_BASE(base) COM_FORWARD_</xsl:text>
237 <xsl:value-of select="@name"/>
238 <xsl:text>_TO (base::)&#x0A;&#x0A;</xsl:text>
239 <!-- -->
240 <xsl:text>// for compatibility with Win32&#x0A;</xsl:text>
241 <xsl:text>VBOX_EXTERN_C const nsID IID_</xsl:text>
242 <xsl:value-of select="@name"/>
243 <xsl:text>;&#x0A;</xsl:text>
244 <xsl:text>%}&#x0A;&#x0A;</xsl:text>
245 <!-- end -->
246</xsl:template>
247
248
249<!--
250 * attributes
251-->
252<xsl:template match="interface//attribute">
253 <xsl:apply-templates select="@if" mode="begin"/>
254 <xsl:if test="@mod='ptr'">
255 <!-- attributes using native types must be non-scriptable -->
256 <xsl:text> [noscript]&#x0A;</xsl:text>
257 </xsl:if>
258 <xsl:choose>
259 <!-- safearray pseudo attribute -->
260 <xsl:when test="@safearray='yes'">
261 <!-- getter -->
262 <xsl:text> void get</xsl:text>
263 <xsl:call-template name="capitalize">
264 <xsl:with-param name="str" select="@name"/>
265 </xsl:call-template>
266 <xsl:text> (&#x0A;</xsl:text>
267 <!-- array size -->
268 <xsl:text> out unsigned long </xsl:text>
269 <xsl:value-of select="@name"/>
270 <xsl:text>Size,&#x0A;</xsl:text>
271 <!-- array pointer -->
272 <xsl:text> [array, size_is(</xsl:text>
273 <xsl:value-of select="@name"/>
274 <xsl:text>Size), retval] out </xsl:text>
275 <xsl:apply-templates select="@type"/>
276 <xsl:text> </xsl:text>
277 <xsl:value-of select="@name"/>
278 <xsl:text>&#x0A; );&#x0A;</xsl:text>
279 <!-- setter -->
280 <xsl:if test="not(@readonly='yes')">
281 <xsl:text> void set</xsl:text>
282 <xsl:call-template name="capitalize">
283 <xsl:with-param name="str" select="@name"/>
284 </xsl:call-template>
285 <xsl:text> (&#x0A;</xsl:text>
286 <!-- array size -->
287 <xsl:text> in unsigned long </xsl:text>
288 <xsl:value-of select="@name"/>
289 <xsl:text>Size,&#x0A;</xsl:text>
290 <!-- array pointer -->
291 <xsl:text> [array, size_is(</xsl:text>
292 <xsl:value-of select="@name"/>
293 <xsl:text>Size)] in </xsl:text>
294 <xsl:apply-templates select="@type"/>
295 <xsl:text> </xsl:text>
296 <xsl:value-of select="@name"/>
297 <xsl:text>&#x0A; );&#x0A;</xsl:text>
298 </xsl:if>
299 </xsl:when>
300 <!-- normal attribute -->
301 <xsl:otherwise>
302 <xsl:text> </xsl:text>
303 <xsl:if test="@readonly='yes'">
304 <xsl:text>readonly </xsl:text>
305 </xsl:if>
306 <xsl:text>attribute </xsl:text>
307 <xsl:apply-templates select="@type"/>
308 <xsl:text> </xsl:text>
309 <xsl:value-of select="@name"/>
310 <xsl:text>;&#x0A;</xsl:text>
311 </xsl:otherwise>
312 </xsl:choose>
313 <xsl:apply-templates select="@if" mode="end"/>
314 <xsl:text>&#x0A;</xsl:text>
315</xsl:template>
316
317<xsl:template match="interface//attribute" mode="forwarder">
318
319 <xsl:variable name="parent" select="ancestor::interface"/>
320
321 <xsl:apply-templates select="@if" mode="begin"/>
322
323 <!-- getter: COM_FORWARD_Interface_GETTER_Name_TO(smth) -->
324 <xsl:text>#define COM_FORWARD_</xsl:text>
325 <xsl:value-of select="$parent/@name"/>
326 <xsl:text>_GETTER_</xsl:text>
327 <xsl:call-template name="capitalize">
328 <xsl:with-param name="str" select="@name"/>
329 </xsl:call-template>
330 <xsl:text>_TO(smth) NS_IMETHOD Get</xsl:text>
331 <xsl:call-template name="capitalize">
332 <xsl:with-param name="str" select="@name"/>
333 </xsl:call-template>
334 <xsl:text> (</xsl:text>
335 <xsl:if test="@safearray='yes'">
336 <xsl:text>PRUint32 * a</xsl:text>
337 <xsl:call-template name="capitalize">
338 <xsl:with-param name="str" select="@name"/>
339 </xsl:call-template>
340 <xsl:text>Size, </xsl:text>
341 </xsl:if>
342 <xsl:apply-templates select="@type" mode="forwarder"/>
343 <xsl:if test="@safearray='yes'">
344 <xsl:text> *</xsl:text>
345 </xsl:if>
346 <xsl:text> * a</xsl:text>
347 <xsl:call-template name="capitalize">
348 <xsl:with-param name="str" select="@name"/>
349 </xsl:call-template>
350 <xsl:text>) { return smth Get</xsl:text>
351 <xsl:call-template name="capitalize">
352 <xsl:with-param name="str" select="@name"/>
353 </xsl:call-template>
354 <xsl:text> (</xsl:text>
355 <xsl:if test="@safearray='yes'">
356 <xsl:text>a</xsl:text>
357 <xsl:call-template name="capitalize">
358 <xsl:with-param name="str" select="@name"/>
359 </xsl:call-template>
360 <xsl:text>Size, </xsl:text>
361 </xsl:if>
362 <xsl:text>a</xsl:text>
363 <xsl:call-template name="capitalize">
364 <xsl:with-param name="str" select="@name"/>
365 </xsl:call-template>
366 <xsl:text>); }&#x0A;</xsl:text>
367 <!-- getter: COM_FORWARD_Interface_GETTER_Name_TO_OBJ(obj) -->
368 <xsl:text>#define COM_FORWARD_</xsl:text>
369 <xsl:value-of select="$parent/@name"/>
370 <xsl:text>_GETTER_</xsl:text>
371 <xsl:call-template name="capitalize">
372 <xsl:with-param name="str" select="@name"/>
373 </xsl:call-template>
374 <xsl:text>_TO_OBJ(obj) COM_FORWARD_</xsl:text>
375 <xsl:value-of select="$parent/@name"/>
376 <xsl:text>_GETTER_</xsl:text>
377 <xsl:call-template name="capitalize">
378 <xsl:with-param name="str" select="@name"/>
379 </xsl:call-template>
380 <xsl:text>_TO ((obj)->)&#x0A;</xsl:text>
381 <!-- getter: COM_FORWARD_Interface_GETTER_Name_TO_BASE(base) -->
382 <xsl:text>#define COM_FORWARD_</xsl:text>
383 <xsl:value-of select="$parent/@name"/>
384 <xsl:text>_GETTER_</xsl:text>
385 <xsl:call-template name="capitalize">
386 <xsl:with-param name="str" select="@name"/>
387 </xsl:call-template>
388 <xsl:text>_TO_BASE(base) COM_FORWARD_</xsl:text>
389 <xsl:value-of select="$parent/@name"/>
390 <xsl:text>_GETTER_</xsl:text>
391 <xsl:call-template name="capitalize">
392 <xsl:with-param name="str" select="@name"/>
393 </xsl:call-template>
394 <xsl:text>_TO (base::)&#x0A;</xsl:text>
395 <!-- -->
396 <xsl:if test="not(@readonly='yes')">
397 <!-- setter: COM_FORWARD_Interface_SETTER_Name_TO(smth) -->
398 <xsl:text>#define COM_FORWARD_</xsl:text>
399 <xsl:value-of select="$parent/@name"/>
400 <xsl:text>_SETTER_</xsl:text>
401 <xsl:call-template name="capitalize">
402 <xsl:with-param name="str" select="@name"/>
403 </xsl:call-template>
404 <xsl:text>_TO(smth) NS_IMETHOD Set</xsl:text>
405 <xsl:call-template name="capitalize">
406 <xsl:with-param name="str" select="@name"/>
407 </xsl:call-template>
408 <xsl:text> (</xsl:text>
409 <xsl:if test="@safearray='yes'">
410 <xsl:text>PRUint32 a</xsl:text>
411 <xsl:call-template name="capitalize">
412 <xsl:with-param name="str" select="@name"/>
413 </xsl:call-template>
414 <xsl:text>Size, </xsl:text>
415 </xsl:if>
416 <xsl:if test="not(@safearray='yes') and (@type='string' or @type='wstring')">
417 <xsl:text>const </xsl:text>
418 </xsl:if>
419 <xsl:apply-templates select="@type" mode="forwarder"/>
420 <xsl:if test="@safearray='yes'">
421 <xsl:text> *</xsl:text>
422 </xsl:if>
423 <xsl:text> a</xsl:text>
424 <xsl:call-template name="capitalize">
425 <xsl:with-param name="str" select="@name"/>
426 </xsl:call-template>
427 <xsl:text>) { return smth Set</xsl:text>
428 <xsl:call-template name="capitalize">
429 <xsl:with-param name="str" select="@name"/>
430 </xsl:call-template>
431 <xsl:text> (a</xsl:text>
432 <xsl:call-template name="capitalize">
433 <xsl:with-param name="str" select="@name"/>
434 </xsl:call-template>
435 <xsl:text>); }&#x0A;</xsl:text>
436 <!-- setter: COM_FORWARD_Interface_SETTER_Name_TO_OBJ(obj) -->
437 <xsl:text>#define COM_FORWARD_</xsl:text>
438 <xsl:value-of select="$parent/@name"/>
439 <xsl:text>_SETTER_</xsl:text>
440 <xsl:call-template name="capitalize">
441 <xsl:with-param name="str" select="@name"/>
442 </xsl:call-template>
443 <xsl:text>_TO_OBJ(obj) COM_FORWARD_</xsl:text>
444 <xsl:value-of select="$parent/@name"/>
445 <xsl:text>_SETTER_</xsl:text>
446 <xsl:call-template name="capitalize">
447 <xsl:with-param name="str" select="@name"/>
448 </xsl:call-template>
449 <xsl:text>_TO ((obj)->)&#x0A;</xsl:text>
450 <!-- setter: COM_FORWARD_Interface_SETTER_Name_TO_BASE(base) -->
451 <xsl:text>#define COM_FORWARD_</xsl:text>
452 <xsl:value-of select="$parent/@name"/>
453 <xsl:text>_SETTER_</xsl:text>
454 <xsl:call-template name="capitalize">
455 <xsl:with-param name="str" select="@name"/>
456 </xsl:call-template>
457 <xsl:text>_TO_BASE(base) COM_FORWARD_</xsl:text>
458 <xsl:value-of select="$parent/@name"/>
459 <xsl:text>_SETTER_</xsl:text>
460 <xsl:call-template name="capitalize">
461 <xsl:with-param name="str" select="@name"/>
462 </xsl:call-template>
463 <xsl:text>_TO (base::)&#x0A;</xsl:text>
464 </xsl:if>
465
466 <xsl:apply-templates select="@if" mode="end"/>
467
468</xsl:template>
469
470
471<!--
472 * methods
473-->
474<xsl:template match="interface//method">
475 <xsl:apply-templates select="@if" mode="begin"/>
476 <xsl:if test="param/@mod='ptr'">
477 <!-- methods using native types must be non-scriptable -->
478 <xsl:text> [noscript]&#x0A;</xsl:text>
479 </xsl:if>
480 <xsl:text> void </xsl:text>
481 <xsl:value-of select="@name"/>
482 <xsl:if test="param">
483 <xsl:text> (&#x0A;</xsl:text>
484 <xsl:for-each select="param [position() != last()]">
485 <xsl:text> </xsl:text>
486 <xsl:apply-templates select="."/>
487 <xsl:text>,&#x0A;</xsl:text>
488 </xsl:for-each>
489 <xsl:text> </xsl:text>
490 <xsl:apply-templates select="param [last()]"/>
491 <xsl:text>&#x0A; );&#x0A;</xsl:text>
492 </xsl:if>
493 <xsl:if test="not(param)">
494 <xsl:text>();&#x0A;</xsl:text>
495 </xsl:if>
496 <xsl:apply-templates select="@if" mode="end"/>
497 <xsl:text>&#x0A;</xsl:text>
498</xsl:template>
499
500<xsl:template match="interface//method" mode="forwarder">
501
502 <xsl:variable name="parent" select="ancestor::interface"/>
503
504 <xsl:apply-templates select="@if" mode="begin"/>
505
506 <xsl:text>#define COM_FORWARD_</xsl:text>
507 <xsl:value-of select="$parent/@name"/>
508 <xsl:text>_</xsl:text>
509 <xsl:call-template name="capitalize">
510 <xsl:with-param name="str" select="@name"/>
511 </xsl:call-template>
512 <xsl:text>_TO(smth) NS_IMETHOD </xsl:text>
513 <xsl:call-template name="capitalize">
514 <xsl:with-param name="str" select="@name"/>
515 </xsl:call-template>
516 <xsl:choose>
517 <xsl:when test="param">
518 <xsl:text> (</xsl:text>
519 <xsl:for-each select="param [position() != last()]">
520 <xsl:apply-templates select="." mode="forwarder"/>
521 <xsl:text>, </xsl:text>
522 </xsl:for-each>
523 <xsl:apply-templates select="param [last()]" mode="forwarder"/>
524 <xsl:text>) { return smth </xsl:text>
525 <xsl:call-template name="capitalize">
526 <xsl:with-param name="str" select="@name"/>
527 </xsl:call-template>
528 <xsl:text> (</xsl:text>
529 <xsl:for-each select="param [position() != last()]">
530 <xsl:if test="@safearray='yes'">
531 <xsl:text>a</xsl:text>
532 <xsl:call-template name="capitalize">
533 <xsl:with-param name="str" select="@name"/>
534 </xsl:call-template>
535 <xsl:text>Size+++, </xsl:text>
536 </xsl:if>
537 <xsl:text>a</xsl:text>
538 <xsl:call-template name="capitalize">
539 <xsl:with-param name="str" select="@name"/>
540 </xsl:call-template>
541 <xsl:text>, </xsl:text>
542 </xsl:for-each>
543 <xsl:if test="param [last()]/@safearray='yes'">
544 <xsl:text>a</xsl:text>
545 <xsl:call-template name="capitalize">
546 <xsl:with-param name="str" select="param [last()]/@name"/>
547 </xsl:call-template>
548 <xsl:text>Size, </xsl:text>
549 </xsl:if>
550 <xsl:text>a</xsl:text>
551 <xsl:call-template name="capitalize">
552 <xsl:with-param name="str" select="param [last()]/@name"/>
553 </xsl:call-template>
554 <xsl:text>); }</xsl:text>
555 </xsl:when>
556 <xsl:otherwise test="not(param)">
557 <xsl:text>() { return smth </xsl:text>
558 <xsl:call-template name="capitalize">
559 <xsl:with-param name="str" select="@name"/>
560 </xsl:call-template>
561 <xsl:text>(); }</xsl:text>
562 </xsl:otherwise>
563 </xsl:choose>
564 <xsl:text>&#x0A;</xsl:text>
565 <!-- COM_FORWARD_Interface_Method_TO_OBJ(obj) -->
566 <xsl:text>#define COM_FORWARD_</xsl:text>
567 <xsl:value-of select="$parent/@name"/>
568 <xsl:text>_</xsl:text>
569 <xsl:call-template name="capitalize">
570 <xsl:with-param name="str" select="@name"/>
571 </xsl:call-template>
572 <xsl:text>_TO_OBJ(obj) COM_FORWARD_</xsl:text>
573 <xsl:value-of select="$parent/@name"/>
574 <xsl:text>_</xsl:text>
575 <xsl:call-template name="capitalize">
576 <xsl:with-param name="str" select="@name"/>
577 </xsl:call-template>
578 <xsl:text>_TO ((obj)->)&#x0A;</xsl:text>
579 <!-- COM_FORWARD_Interface_Method_TO_BASE(base) -->
580 <xsl:text>#define COM_FORWARD_</xsl:text>
581 <xsl:value-of select="$parent/@name"/>
582 <xsl:text>_</xsl:text>
583 <xsl:call-template name="capitalize">
584 <xsl:with-param name="str" select="@name"/>
585 </xsl:call-template>
586 <xsl:text>_TO_BASE(base) COM_FORWARD_</xsl:text>
587 <xsl:value-of select="$parent/@name"/>
588 <xsl:text>_</xsl:text>
589 <xsl:call-template name="capitalize">
590 <xsl:with-param name="str" select="@name"/>
591 </xsl:call-template>
592 <xsl:text>_TO (base::)&#x0A;</xsl:text>
593
594 <xsl:apply-templates select="@if" mode="end"/>
595
596</xsl:template>
597
598
599<!--
600 * modules
601-->
602<xsl:template match="module">
603 <xsl:apply-templates select="class"/>
604</xsl:template>
605
606
607<!--
608 * co-classes
609-->
610<xsl:template match="module/class">
611 <!-- class and contract id -->
612 <xsl:text>%{C++&#x0A;</xsl:text>
613 <xsl:text>// Definitions for module </xsl:text>
614 <xsl:value-of select="../@name"/>
615 <xsl:text>, class </xsl:text>
616 <xsl:value-of select="@name"/>
617 <xsl:text>:&#x0A;</xsl:text>
618 <xsl:text>#define NS_</xsl:text>
619 <xsl:call-template name="string-to-upper">
620 <xsl:with-param name="str" select="@name"/>
621 </xsl:call-template>
622 <xsl:text>_CID { \&#x0A;</xsl:text>
623 <xsl:text> 0x</xsl:text><xsl:value-of select="substring(@uuid,1,8)"/>
624 <xsl:text>, 0x</xsl:text><xsl:value-of select="substring(@uuid,10,4)"/>
625 <xsl:text>, 0x</xsl:text><xsl:value-of select="substring(@uuid,15,4)"/>
626 <xsl:text>, \&#x0A; </xsl:text>
627 <xsl:text>{ 0x</xsl:text><xsl:value-of select="substring(@uuid,20,2)"/>
628 <xsl:text>, 0x</xsl:text><xsl:value-of select="substring(@uuid,22,2)"/>
629 <xsl:text>, 0x</xsl:text><xsl:value-of select="substring(@uuid,25,2)"/>
630 <xsl:text>, 0x</xsl:text><xsl:value-of select="substring(@uuid,27,2)"/>
631 <xsl:text>, 0x</xsl:text><xsl:value-of select="substring(@uuid,29,2)"/>
632 <xsl:text>, 0x</xsl:text><xsl:value-of select="substring(@uuid,31,2)"/>
633 <xsl:text>, 0x</xsl:text><xsl:value-of select="substring(@uuid,33,2)"/>
634 <xsl:text>, 0x</xsl:text><xsl:value-of select="substring(@uuid,35,2)"/>
635 <xsl:text> } \&#x0A;}&#x0A;</xsl:text>
636 <xsl:text>#define NS_</xsl:text>
637 <xsl:call-template name="string-to-upper">
638 <xsl:with-param name="str" select="@name"/>
639 </xsl:call-template>
640 <!-- Contract ID -->
641 <xsl:text>_CONTRACTID &quot;@</xsl:text>
642 <xsl:value-of select="@namespace"/>
643 <xsl:text>/</xsl:text>
644 <xsl:value-of select="@name"/>
645 <xsl:text>;1&quot;&#x0A;</xsl:text>
646 <!-- CLSID_xxx declarations for XPCOM, for compatibility with Win32 -->
647 <xsl:text>// for compatibility with Win32&#x0A;</xsl:text>
648 <xsl:text>VBOX_EXTERN_C const nsCID CLSID_</xsl:text>
649 <xsl:value-of select="@name"/>
650 <xsl:text>;&#x0A;</xsl:text>
651 <xsl:text>%}&#x0A;&#x0A;</xsl:text>
652</xsl:template>
653
654
655<!--
656 * enums
657-->
658<xsl:template match="enum">[
659 uuid(<xsl:value-of select="@uuid"/>),
660 scriptable
661]
662<xsl:text>interface </xsl:text>
663 <xsl:value-of select="@name"/>
664 <xsl:text>&#x0A;{&#x0A;</xsl:text>
665 <xsl:for-each select="const">
666 <xsl:text> const PRUint32 </xsl:text>
667 <xsl:value-of select="@name"/> = <xsl:value-of select="@value"/>
668 <xsl:text>;&#x0A;</xsl:text>
669 </xsl:for-each>
670 <xsl:text>};&#x0A;&#x0A;</xsl:text>
671 <!-- -->
672 <xsl:value-of select="concat('/* cross-platform type name for ', @name, ' */&#x0A;')"/>
673 <xsl:text>%{C++&#x0A;</xsl:text>
674 <xsl:value-of select="concat('#define ', @name, '_T', ' ',
675 'PRUint32&#x0A;')"/>
676 <xsl:text>%}&#x0A;&#x0A;</xsl:text>
677 <!-- -->
678 <xsl:value-of select="concat('/* cross-platform constants for ', @name, ' */&#x0A;')"/>
679 <xsl:text>%{C++&#x0A;</xsl:text>
680 <xsl:for-each select="const">
681 <xsl:value-of select="concat('#define ', ../@name, '_', @name, ' ',
682 ../@name, '::', @name, '&#x0A;')"/>
683 </xsl:for-each>
684 <xsl:text>%}&#x0A;&#x0A;</xsl:text>
685</xsl:template>
686
687
688<!--
689 * method parameters
690-->
691<xsl:template match="method/param">
692 <xsl:choose>
693 <!-- safearray parameters -->
694 <xsl:when test="@safearray='yes'">
695 <!-- array size -->
696 <xsl:choose>
697 <xsl:when test="@dir='in'">in </xsl:when>
698 <xsl:when test="@dir='out'">out </xsl:when>
699 <xsl:when test="@dir='return'">out </xsl:when>
700 <xsl:otherwise>in </xsl:otherwise>
701 </xsl:choose>
702 <xsl:text>unsigned long </xsl:text>
703 <xsl:value-of select="@name"/>
704 <xsl:text>Size,&#x0A;</xsl:text>
705 <!-- array pointer -->
706 <xsl:text> [array, size_is(</xsl:text>
707 <xsl:value-of select="@name"/>
708 <xsl:text>Size)</xsl:text>
709 <xsl:choose>
710 <xsl:when test="@dir='in'">] in </xsl:when>
711 <xsl:when test="@dir='out'">] out </xsl:when>
712 <xsl:when test="@dir='return'"> , retval] out </xsl:when>
713 <xsl:otherwise>] in </xsl:otherwise>
714 </xsl:choose>
715 <xsl:apply-templates select="@type"/>
716 <xsl:text> </xsl:text>
717 <xsl:value-of select="@name"/>
718 </xsl:when>
719 <!-- normal and array parameters -->
720 <xsl:otherwise>
721 <xsl:choose>
722 <xsl:when test="@dir='in'">in </xsl:when>
723 <xsl:when test="@dir='out'">out </xsl:when>
724 <xsl:when test="@dir='return'">[retval] out </xsl:when>
725 <xsl:otherwise>in </xsl:otherwise>
726 </xsl:choose>
727 <xsl:apply-templates select="@type"/>
728 <xsl:text> </xsl:text>
729 <xsl:value-of select="@name"/>
730 </xsl:otherwise>
731 </xsl:choose>
732</xsl:template>
733
734<xsl:template match="method/param" mode="forwarder">
735 <xsl:if test="@safearray='yes'">
736 <xsl:text>PRUint32</xsl:text>
737 <xsl:if test="@dir='out' or @dir='return'">
738 <xsl:text> *</xsl:text>
739 </xsl:if>
740 <xsl:text> a</xsl:text>
741 <xsl:call-template name="capitalize">
742 <xsl:with-param name="str" select="@name"/>
743 </xsl:call-template>
744 <xsl:text>Size, </xsl:text>
745 </xsl:if>
746 <xsl:apply-templates select="@type" mode="forwarder"/>
747 <xsl:if test="@dir='out' or @dir='return'">
748 <xsl:text> *</xsl:text>
749 </xsl:if>
750 <xsl:if test="@safearray='yes'">
751 <xsl:text> *</xsl:text>
752 </xsl:if>
753 <xsl:text> a</xsl:text>
754 <xsl:call-template name="capitalize">
755 <xsl:with-param name="str" select="@name"/>
756 </xsl:call-template>
757</xsl:template>
758
759
760<!--
761 * attribute/parameter type conversion
762-->
763<xsl:template match="attribute/@type | param/@type">
764 <xsl:variable name="self_target" select="current()/ancestor::if/@target"/>
765
766 <xsl:choose>
767 <!-- modifiers (ignored for 'enumeration' attributes)-->
768 <xsl:when test="name(current())='type' and ../@mod">
769 <xsl:choose>
770 <xsl:when test="../@mod='ptr'">
771 <xsl:choose>
772 <!-- standard types -->
773 <!--xsl:when test=".='result'">??</xsl:when-->
774 <xsl:when test=".='boolean'">booleanPtr</xsl:when>
775 <xsl:when test=".='octet'">octetPtr</xsl:when>
776 <xsl:when test=".='short'">shortPtr</xsl:when>
777 <xsl:when test=".='unsigned short'">ushortPtr</xsl:when>
778 <xsl:when test=".='long'">longPtr</xsl:when>
779 <xsl:when test=".='long long'">llongPtr</xsl:when>
780 <xsl:when test=".='unsigned long'">ulongPtr</xsl:when>
781 <xsl:when test=".='unsigned long long'">ullongPtr</xsl:when>
782 <xsl:otherwise>
783 <xsl:message terminate="yes">
784 <xsl:value-of select="concat(../../../@name,'::',../../@name,'::',../@name,': ')"/>
785 <xsl:text>attribute 'mod=</xsl:text>
786 <xsl:value-of select="concat('&quot;',../@mod,'&quot;')"/>
787 <xsl:text>' cannot be used with type </xsl:text>
788 <xsl:value-of select="concat('&quot;',current(),'&quot;!')"/>
789 </xsl:message>
790 </xsl:otherwise>
791 </xsl:choose>
792 </xsl:when>
793 <xsl:when test="../@mod='string'">
794 <xsl:choose>
795 <!-- standard types -->
796 <!--xsl:when test=".='result'">??</xsl:when-->
797 <xsl:when test=".='uuid'">wstring</xsl:when>
798 <xsl:otherwise>
799 <xsl:message terminate="yes">
800 <xsl:value-of select="concat(../../../@name,'::',../../@name,'::',../@name,': ')"/>
801 <xsl:text>attribute 'mod=</xsl:text>
802 <xsl:value-of select="concat('&quot;',../@mod,'&quot;')"/>
803 <xsl:text>' cannot be used with type </xsl:text>
804 <xsl:value-of select="concat('&quot;',current(),'&quot;!')"/>
805 </xsl:message>
806 </xsl:otherwise>
807 </xsl:choose>
808 </xsl:when>
809 <xsl:otherwise>
810 <xsl:message terminate="yes">
811 <xsl:value-of select="concat(../../../@name,'::',../../@name,'::',../@name,': ')"/>
812 <xsl:value-of select="concat('value &quot;',../@mod,'&quot; ')"/>
813 <xsl:text>of attribute 'mod' is invalid!</xsl:text>
814 </xsl:message>
815 </xsl:otherwise>
816 </xsl:choose>
817 </xsl:when>
818 <!-- no modifiers -->
819 <xsl:otherwise>
820 <xsl:choose>
821 <!-- standard types -->
822 <xsl:when test=".='result'">nsresult</xsl:when>
823 <xsl:when test=".='boolean'">boolean</xsl:when>
824 <xsl:when test=".='octet'">octet</xsl:when>
825 <xsl:when test=".='short'">short</xsl:when>
826 <xsl:when test=".='unsigned short'">unsigned short</xsl:when>
827 <xsl:when test=".='long'">long</xsl:when>
828 <xsl:when test=".='long long'">long long</xsl:when>
829 <xsl:when test=".='unsigned long'">unsigned long</xsl:when>
830 <xsl:when test=".='unsigned long long'">unsigned long long</xsl:when>
831 <xsl:when test=".='char'">char</xsl:when>
832 <xsl:when test=".='wchar'">wchar</xsl:when>
833 <xsl:when test=".='string'">string</xsl:when>
834 <xsl:when test=".='wstring'">wstring</xsl:when>
835 <!-- UUID type -->
836 <xsl:when test=".='uuid'">
837 <xsl:choose>
838 <xsl:when test="name(..)='attribute'">
839 <xsl:choose>
840 <xsl:when test="../@readonly='yes'">
841 <xsl:text>nsIDPtr</xsl:text>
842 </xsl:when>
843 <xsl:otherwise>
844 <xsl:message terminate="yes">
845 <xsl:value-of select="../@name"/>
846 <xsl:text>: Non-readonly uuid attributes are not supported!</xsl:text>
847 </xsl:message>
848 </xsl:otherwise>
849 </xsl:choose>
850 </xsl:when>
851 <xsl:when test="name(..)='param'">
852 <xsl:choose>
853 <xsl:when test="../@dir='in' and not(../@safearray='yes')">
854 <xsl:text>nsIDRef</xsl:text>
855 </xsl:when>
856 <xsl:otherwise>
857 <xsl:text>nsIDPtr</xsl:text>
858 </xsl:otherwise>
859 </xsl:choose>
860 </xsl:when>
861 </xsl:choose>
862 </xsl:when>
863 <!-- system interface types -->
864 <xsl:when test=".='$unknown'">nsISupports</xsl:when>
865 <xsl:otherwise>
866 <xsl:choose>
867 <!-- enum types -->
868 <xsl:when test="
869 (ancestor::library/enum[@name=current()]) or
870 (ancestor::library/if[@target=$self_target]/enum[@name=current()])
871 ">
872 <xsl:text>PRUint32</xsl:text>
873 </xsl:when>
874 <!-- custom interface types -->
875 <xsl:when test="
876 (ancestor::library/interface[@name=current()]) or
877 (ancestor::library/if[@target=$self_target]/interface[@name=current()])
878 ">
879 <xsl:value-of select="."/>
880 </xsl:when>
881 <!-- other types -->
882 <xsl:otherwise>
883 <xsl:message terminate="yes">
884 <xsl:text>Unknown parameter type: </xsl:text>
885 <xsl:value-of select="."/>
886 </xsl:message>
887 </xsl:otherwise>
888 </xsl:choose>
889 </xsl:otherwise>
890 </xsl:choose>
891 </xsl:otherwise>
892 </xsl:choose>
893</xsl:template>
894
895<xsl:template match="attribute/@type | param/@type" mode="forwarder">
896
897 <xsl:variable name="self_target" select="current()/ancestor::if/@target"/>
898
899 <xsl:choose>
900 <!-- modifiers (ignored for 'enumeration' attributes)-->
901 <xsl:when test="name(current())='type' and ../@mod">
902 <xsl:choose>
903 <xsl:when test="../@mod='ptr'">
904 <xsl:choose>
905 <!-- standard types -->
906 <!--xsl:when test=".='result'">??</xsl:when-->
907 <xsl:when test=".='boolean'">PRBool *</xsl:when>
908 <xsl:when test=".='octet'">PRUint8 *</xsl:when>
909 <xsl:when test=".='short'">PRInt16 *</xsl:when>
910 <xsl:when test=".='unsigned short'">PRUint16 *</xsl:when>
911 <xsl:when test=".='long'">PRInt32 *</xsl:when>
912 <xsl:when test=".='long long'">PRInt64 *</xsl:when>
913 <xsl:when test=".='unsigned long'">PRUint32 *</xsl:when>
914 <xsl:when test=".='unsigned long long'">PRUint64 *</xsl:when>
915 <xsl:when test=".='char'">char *</xsl:when>
916 <xsl:otherwise>
917 <xsl:message terminate="yes">
918 <xsl:value-of select="concat(../../../@name,'::',../../@name,'::',../@name,': ')"/>
919 <xsl:text>attribute 'mod=</xsl:text>
920 <xsl:value-of select="concat('&quot;',../@mod,'&quot;')"/>
921 <xsl:text>' cannot be used with type </xsl:text>
922 <xsl:value-of select="concat('&quot;',current(),'&quot;!')"/>
923 </xsl:message>
924 </xsl:otherwise>
925 </xsl:choose>
926 </xsl:when>
927 <xsl:when test="../@mod='string'">
928 <xsl:choose>
929 <!-- standard types -->
930 <!--xsl:when test=".='result'">??</xsl:when-->
931 <xsl:when test=".='uuid'">PRUnichar *</xsl:when>
932 <xsl:otherwise>
933 <xsl:message terminate="yes">
934 <xsl:value-of select="concat(../../../@name,'::',../../@name,'::',../@name,': ')"/>
935 <xsl:text>attribute 'mod=</xsl:text>
936 <xsl:value-of select="concat('&quot;',../@mod,'&quot;')"/>
937 <xsl:text>' cannot be used with type </xsl:text>
938 <xsl:value-of select="concat('&quot;',current(),'&quot;!')"/>
939 </xsl:message>
940 </xsl:otherwise>
941 </xsl:choose>
942 </xsl:when>
943 </xsl:choose>
944 </xsl:when>
945 <!-- no modifiers -->
946 <xsl:otherwise>
947 <xsl:choose>
948 <!-- standard types -->
949 <xsl:when test=".='result'">nsresult</xsl:when>
950 <xsl:when test=".='boolean'">PRBool</xsl:when>
951 <xsl:when test=".='octet'">PRUint8</xsl:when>
952 <xsl:when test=".='short'">PRInt16</xsl:when>
953 <xsl:when test=".='unsigned short'">PRUint16</xsl:when>
954 <xsl:when test=".='long'">PRInt32</xsl:when>
955 <xsl:when test=".='long long'">PRInt64</xsl:when>
956 <xsl:when test=".='unsigned long'">PRUint32</xsl:when>
957 <xsl:when test=".='unsigned long long'">PRUint64</xsl:when>
958 <xsl:when test=".='char'">char</xsl:when>
959 <xsl:when test=".='wchar'">PRUnichar</xsl:when>
960 <!-- string types -->
961 <xsl:when test=".='string'">char *</xsl:when>
962 <xsl:when test=".='wstring'">PRUnichar *</xsl:when>
963 <!-- UUID type -->
964 <xsl:when test=".='uuid'">
965 <xsl:choose>
966 <xsl:when test="name(..)='attribute'">
967 <xsl:choose>
968 <xsl:when test="../@readonly='yes'">
969 <xsl:text>nsID *</xsl:text>
970 </xsl:when>
971 </xsl:choose>
972 </xsl:when>
973 <xsl:when test="name(..)='param'">
974 <xsl:choose>
975 <xsl:when test="../@dir='in' and not(../@safearray='yes')">
976 <xsl:text>const nsID &amp;</xsl:text>
977 </xsl:when>
978 <xsl:otherwise>
979 <xsl:text>nsID *</xsl:text>
980 </xsl:otherwise>
981 </xsl:choose>
982 </xsl:when>
983 </xsl:choose>
984 </xsl:when>
985 <!-- system interface types -->
986 <xsl:when test=".='$unknown'">nsISupports *</xsl:when>
987 <xsl:otherwise>
988 <xsl:choose>
989 <!-- enum types -->
990 <xsl:when test="
991 (ancestor::library/enum[@name=current()]) or
992 (ancestor::library/if[@target=$self_target]/enum[@name=current()])
993 ">
994 <xsl:text>PRUint32</xsl:text>
995 </xsl:when>
996 <!-- custom interface types -->
997 <xsl:when test="
998 (ancestor::library/interface[@name=current()]) or
999 (ancestor::library/if[@target=$self_target]/interface[@name=current()])
1000 ">
1001 <xsl:value-of select="."/>
1002 <xsl:text> *</xsl:text>
1003 </xsl:when>
1004 <!-- other types -->
1005 </xsl:choose>
1006 </xsl:otherwise>
1007 </xsl:choose>
1008 </xsl:otherwise>
1009 </xsl:choose>
1010</xsl:template>
1011
1012</xsl:stylesheet>
1013
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