summaryrefslogtreecommitdiff
path: root/source/config/a2_command_ids_h.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'source/config/a2_command_ids_h.xsl')
-rw-r--r--source/config/a2_command_ids_h.xsl60
1 files changed, 60 insertions, 0 deletions
diff --git a/source/config/a2_command_ids_h.xsl b/source/config/a2_command_ids_h.xsl
new file mode 100644
index 0000000..d04a32d
--- /dev/null
+++ b/source/config/a2_command_ids_h.xsl
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+* Copyright (C) ST-Ericsson SA 2011
+* License terms: 3-clause BSD license
+-->
+<stylesheet version="2.0" xmlns="http://www.w3.org/1999/XSL/Transform">
+
+<import href="a2_common.xsl"/>
+
+<output method="text" indent="no"/>
+<strip-space elements="*"/>
+<param name="target" />
+
+<template match="/commandspec">/* $Copyright ST-Ericsson 2010$ */
+/* NOTE: This is an automatically generated file. DO NOT EDIT! */
+
+#ifndef _A2_COMMAND_IDS_H
+#define _A2_COMMAND_IDS_H
+#include &quot;t_basicdefinitions.h&quot;
+
+typedef enum {
+<apply-templates select="group" mode="id"/>} A2_GroupId_e;
+
+typedef enum {
+<apply-templates select="group/command" mode="id"/>} A2_CommandId_e;
+
+<apply-templates select="typedef" />
+#endif /* _A2_COMMAND_IDS_H */
+</template>
+
+<template match="typedef">typedef struct <value-of select="interface/@name" />_s
+{
+<apply-templates select="value" />}<value-of select="interface/@name" />_t;
+
+</template>
+
+<template match="value">
+<choose>
+<when test="@type='char_array'"> char <text></text><value-of select="@name" />[<text></text><value-of select="@size" />]; /**&lt; <value-of select="text()" /> */
+</when>
+<when test="@type='string'"> char *<text></text><value-of select="@name" />; /**&lt; <value-of select="text()" /> */
+</when>
+<when test="@type='uint32'">
+<text> </text><value-of select="@type" /><text> </text><value-of select="@name" />; /**&lt; <value-of select="text()" /> */
+</when>
+<when test="@type='uint64'">
+<text> </text><value-of select="@type" /><text> </text><value-of select="@name" />; /**&lt; <value-of select="text()" /> */
+</when>
+</choose>
+</template>
+
+<template match="group" mode="id">
+<text> </text><call-template name="groupid" /> = <value-of select="@number" />, /**&lt; <value-of select="@name" /> */
+</template>
+
+<template match="command" mode="id">
+<text> </text><call-template name="commandid" /> = <value-of select="@number" />, /**&lt; <value-of select="@name" /> */
+</template>
+
+</stylesheet>