VirtualBox

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

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

more branding and header fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.0 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 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># Copyright (C) Oracle Corporation
30#
31# This file is part of VirtualBox Open Source Edition (OSE), as
32# available from http://www.virtualbox.org. This file is free software;
33# you can redistribute it and/or modify it under the terms of the GNU
34# General Public License (GPL) as published by the Free Software
35# Foundation, in version 2 as it comes in the "COPYING" file of the
36# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
37# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
38#
39# This file is autogenerated from VirtualBox.xidl, DO NOT EDIT!
40#
41</xsl:text>
42class VirtualBoxReflectionInfo:
43 def __init__(self, isSym):
44 self.isSym = isSym
45
46 _Values = {<xsl:for-each select="//enum">
47 '<xsl:value-of select="@name"/>':{
48 <xsl:for-each select="const">'<xsl:value-of select="@name"/>':<xsl:value-of select="@value"/><xsl:if test="not(position()=last())">,</xsl:if>
49 </xsl:for-each>}<xsl:if test="not(position()=last())">,</xsl:if>
50
51 </xsl:for-each>}
52
53 _ValuesSym = {<xsl:for-each select="//enum">
54 '<xsl:value-of select="@name"/>':{
55 <xsl:for-each select="const">'<xsl:value-of select="@name"/>': '<xsl:value-of select="@name"/>'<xsl:if test="not(position()=last())">,</xsl:if>
56 </xsl:for-each>}<xsl:if test="not(position()=last())">,</xsl:if>
57
58 </xsl:for-each>}
59
60 _ValuesFlat = {<xsl:for-each select="//enum">
61 <xsl:variable name="ename">
62 <xsl:value-of select="@name"/>
63 </xsl:variable>
64 <xsl:for-each select="const">
65 '<xsl:value-of select="$ename"/>_<xsl:value-of select="@name"/>':<xsl:value-of select="@value"/><xsl:if test="not(position()=last())">,</xsl:if>
66 </xsl:for-each>
67 <xsl:if test="not(position()=last())">,</xsl:if>
68 </xsl:for-each>}
69
70 _ValuesFlatSym = {<xsl:for-each select="//enum">
71 <xsl:variable name="ename">
72 <xsl:value-of select="@name"/>
73 </xsl:variable>
74 <xsl:for-each select="const">
75 <xsl:variable name="eval">
76 <xsl:value-of select="concat($ename, '_', @name)"/>
77 </xsl:variable>
78 '<xsl:value-of select="$eval"/>': '<xsl:value-of select="@name"/>'<xsl:if test="not(position()=last())">,</xsl:if>
79 </xsl:for-each>
80 <xsl:if test="not(position()=last())">,</xsl:if>
81 </xsl:for-each>}
82
83 def __getattr__(self,attr):
84 if self.isSym:
85 v = self._ValuesFlatSym.get(attr)
86 else:
87 v = self._ValuesFlat.get(attr)
88 if v is not None:
89 return v
90 else:
91 raise AttributeError
92
93 def all_values(self,enum_name):
94 if self.isSym:
95 vals = self._ValuesSym.get(enum_name)
96 else:
97 vals = self._Values.get(enum_name)
98 if vals is not None:
99 return vals
100 else:
101 return {}
102
103</xsl:template>
104</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