-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
elastic-json-v1.0.xsl
175 lines (164 loc) · 6.1 KB
/
elastic-json-v1.0.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:import href="./Syslog/RFC5424Changes.xsl"/>
<xsl:output method='text' version='1.0' encoding='UTF-8' indent='no'/>
<!-- version control variables -->
<xsl:variable name="format" select="'elastic'"/>
<xsl:variable name="version" select="'1.0'"/>
<!-- configuration -->
<xsl:variable name="include_raw" select="0"/> <!-- save a "raw" key with the original XML -->
<!-- main object with header info -->
<xsl:template match="/">
<xsl:apply-imports/>
<xsl:text>{"format":"</xsl:text><xsl:value-of select="$format"/>
<xsl:text>","version":"</xsl:text><xsl:value-of select="$version"/>
<xsl:text>"</xsl:text>
<xsl:choose>
<xsl:when test="$include_raw=1">
<xsl:text>,"raw":</xsl:text>
<xsl:call-template name="json-string">
<xsl:with-param name="text">
<xsl:apply-templates select="*" mode="raw"/>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
</xsl:choose>
<xsl:text>,</xsl:text>
<xsl:apply-templates select="*" mode="object"/>
<!-- this text below includes the terminating newline -->
<xsl:text>}
</xsl:text>
</xsl:template>
<xsl:template match="*" mode="raw">
<xsl:value-of select="concat('<', name())" />
<xsl:for-each select="@*">
<xsl:value-of select="concat(' ', name(), '="', ., '"')"/>
</xsl:for-each>
<xsl:text>></xsl:text>
<xsl:apply-templates mode="raw"/>
<xsl:value-of select="concat('</', name(), '>')" />
</xsl:template>
<!-- serialize objects -->
<xsl:template match="*" mode="object">
<xsl:text>"</xsl:text>
<xsl:value-of select="name()"/><xsl:text>":</xsl:text><xsl:call-template name="value">
<xsl:with-param name="parent" select="1"/>
</xsl:call-template>
</xsl:template>
<!-- serialize array elements -->
<xsl:template match="*" mode="array">
<xsl:call-template name="value"/>
</xsl:template>
<!-- value of node serializer -->
<xsl:template name="value">
<xsl:param name="parent"/>
<xsl:variable name="childName" select="name(*[1])"/>
<xsl:choose>
<xsl:when test="not(*|@*)">
<xsl:choose>
<xsl:when test="$parent=1">
<xsl:call-template name="json-string">
<xsl:with-param name="text" select="."/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="json-string">
<xsl:with-param name="text" select="name()"/>
</xsl:call-template>
<xsl:text>:</xsl:text>
<xsl:call-template name="json-string">
<xsl:with-param name="text" select="."/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:when test="count(*[name()=$childName]) > 1">
<xsl:text>{</xsl:text>
<xsl:call-template name="json-string">
<xsl:with-param name="text" select="$childName"/>
</xsl:call-template>
<xsl:text>:[</xsl:text>
<xsl:apply-templates select="*" mode="array"/>
<xsl:text>]}</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>{</xsl:text>
<xsl:apply-templates select="@*" mode="attrs"/>
<xsl:if test='count(@*)>0 and count(*)>0'>,</xsl:if>
<xsl:apply-templates select="*" mode="object"/>
<xsl:text>}</xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="following-sibling::*"><xsl:text>,</xsl:text></xsl:if>
</xsl:template>
<!-- serialize attributes -->
<xsl:template match="@*" mode="attrs">
<xsl:call-template name="json-string">
<xsl:with-param name="text" select="name()"/>
</xsl:call-template>
<xsl:text>:</xsl:text>
<xsl:call-template name="json-string">
<xsl:with-param name="text" select="."/>
</xsl:call-template>
<xsl:if test="position()!=last()"><xsl:text>,</xsl:text></xsl:if>
</xsl:template>
<!-- json-string converts a text to a quoted and escaped JSON string -->
<xsl:template name="json-string">
<xsl:param name="text"/>
<xsl:variable name="tmp">
<xsl:call-template name="string-replace">
<xsl:with-param name="string" select="$text"/>
<xsl:with-param name="from" select="'\'"/>
<xsl:with-param name="to" select="'\\'"/>
</xsl:call-template>
</xsl:variable>
<xsl:variable name="tmp2">
<xsl:call-template name="string-replace">
<xsl:with-param name="string" select="$tmp"/>
<xsl:with-param name="from" select="'
'"/>
<xsl:with-param name="to" select="'\n'"/>
</xsl:call-template>
</xsl:variable>
<xsl:variable name="tmp3">
<xsl:call-template name="string-replace">
<xsl:with-param name="string" select="$tmp2"/>
<xsl:with-param name="from" select="'
'"/>
<xsl:with-param name="to" select="'\r'"/>
</xsl:call-template>
</xsl:variable>
<xsl:variable name="tmp4">
<xsl:call-template name="string-replace">
<xsl:with-param name="string" select="$tmp3"/>
<xsl:with-param name="from" select="'	'"/>
<xsl:with-param name="to" select="'\t'"/>
</xsl:call-template>
</xsl:variable>
<xsl:text>"</xsl:text>
<xsl:call-template name="string-replace">
<xsl:with-param name="string" select="$tmp4"/>
<xsl:with-param name="from" select="'"'"/>
<xsl:with-param name="to" select="'\"'"/>
</xsl:call-template>
<xsl:text>"</xsl:text>
</xsl:template>
<!-- replace all occurences of the character(s) `from'
by the string `to' in the string `string'.-->
<xsl:template name="string-replace">
<xsl:param name="string"/>
<xsl:param name="from"/>
<xsl:param name="to"/>
<xsl:choose>
<xsl:when test="contains($string,$from)">
<xsl:value-of select="substring-before($string,$from)"/>
<xsl:value-of select="$to"/>
<xsl:call-template name="string-replace">
<xsl:with-param name="string" select="substring-after($string,$from)"/>
<xsl:with-param name="from" select="$from"/>
<xsl:with-param name="to" select="$to"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$string"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>