blob: 948c83631d1a1a8b124bee133699c1a67475e812 [file] [log] [blame]
Chengyu Fan45d1a762014-07-08 14:21:32 -06001<xsl:stylesheet version="1.0"
Chengyu Fan45d1a762014-07-08 14:21:32 -06002xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3xmlns:nfd="ndn:/localhost/nfd/status/1">
Alexander Afanasyev8a093762014-07-16 18:43:09 -07004<xsl:output method="html" encoding="utf-8" indent="yes" />
Chengyu Fan45d1a762014-07-08 14:21:32 -06005
6<xsl:template match="/">
Alexander Afanasyev8a093762014-07-16 18:43:09 -07007 <xsl:text disable-output-escaping='yes'>&lt;!DOCTYPE html></xsl:text>
Chengyu Fan45d1a762014-07-08 14:21:32 -06008 <html>
9 <head>
10 <title>NFD Status</title>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070011 <link rel="stylesheet" type="text/css" href="style.css" />
Chengyu Fan45d1a762014-07-08 14:21:32 -060012 </head>
13 <body>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070014 <header>
15 <h1>NFD Status</h1>
16 </header>
17 <article>
18 <div id="content">
19 <xsl:apply-templates/>
20 </div>
21 </article>
22 <footer>
23 <xsl:variable name="version">
24 <xsl:apply-templates select="nfd:nfdStatus/nfd:generalStatus/nfd:version"/>
25 </xsl:variable>
26 <span class="grey">Powered by </span><a target="_blank" href="http://named-data.net/doc/NFD/{$version}/"><span class="green">NFD version <xsl:value-of select="$version"/></span></a><span class="grey">.</span>
27 </footer>
Chengyu Fan45d1a762014-07-08 14:21:32 -060028 </body>
29 </html>
30</xsl:template>
31
Alexander Afanasyev8a093762014-07-16 18:43:09 -070032<xsl:template match="nfd:version">
33 <xsl:variable name="major"><xsl:value-of select="floor(. div 1000000) mod 1000"/></xsl:variable>
34 <xsl:variable name="minor"><xsl:value-of select="floor(. div 1000) mod 1000"/></xsl:variable>
35 <xsl:variable name="patch"><xsl:value-of select=". mod 1000"/></xsl:variable>
36
37 <xsl:value-of select="$major"/>.<xsl:value-of select="$minor"/>.<xsl:value-of select="$patch"/>
38</xsl:template>
39
40<xsl:template name="formatDate">
41 <xsl:param name="date" />
42 <xsl:value-of select="substring($date, 0, 11)"/>&#160;<xsl:value-of select="substring($date, 12, 8)"/>
43</xsl:template>
44
45<xsl:template name="formatDuration">
46 <xsl:param name="duration" />
47 <xsl:variable name="seconds"><xsl:value-of select="substring($duration, 3, string-length($duration)-3)" /></xsl:variable>
Chengyu Fana55663d2014-08-13 20:31:03 -060048 <xsl:variable name="days"><xsl:value-of select="floor($seconds div 86400)" /></xsl:variable>
49 <xsl:variable name="hours"><xsl:value-of select="floor($seconds div 3600)" /></xsl:variable>
50 <xsl:variable name="minutes"><xsl:value-of select="floor($seconds div 60)" /></xsl:variable>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070051 <xsl:choose>
Chengyu Fana55663d2014-08-13 20:31:03 -060052 <xsl:when test="$days = 1">
53 <xsl:value-of select="$days"/> day
54 </xsl:when>
55 <xsl:when test="$days > 1">
Alexander Afanasyev8a093762014-07-16 18:43:09 -070056 <xsl:value-of select="$days"/> days
57 </xsl:when>
Chengyu Fana55663d2014-08-13 20:31:03 -060058 <xsl:when test="$hours = 1">
59 <xsl:value-of select="$hours"/> hour
60 </xsl:when>
61 <xsl:when test="$hours > 1">
Alexander Afanasyev8a093762014-07-16 18:43:09 -070062 <xsl:value-of select="$hours"/> hours
63 </xsl:when>
Chengyu Fana55663d2014-08-13 20:31:03 -060064 <xsl:when test="$minutes = 1">
65 <xsl:value-of select="$minutes"/> minute
66 </xsl:when>
67 <xsl:when test="$minutes > 1">
Alexander Afanasyev8a093762014-07-16 18:43:09 -070068 <xsl:value-of select="$minutes"/> minutes
69 </xsl:when>
Chengyu Fana55663d2014-08-13 20:31:03 -060070 <xsl:when test="$seconds = 1">
71 <xsl:value-of select="$seconds"/> second
72 </xsl:when>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070073 <xsl:otherwise>
74 <xsl:value-of select="$seconds"/> seconds
75 </xsl:otherwise>
76 </xsl:choose>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070077</xsl:template>
78
Chengyu Fan45d1a762014-07-08 14:21:32 -060079<xsl:template match="nfd:generalStatus">
80 <h2>General NFD status</h2>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070081 <table class="item-list">
82 <thead>
83 <tr>
Chengyu Fan8a53caf2014-08-01 14:08:37 -060084 <th>NFD ID</th>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070085 <th>Version</th>
86 <th>Start time</th>
87 <th>Current time</th>
88 <th>Uptime</th>
89 <th>NameTree Entries</th>
90 <th>FIB entries</th>
91 <th>PIT entries</th>
92 <th>Measurements entries</th>
93 <th>CS entries</th>
94 <th>In Interests</th>
95 <th>Out Interests</th>
96 <th>In Data</th>
97 <th>Out Data</th>
98 </tr>
99 </thead>
100 <tbody>
101 <tr class="center">
Chengyu Fan8a53caf2014-08-01 14:08:37 -0600102 <td><xsl:apply-templates select="nfd:nfdId"/></td>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700103 <td><xsl:apply-templates select="nfd:version"/></td>
104 <td><xsl:call-template name="formatDate"><xsl:with-param name="date" select="nfd:startTime" /></xsl:call-template></td>
105 <td><xsl:call-template name="formatDate"><xsl:with-param name="date" select="nfd:currentTime" /></xsl:call-template></td>
106 <td><xsl:call-template name="formatDuration"><xsl:with-param name="duration" select="nfd:uptime" /></xsl:call-template></td>
107 <td><xsl:value-of select="nfd:nNameTreeEntries"/></td>
108 <td><xsl:value-of select="nfd:nFibEntries"/></td>
109 <td><xsl:value-of select="nfd:nPitEntries"/></td>
110 <td><xsl:value-of select="nfd:nMeasurementsEntries"/></td>
111 <td><xsl:value-of select="nfd:nCsEntries"/></td>
112 <td><xsl:value-of select="nfd:packetCounters/nfd:incomingPackets/nfd:nInterests"/></td>
113 <td><xsl:value-of select="nfd:packetCounters/nfd:outgoingPackets/nfd:nInterests"/></td>
114 <td><xsl:value-of select="nfd:packetCounters/nfd:incomingPackets/nfd:nDatas"/></td>
115 <td><xsl:value-of select="nfd:packetCounters/nfd:outgoingPackets/nfd:nDatas"/></td>
116 </tr>
117 </tbody>
Chengyu Fan45d1a762014-07-08 14:21:32 -0600118 </table>
119</xsl:template>
120
121<xsl:template match="nfd:channels">
122 <h2>Channels</h2>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700123 <table class="item-list">
124 <thead>
125 <tr>
126 <th>Channel URI</th>
127 </tr>
128 </thead>
129 <tbody>
130 <xsl:for-each select="nfd:channel">
131 <xsl:variable name="style">
132 <xsl:choose>
133 <xsl:when test="position() mod 2 = 1">
134 <xsl:text>odd</xsl:text>
135 </xsl:when>
136 <xsl:otherwise>even</xsl:otherwise>
137 </xsl:choose>
138 </xsl:variable>
139 <tr class="{$style}">
140 <td><xsl:value-of select="nfd:localUri"/></td>
141 </tr>
142 </xsl:for-each>
143 </tbody>
Chengyu Fan45d1a762014-07-08 14:21:32 -0600144 </table>
145</xsl:template>
146
147<xsl:template match="nfd:faces">
148 <h2>Faces</h2>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700149 <table class="item-list">
150 <thead>
151 <tr>
152 <th>Face ID</th>
153 <th>Remote URI</th>
154 <th>Local URI</th>
155 <th>In Interests</th>
156 <th>In Data</th>
Chengyu Fan3331cfa2014-07-25 17:36:31 -0600157 <th>In Bytes</th>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700158 <th>Out Interests</th>
159 <th>Out Data</th>
Chengyu Fan3331cfa2014-07-25 17:36:31 -0600160 <th>Out Bytes</th>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700161 </tr>
162 </thead>
163 <tbody>
164 <xsl:for-each select="nfd:face">
165 <xsl:variable name="style">
166 <xsl:choose>
167 <xsl:when test="position() mod 2 = 1">
168 <xsl:text>odd</xsl:text>
169 </xsl:when>
170 <xsl:otherwise>even</xsl:otherwise>
171 </xsl:choose>
172 </xsl:variable>
173 <tr class="{$style}">
174 <td><xsl:value-of select="nfd:faceId"/></td>
175 <td><xsl:value-of select="nfd:remoteUri"/></td>
176 <td><xsl:value-of select="nfd:localUri"/></td>
177 <td><xsl:value-of select="nfd:packetCounters/nfd:incomingPackets/nfd:nInterests"/></td>
178 <td><xsl:value-of select="nfd:packetCounters/nfd:incomingPackets/nfd:nDatas"/></td>
Chengyu Fan3331cfa2014-07-25 17:36:31 -0600179 <td><xsl:value-of select="nfd:byteCounters/nfd:incomingBytes"/></td>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700180 <td><xsl:value-of select="nfd:packetCounters/nfd:outgoingPackets/nfd:nInterests"/></td>
181 <td><xsl:value-of select="nfd:packetCounters/nfd:outgoingPackets/nfd:nDatas"/></td>
Chengyu Fan3331cfa2014-07-25 17:36:31 -0600182 <td><xsl:value-of select="nfd:byteCounters/nfd:outgoingBytes"/></td>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700183 </tr>
184 </xsl:for-each>
185 </tbody>
Chengyu Fan45d1a762014-07-08 14:21:32 -0600186 </table>
187</xsl:template>
188
189<xsl:template match="nfd:fib">
190 <h2>FIB</h2>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700191 <table class="item-list">
192 <thead>
193 <tr>
Chengyu Fan30aa2072014-07-20 13:52:32 -0600194 <th width="20%">Prefix</th>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700195 <th>NextHops</th>
196 </tr>
197 </thead>
198 <tbody>
199 <xsl:for-each select="nfd:fibEntry">
200 <xsl:variable name="style">
201 <xsl:choose>
202 <xsl:when test="position() mod 2 = 1">
203 <xsl:text>odd</xsl:text>
204 </xsl:when>
205 <xsl:otherwise>even</xsl:otherwise>
206 </xsl:choose>
207 </xsl:variable>
208 <tr class="{$style}">
209 <td style="text-align:left;vertical-align:top;padding:0"><xsl:value-of select="nfd:prefix"/></td>
210 <td>
Chengyu Fan30aa2072014-07-20 13:52:32 -0600211 <table class="item-sublist">
212 <tr>
213 <th>FaceId</th>
214 <xsl:for-each select="nfd:nextHops/nfd:nextHop">
215 <td><xsl:value-of select="nfd:faceId"/></td>
216 </xsl:for-each>
217 </tr>
218 <tr>
219 <th>Cost</th>
220 <xsl:for-each select="nfd:nextHops/nfd:nextHop">
221 <td><xsl:value-of select="nfd:cost"/></td>
222 </xsl:for-each>
223 </tr>
224 </table>
225 </td>
226 </tr>
227 </xsl:for-each>
228 </tbody>
229 </table>
230</xsl:template>
231
232<xsl:template match="nfd:rib">
233 <h2>RIB</h2>
234 <table class="item-list">
235 <thead>
236 <tr>
237 <th width="20%">Prefix</th>
238 <th>Routes</th>
239 </tr>
240 </thead>
241 <tbody>
242 <xsl:for-each select="nfd:ribEntry">
243 <xsl:variable name="style">
244 <xsl:choose>
245 <xsl:when test="position() mod 2 = 1">
246 <xsl:text>odd</xsl:text>
247 </xsl:when>
248 <xsl:otherwise>even</xsl:otherwise>
249 </xsl:choose>
250 </xsl:variable>
251 <tr class="{$style}">
252 <td style="text-align:left;vertical-align:top;padding:0"><xsl:value-of select="nfd:prefix"/></td>
253 <td>
254 <table class="item-sublist">
255 <tr>
256 <th>FaceId</th>
257 <xsl:for-each select="nfd:routes/nfd:route">
258 <td><xsl:value-of select="nfd:faceId"/></td>
259 </xsl:for-each>
260 </tr>
261 <tr>
262 <th>Origin</th>
263 <xsl:for-each select="nfd:routes/nfd:route">
264 <td><xsl:value-of select="nfd:origin"/></td>
265 </xsl:for-each>
266 </tr>
267 <tr>
268 <th>Cost</th>
269 <xsl:for-each select="nfd:routes/nfd:route">
270 <td><xsl:value-of select="nfd:cost"/></td>
271 </xsl:for-each>
272 </tr>
273 <tr>
274 <th>Flags</th>
275 <xsl:for-each select="nfd:routes/nfd:route">
276 <td><xsl:value-of select="nfd:flags"/></td>
277 </xsl:for-each>
278 </tr>
279 <tr>
280 <th>Expires in</th>
281 <xsl:for-each select="nfd:routes/nfd:route">
282 <td>
283 <xsl:choose>
284 <xsl:when test="nfd:expirationPeriod">
285 <xsl:call-template name="formatDuration"><xsl:with-param name="duration" select="nfd:expirationPeriod" /></xsl:call-template>
286 </xsl:when>
287 <xsl:otherwise>
288 Never
289 </xsl:otherwise>
290 </xsl:choose>
291 </td>
292 </xsl:for-each>
293 </tr>
294 </table>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700295 </td>
296 </tr>
Chengyu Fan45d1a762014-07-08 14:21:32 -0600297 </xsl:for-each>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700298 </tbody>
Chengyu Fan45d1a762014-07-08 14:21:32 -0600299 </table>
300</xsl:template>
301
302<xsl:template match="nfd:strategyChoices">
303 <h2>Strategy Choices</h2>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700304 <table class="item-list">
305 <thead>
306 <tr>
Chengyu Fan30aa2072014-07-20 13:52:32 -0600307 <th width="20%">Namespace</th>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700308 <th>Strategy Name</th>
309 </tr>
310 </thead>
311 <tbody>
312 <xsl:for-each select="nfd:strategyChoice">
313 <tr>
314 <td><xsl:value-of select="nfd:namespace"/></td>
315 <td><xsl:value-of select="nfd:strategy/nfd:name"/></td>
316 </tr>
317 </xsl:for-each>
318 </tbody>
Chengyu Fan45d1a762014-07-08 14:21:32 -0600319 </table>
320</xsl:template>
321
322</xsl:stylesheet>