1 | <?xml version="1.0"?>
|
---|
2 | <!--
|
---|
3 | docbook-refentry-to-H-help.xsl:
|
---|
4 | XSLT stylesheet for generating command and sub-command
|
---|
5 | constants header for the built-in help.
|
---|
6 | -->
|
---|
7 | <!--
|
---|
8 | Copyright (C) 2006-2023 Oracle and/or its affiliates.
|
---|
9 |
|
---|
10 | This file is part of VirtualBox base platform packages, as
|
---|
11 | available from https://www.virtualbox.org.
|
---|
12 |
|
---|
13 | This program is free software; you can redistribute it and/or
|
---|
14 | modify it under the terms of the GNU General Public License
|
---|
15 | as published by the Free Software Foundation, in version 3 of the
|
---|
16 | License.
|
---|
17 |
|
---|
18 | This program is distributed in the hope that it will be useful, but
|
---|
19 | WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
20 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
21 | General Public License for more details.
|
---|
22 |
|
---|
23 | You should have received a copy of the GNU General Public License
|
---|
24 | along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
25 |
|
---|
26 | SPDX-License-Identifier: GPL-3.0-only
|
---|
27 | -->
|
---|
28 |
|
---|
29 | <xsl:stylesheet
|
---|
30 | version="1.0"
|
---|
31 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
---|
32 | xmlns:str="http://xsltsl.org/string"
|
---|
33 | >
|
---|
34 |
|
---|
35 | <xsl:import href="string.xsl"/>
|
---|
36 |
|
---|
37 | <xsl:output method="text" version="1.0" encoding="utf-8" indent="yes"/>
|
---|
38 | <xsl:strip-space elements="*"/>
|
---|
39 |
|
---|
40 | <xsl:param name="g_sMode" select="not-specified"/>
|
---|
41 |
|
---|
42 |
|
---|
43 | <!-- Default action, do nothing. -->
|
---|
44 | <xsl:template match="node()|@*"/>
|
---|
45 |
|
---|
46 | <!--
|
---|
47 | Generate SCOPE enum for a refentry. We convert the
|
---|
48 | cmdsynopsisdiv/cmdsynopsis IDs into constants.
|
---|
49 | -->
|
---|
50 | <xsl:template match="refentry">
|
---|
51 | <xsl:variable name="RefEntry" select="."/>
|
---|
52 | <xsl:variable name="sRefEntryId" select="@id"/>
|
---|
53 | <xsl:variable name="sBaseNm">
|
---|
54 | <xsl:choose>
|
---|
55 | <xsl:when test="contains($sRefEntryId, '-')"> <!-- Multi level command. -->
|
---|
56 | <xsl:call-template name="str:to-upper">
|
---|
57 | <xsl:with-param name="text" select="translate(substring-after($sRefEntryId, '-'), '-', '_')"/>
|
---|
58 | </xsl:call-template>
|
---|
59 | </xsl:when>
|
---|
60 | <xsl:otherwise> <!-- Simple command. -->
|
---|
61 | <xsl:call-template name="str:to-upper">
|
---|
62 | <xsl:with-param name="text" select="translate($sRefEntryId, '-', '_')"/>
|
---|
63 | </xsl:call-template>
|
---|
64 | </xsl:otherwise>
|
---|
65 | </xsl:choose>
|
---|
66 | </xsl:variable>
|
---|
67 |
|
---|
68 | <xsl:choose>
|
---|
69 | <!-- Generate subcommand enums and defines -->
|
---|
70 | <xsl:when test="$g_sMode = 'subcmd'">
|
---|
71 | <!-- Start enum type and start off with the refentry id. -->
|
---|
72 | <xsl:text>
|
---|
73 | enum
|
---|
74 | {
|
---|
75 | #define HELP_SCOPE_</xsl:text>
|
---|
76 | <xsl:value-of select="$sBaseNm"/>
|
---|
77 | <xsl:value-of select="substring(' ',1,56 - string-length($sBaseNm) - 11)"/>
|
---|
78 | <xsl:text> RT_BIT_64(HELP_SCOPE_</xsl:text><xsl:value-of select="$sBaseNm"/><xsl:text>_BIT)
|
---|
79 | HELP_SCOPE_</xsl:text><xsl:value-of select="$sBaseNm"/><xsl:text>_BIT = 0</xsl:text>
|
---|
80 |
|
---|
81 | <!-- Synopsis IDs -->
|
---|
82 | <xsl:for-each select="./refsynopsisdiv/cmdsynopsis[@id != concat('synopsis-', $sRefEntryId)]">
|
---|
83 | <xsl:variable name="sSubNm">
|
---|
84 | <xsl:text>HELP_SCOPE_</xsl:text>
|
---|
85 | <xsl:call-template name="str:to-upper">
|
---|
86 | <xsl:with-param name="text" select="translate(substring-after(substring-after(@id, '-'), '-'), '-', '_')"/>
|
---|
87 | </xsl:call-template>
|
---|
88 | </xsl:variable>
|
---|
89 | <xsl:text>,
|
---|
90 | #define </xsl:text>
|
---|
91 | <xsl:value-of select="$sSubNm"/>
|
---|
92 | <xsl:value-of select="substring(' ',1,56 - string-length($sSubNm))"/>
|
---|
93 | <xsl:text> RT_BIT_64(</xsl:text><xsl:value-of select="$sSubNm"/><xsl:text>_BIT)
|
---|
94 | </xsl:text>
|
---|
95 | <xsl:value-of select="$sSubNm"/><xsl:text>_BIT</xsl:text>
|
---|
96 | </xsl:for-each>
|
---|
97 |
|
---|
98 | <!-- Add scoping info for refsect1 and refsect2 IDs that aren't part of the synopsis. -->
|
---|
99 | <xsl:for-each select=".//refsect1[@id] | .//refsect2[@id]">
|
---|
100 | <xsl:variable name="sThisId" select="@id"/>
|
---|
101 | <xsl:if test="not($RefEntry[@id = $sThisId]) and not($RefEntry/refsynopsisdiv/cmdsynopsis[@id = concat('synopsis-', $sThisId)])">
|
---|
102 | <xsl:variable name="sSubNm">
|
---|
103 | <xsl:text>HELP_SCOPE_</xsl:text>
|
---|
104 | <xsl:choose>
|
---|
105 | <xsl:when test="contains($sRefEntryId, '-')"> <!-- Multi level command. -->
|
---|
106 | <xsl:call-template name="str:to-upper">
|
---|
107 | <xsl:with-param name="text" select="translate(substring-after(@id, '-'), '-', '_')"/>
|
---|
108 | </xsl:call-template>
|
---|
109 | </xsl:when>
|
---|
110 | <xsl:otherwise> <!-- Simple command. -->
|
---|
111 | <xsl:call-template name="str:to-upper">
|
---|
112 | <xsl:with-param name="text" select="translate(@id, '-', '_')"/>
|
---|
113 | </xsl:call-template>
|
---|
114 | </xsl:otherwise>
|
---|
115 | </xsl:choose>
|
---|
116 | </xsl:variable>
|
---|
117 | <xsl:text>,
|
---|
118 | #define </xsl:text>
|
---|
119 | <xsl:value-of select="$sSubNm"/>
|
---|
120 | <xsl:value-of select="substring(' ',1,56 - string-length($sSubNm))"/>
|
---|
121 | <xsl:text> RT_BIT_64(</xsl:text><xsl:value-of select="$sSubNm"/><xsl:text>_BIT)
|
---|
122 | </xsl:text>
|
---|
123 | <xsl:value-of select="$sSubNm"/><xsl:text>_BIT</xsl:text>
|
---|
124 | </xsl:if>
|
---|
125 | </xsl:for-each>
|
---|
126 |
|
---|
127 | <!-- Done - complete the enum. -->
|
---|
128 | <xsl:text>,
|
---|
129 | HELP_SCOPE_</xsl:text><xsl:value-of select="$sBaseNm"/><xsl:text>_END
|
---|
130 | };
|
---|
131 | AssertCompile((int)HELP_SCOPE_</xsl:text><xsl:value-of select="$sBaseNm"/><xsl:text>_END >= 1);
|
---|
132 | AssertCompile((int)HELP_SCOPE_</xsl:text><xsl:value-of select="$sBaseNm"/><xsl:text>_END < 64);
|
---|
133 | AssertCompile(RT_BIT_64(HELP_SCOPE_</xsl:text><xsl:value-of select="$sBaseNm"/><xsl:text>_END - 1) & RTMSGREFENTRYSTR_SCOPE_MASK);
|
---|
134 | </xsl:text>
|
---|
135 | </xsl:when>
|
---|
136 |
|
---|
137 | <!-- Generate command enum value. -->
|
---|
138 | <xsl:when test="$g_sMode = 'cmd'">
|
---|
139 | <xsl:text> HELP_CMD_</xsl:text><xsl:value-of select="$sBaseNm"/><xsl:text>,
|
---|
140 | </xsl:text>
|
---|
141 | </xsl:when>
|
---|
142 |
|
---|
143 | <!-- Shouldn't happen. -->
|
---|
144 | <xsl:otherwise>
|
---|
145 | <xsl:message terminate="yes">Bad or missing g_sMode string parameter value.</xsl:message>
|
---|
146 | </xsl:otherwise>
|
---|
147 | </xsl:choose>
|
---|
148 | </xsl:template>
|
---|
149 |
|
---|
150 | </xsl:stylesheet>
|
---|
151 |
|
---|