VirtualBox

source: vbox/trunk/src/VBox/Main/glue/constants-python.xsl@ 73768

Last change on this file since 73768 was 60463, checked in by vboxsync, 8 years ago

added CDDL headers to some Python bindings

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.8 KB
Line 
1<xsl:stylesheet version = '1.0'
2 xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
3 xmlns:vbox="http://www.virtualbox.org/">
4
5<!--
6
7 constants-python.xsl:
8 XSLT stylesheet that generates VirtualBox_constants.py from
9 VirtualBox.xidl.
10
11 Copyright (C) 2009-2016 Oracle Corporation
12
13 This file is part of VirtualBox Open Source Edition (OSE), as
14 available from http://www.virtualbox.org. This file is free software;
15 you can redistribute it and/or modify it under the terms of the GNU
16 General Public License (GPL) as published by the Free Software
17 Foundation, in version 2 as it comes in the "COPYING" file of the
18 VirtualBox OSE distribution. VirtualBox OSE is distributed in the
19 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
20-->
21
22<xsl:output
23 method="text"
24 version="1.0"
25 encoding="utf-8"
26 indent="no"/>
27
28<xsl:template match="/">
29<xsl:text># -*- coding: utf-8 -*-
30
31"""
32VirtualBox COM/XPCOM constants.
33
34This file is autogenerated from VirtualBox.xidl, DO NOT EDIT!
35"""
36
37__copyright__ = \
38"""
39Copyright (C) 2009-2016 Oracle Corporation
40
41This file is part of VirtualBox Open Source Edition (OSE), as
42available from http://www.virtualbox.org. This file is free software;
43you can redistribute it and/or modify it under the terms of the GNU
44General Public License (GPL) as published by the Free Software
45Foundation, in version 2 as it comes in the "COPYING" file of the
46VirtualBox OSE distribution. VirtualBox OSE is distributed in the
47hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
48
49The contents of this file may alternatively be used under the terms
50of the Common Development and Distribution License Version 1.0
51(CDDL) only, as it comes in the "COPYING.CDDL" file of the
52VirtualBox OSE distribution, in which case the provisions of the
53CDDL are applicable instead of those of the GPL.
54
55You may elect to license modified versions of this file under the
56terms and conditions of either the GPL or the CDDL or both.
57"""
58
59__version__ = "$Revision: 60463 $";
60
61
62
63class VirtualBoxReflectionInfo:
64 """
65 Enum constants for the various python styles.
66 """
67
68 def __init__(self, fIsSym):
69 self.__fIsSym = fIsSym
70
71 __dValues = {</xsl:text>
72
73 <xsl:for-each select="//enum">
74 <xsl:text>
75 '</xsl:text> <xsl:value-of select="@name"/><xsl:text>': {</xsl:text>
76 <xsl:for-each select="const">
77 <xsl:text>
78 '</xsl:text>
79 <xsl:value-of select="@name"/><xsl:text>': </xsl:text>
80 <xsl:value-of select="@value"/><xsl:text>,</xsl:text>
81 </xsl:for-each>
82 <xsl:text>
83 },</xsl:text>
84 </xsl:for-each>
85 <!-- hack alert: force new output element to avoid large reallocations. -->
86 <xsl:text disable-output-escaping="yes"><![CDATA[
87 }
88
89 __dValuesSym = {]]></xsl:text>
90 <xsl:for-each select="//enum">
91 <xsl:text>
92 '</xsl:text> <xsl:value-of select="@name"/> <xsl:text>': {</xsl:text>
93 <xsl:for-each select="const">
94 <xsl:text>
95 '</xsl:text> <xsl:value-of select="@name"/> <xsl:text>': '</xsl:text>
96 <xsl:value-of select="@name"/>
97 <xsl:text>',</xsl:text>
98 </xsl:for-each>
99 <xsl:text>
100 },</xsl:text>
101 </xsl:for-each>
102 <!-- hack alert: force new output element to avoid large reallocations. -->
103 <xsl:text disable-output-escaping="yes"><![CDATA[
104 }
105
106 __dValuesFlat = {]]></xsl:text>
107 <xsl:for-each select="//enum">
108 <xsl:variable name="ename">
109 <xsl:value-of select="@name"/>
110 </xsl:variable>
111 <xsl:for-each select="const">
112 <xsl:text>
113 '</xsl:text> <xsl:value-of select="$ename"/> <xsl:text>_</xsl:text>
114 <xsl:value-of select="@name"/> <xsl:text>': </xsl:text>
115 <xsl:value-of select="@value"/><xsl:text>,</xsl:text>
116 </xsl:for-each>
117 </xsl:for-each>
118 <!-- hack alert: force new output element to avoid large reallocations. -->
119 <xsl:text disable-output-escaping="yes"><![CDATA[
120 # Result constants:]]></xsl:text>
121 <xsl:for-each select="//result[@value]">
122 <xsl:text>
123 '</xsl:text> <xsl:value-of select="@name"/> <xsl:text>': </xsl:text>
124 <xsl:value-of select="@value"/><xsl:text>,</xsl:text>
125 </xsl:for-each>
126 <!-- hack alert: force new output element to avoid large reallocations. -->
127 <xsl:text>
128 }
129
130 __dValuesFlatSym = {</xsl:text>
131 <xsl:for-each select="//enum">
132 <xsl:variable name="ename">
133 <xsl:value-of select="@name"/>
134 </xsl:variable>
135 <xsl:for-each select="const">
136 <xsl:variable name="eval">
137 <xsl:value-of select="concat($ename, '_', @name)"/>
138 </xsl:variable>
139 <xsl:text>
140 '</xsl:text> <xsl:value-of select="$eval"/> <xsl:text>': </xsl:text>
141 <xsl:text>'</xsl:text> <xsl:value-of select="@name"/> <xsl:text>',</xsl:text>
142 </xsl:for-each>
143 </xsl:for-each>
144 <xsl:text>
145 # Result constants:</xsl:text>
146 <xsl:for-each select="//result[@value]">
147 <xsl:text>
148 '</xsl:text> <xsl:value-of select="@name"/> <xsl:text>': </xsl:text>
149 <xsl:text>'</xsl:text><xsl:value-of select="@name"/><xsl:text>',</xsl:text>
150 </xsl:for-each>
151 <xsl:text>
152 }
153
154 def __getattr__(self, sAttrName):
155 if self.__fIsSym:
156 oValue = self.__dValuesFlatSym.get(sAttrName)
157 else:
158 oValue = self.__dValuesFlat.get(sAttrName)
159 if oValue is None:
160 raise AttributeError
161 return oValue
162
163 def all_values(self, sEnumName):
164 """ Returns a dictionary with all the value names for a given enum type. """
165 if self.__fIsSym:
166 dValues = self.__dValuesSym.get(sEnumName)
167 else:
168 dValues = self.__dValues.get(sEnumName)
169 if dValues is None:
170 dValues = {}
171 return dValues
172
173</xsl:text>
174</xsl:template>
175</xsl:stylesheet>
176
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use