blob: ff92dae824a47b9b311882cdb1bb210cbc8feb01 [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">
Joao Pereira4e274ac2015-07-23 11:54:20 -04004<xsl:output method="html" encoding="utf-8" indent="yes" doctype-system="about:legacy-compat"/>
Chengyu Fan45d1a762014-07-08 14:21:32 -06005
6<xsl:template match="/">
7 <html>
8 <head>
9 <title>NFD Status</title>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070010 <link rel="stylesheet" type="text/css" href="style.css" />
Chengyu Fan45d1a762014-07-08 14:21:32 -060011 </head>
12 <body>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070013 <header>
14 <h1>NFD Status</h1>
15 </header>
16 <article>
17 <div id="content">
18 <xsl:apply-templates/>
19 </div>
20 </article>
21 <footer>
22 <xsl:variable name="version">
23 <xsl:apply-templates select="nfd:nfdStatus/nfd:generalStatus/nfd:version"/>
24 </xsl:variable>
Alexander Afanasyevd7bb88b2015-01-26 18:59:29 -080025 <span class="grey">Powered by </span><a target="_blank" href="http://named-data.net/doc/NFD/"><span class="green">NFD version <xsl:value-of select="$version"/></span></a><span class="grey">.</span>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070026 </footer>
Chengyu Fan45d1a762014-07-08 14:21:32 -060027 </body>
28 </html>
29</xsl:template>
30
Alexander Afanasyev8a093762014-07-16 18:43:09 -070031
32<xsl:template name="formatDate">
33 <xsl:param name="date" />
34 <xsl:value-of select="substring($date, 0, 11)"/>&#160;<xsl:value-of select="substring($date, 12, 8)"/>
35</xsl:template>
36
37<xsl:template name="formatDuration">
38 <xsl:param name="duration" />
39 <xsl:variable name="seconds"><xsl:value-of select="substring($duration, 3, string-length($duration)-3)" /></xsl:variable>
Chengyu Fana55663d2014-08-13 20:31:03 -060040 <xsl:variable name="days"><xsl:value-of select="floor($seconds div 86400)" /></xsl:variable>
41 <xsl:variable name="hours"><xsl:value-of select="floor($seconds div 3600)" /></xsl:variable>
42 <xsl:variable name="minutes"><xsl:value-of select="floor($seconds div 60)" /></xsl:variable>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070043 <xsl:choose>
Chengyu Fana55663d2014-08-13 20:31:03 -060044 <xsl:when test="$days = 1">
45 <xsl:value-of select="$days"/> day
46 </xsl:when>
47 <xsl:when test="$days > 1">
Alexander Afanasyev8a093762014-07-16 18:43:09 -070048 <xsl:value-of select="$days"/> days
49 </xsl:when>
Chengyu Fana55663d2014-08-13 20:31:03 -060050 <xsl:when test="$hours = 1">
51 <xsl:value-of select="$hours"/> hour
52 </xsl:when>
53 <xsl:when test="$hours > 1">
Alexander Afanasyev8a093762014-07-16 18:43:09 -070054 <xsl:value-of select="$hours"/> hours
55 </xsl:when>
Chengyu Fana55663d2014-08-13 20:31:03 -060056 <xsl:when test="$minutes = 1">
57 <xsl:value-of select="$minutes"/> minute
58 </xsl:when>
59 <xsl:when test="$minutes > 1">
Alexander Afanasyev8a093762014-07-16 18:43:09 -070060 <xsl:value-of select="$minutes"/> minutes
61 </xsl:when>
Chengyu Fana55663d2014-08-13 20:31:03 -060062 <xsl:when test="$seconds = 1">
63 <xsl:value-of select="$seconds"/> second
64 </xsl:when>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070065 <xsl:otherwise>
66 <xsl:value-of select="$seconds"/> seconds
67 </xsl:otherwise>
68 </xsl:choose>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070069</xsl:template>
70
Chengyu Fan45d1a762014-07-08 14:21:32 -060071<xsl:template match="nfd:generalStatus">
72 <h2>General NFD status</h2>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070073 <table class="item-list">
74 <thead>
75 <tr>
Chengyu Fan8a53caf2014-08-01 14:08:37 -060076 <th>NFD ID</th>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070077 <th>Version</th>
78 <th>Start time</th>
79 <th>Current time</th>
80 <th>Uptime</th>
81 <th>NameTree Entries</th>
82 <th>FIB entries</th>
83 <th>PIT entries</th>
84 <th>Measurements entries</th>
85 <th>CS entries</th>
86 <th>In Interests</th>
87 <th>Out Interests</th>
88 <th>In Data</th>
89 <th>Out Data</th>
Weiwei Liuace83ac2016-04-25 10:16:37 -070090 <th>In Nacks</th>
91 <th>Out Nacks</th>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070092 </tr>
93 </thead>
94 <tbody>
95 <tr class="center">
Chengyu Fan8a53caf2014-08-01 14:08:37 -060096 <td><xsl:apply-templates select="nfd:nfdId"/></td>
Hila Ben Abraham2ef99572014-12-02 02:45:51 -060097 <td><xsl:value-of select="nfd:version"/></td>
Alexander Afanasyev8a093762014-07-16 18:43:09 -070098 <td><xsl:call-template name="formatDate"><xsl:with-param name="date" select="nfd:startTime" /></xsl:call-template></td>
99 <td><xsl:call-template name="formatDate"><xsl:with-param name="date" select="nfd:currentTime" /></xsl:call-template></td>
100 <td><xsl:call-template name="formatDuration"><xsl:with-param name="duration" select="nfd:uptime" /></xsl:call-template></td>
101 <td><xsl:value-of select="nfd:nNameTreeEntries"/></td>
102 <td><xsl:value-of select="nfd:nFibEntries"/></td>
103 <td><xsl:value-of select="nfd:nPitEntries"/></td>
104 <td><xsl:value-of select="nfd:nMeasurementsEntries"/></td>
105 <td><xsl:value-of select="nfd:nCsEntries"/></td>
106 <td><xsl:value-of select="nfd:packetCounters/nfd:incomingPackets/nfd:nInterests"/></td>
107 <td><xsl:value-of select="nfd:packetCounters/nfd:outgoingPackets/nfd:nInterests"/></td>
108 <td><xsl:value-of select="nfd:packetCounters/nfd:incomingPackets/nfd:nDatas"/></td>
109 <td><xsl:value-of select="nfd:packetCounters/nfd:outgoingPackets/nfd:nDatas"/></td>
Weiwei Liuace83ac2016-04-25 10:16:37 -0700110 <td><xsl:value-of select="nfd:packetCounters/nfd:incomingPackets/nfd:nNacks"/></td>
111 <td><xsl:value-of select="nfd:packetCounters/nfd:outgoingPackets/nfd:nNacks"/></td>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700112 </tr>
113 </tbody>
Chengyu Fan45d1a762014-07-08 14:21:32 -0600114 </table>
115</xsl:template>
116
117<xsl:template match="nfd:channels">
118 <h2>Channels</h2>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700119 <table class="item-list">
120 <thead>
121 <tr>
122 <th>Channel URI</th>
123 </tr>
124 </thead>
125 <tbody>
126 <xsl:for-each select="nfd:channel">
127 <xsl:variable name="style">
128 <xsl:choose>
129 <xsl:when test="position() mod 2 = 1">
130 <xsl:text>odd</xsl:text>
131 </xsl:when>
132 <xsl:otherwise>even</xsl:otherwise>
133 </xsl:choose>
134 </xsl:variable>
135 <tr class="{$style}">
136 <td><xsl:value-of select="nfd:localUri"/></td>
137 </tr>
138 </xsl:for-each>
139 </tbody>
Chengyu Fan45d1a762014-07-08 14:21:32 -0600140 </table>
141</xsl:template>
142
143<xsl:template match="nfd:faces">
144 <h2>Faces</h2>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700145 <table class="item-list">
146 <thead>
147 <tr>
148 <th>Face ID</th>
149 <th>Remote URI</th>
150 <th>Local URI</th>
Chengyu Fan27d570a2014-10-09 11:52:17 -0600151 <th>Scope</th>
152 <th>Persistency</th>
153 <th>LinkType</th>
Eric Newberry6d932e82016-11-24 05:05:43 +0000154 <th>Flags</th>
Chengyu Fan67179642014-08-15 16:00:43 -0600155 <th>Expires in</th>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700156 <th>In Interests</th>
157 <th>In Data</th>
Weiwei Liuace83ac2016-04-25 10:16:37 -0700158 <th>In Nacks</th>
Chengyu Fan3331cfa2014-07-25 17:36:31 -0600159 <th>In Bytes</th>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700160 <th>Out Interests</th>
161 <th>Out Data</th>
Weiwei Liuace83ac2016-04-25 10:16:37 -0700162 <th>Out Nacks</th>
Chengyu Fan3331cfa2014-07-25 17:36:31 -0600163 <th>Out Bytes</th>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700164 </tr>
165 </thead>
166 <tbody>
167 <xsl:for-each select="nfd:face">
168 <xsl:variable name="style">
169 <xsl:choose>
170 <xsl:when test="position() mod 2 = 1">
171 <xsl:text>odd</xsl:text>
172 </xsl:when>
173 <xsl:otherwise>even</xsl:otherwise>
174 </xsl:choose>
175 </xsl:variable>
176 <tr class="{$style}">
177 <td><xsl:value-of select="nfd:faceId"/></td>
178 <td><xsl:value-of select="nfd:remoteUri"/></td>
179 <td><xsl:value-of select="nfd:localUri"/></td>
Chengyu Fan27d570a2014-10-09 11:52:17 -0600180 <td><xsl:value-of select="nfd:faceScope"/></td>
181 <td><xsl:value-of select="nfd:facePersistency"/></td>
182 <td><xsl:value-of select="nfd:linkType"/></td>
Chengyu Fan67179642014-08-15 16:00:43 -0600183 <td>
184 <xsl:choose>
Eric Newberry6d932e82016-11-24 05:05:43 +0000185 <xsl:when test="nfd:flags/nfd:localFieldsEnabled">
186 local-fields
187 </xsl:when>
188 </xsl:choose>
189 </td>
190 <td>
191 <xsl:choose>
Chengyu Fan67179642014-08-15 16:00:43 -0600192 <xsl:when test="nfd:expirationPeriod">
193 <xsl:call-template name="formatDuration"><xsl:with-param name="duration" select="nfd:expirationPeriod" /></xsl:call-template>
194 </xsl:when>
195 <xsl:otherwise>
196 Never
197 </xsl:otherwise>
198 </xsl:choose>
199 </td>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700200 <td><xsl:value-of select="nfd:packetCounters/nfd:incomingPackets/nfd:nInterests"/></td>
201 <td><xsl:value-of select="nfd:packetCounters/nfd:incomingPackets/nfd:nDatas"/></td>
Weiwei Liuace83ac2016-04-25 10:16:37 -0700202 <td><xsl:value-of select="nfd:packetCounters/nfd:incomingPackets/nfd:nNacks"/></td>
Chengyu Fan3331cfa2014-07-25 17:36:31 -0600203 <td><xsl:value-of select="nfd:byteCounters/nfd:incomingBytes"/></td>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700204 <td><xsl:value-of select="nfd:packetCounters/nfd:outgoingPackets/nfd:nInterests"/></td>
205 <td><xsl:value-of select="nfd:packetCounters/nfd:outgoingPackets/nfd:nDatas"/></td>
Weiwei Liuace83ac2016-04-25 10:16:37 -0700206 <td><xsl:value-of select="nfd:packetCounters/nfd:outgoingPackets/nfd:nNacks"/></td>
Chengyu Fan3331cfa2014-07-25 17:36:31 -0600207 <td><xsl:value-of select="nfd:byteCounters/nfd:outgoingBytes"/></td>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700208 </tr>
209 </xsl:for-each>
210 </tbody>
Chengyu Fan45d1a762014-07-08 14:21:32 -0600211 </table>
212</xsl:template>
213
214<xsl:template match="nfd:fib">
215 <h2>FIB</h2>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700216 <table class="item-list">
217 <thead>
218 <tr>
Chengyu Fan30aa2072014-07-20 13:52:32 -0600219 <th width="20%">Prefix</th>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700220 <th>NextHops</th>
221 </tr>
222 </thead>
223 <tbody>
224 <xsl:for-each select="nfd:fibEntry">
225 <xsl:variable name="style">
226 <xsl:choose>
227 <xsl:when test="position() mod 2 = 1">
228 <xsl:text>odd</xsl:text>
229 </xsl:when>
230 <xsl:otherwise>even</xsl:otherwise>
231 </xsl:choose>
232 </xsl:variable>
233 <tr class="{$style}">
234 <td style="text-align:left;vertical-align:top;padding:0"><xsl:value-of select="nfd:prefix"/></td>
235 <td>
Chengyu Fan30aa2072014-07-20 13:52:32 -0600236 <table class="item-sublist">
237 <tr>
238 <th>FaceId</th>
239 <xsl:for-each select="nfd:nextHops/nfd:nextHop">
240 <td><xsl:value-of select="nfd:faceId"/></td>
241 </xsl:for-each>
242 </tr>
243 <tr>
244 <th>Cost</th>
245 <xsl:for-each select="nfd:nextHops/nfd:nextHop">
246 <td><xsl:value-of select="nfd:cost"/></td>
247 </xsl:for-each>
248 </tr>
249 </table>
250 </td>
251 </tr>
252 </xsl:for-each>
253 </tbody>
254 </table>
255</xsl:template>
256
257<xsl:template match="nfd:rib">
258 <h2>RIB</h2>
259 <table class="item-list">
260 <thead>
261 <tr>
262 <th width="20%">Prefix</th>
263 <th>Routes</th>
264 </tr>
265 </thead>
266 <tbody>
267 <xsl:for-each select="nfd:ribEntry">
268 <xsl:variable name="style">
269 <xsl:choose>
270 <xsl:when test="position() mod 2 = 1">
271 <xsl:text>odd</xsl:text>
272 </xsl:when>
273 <xsl:otherwise>even</xsl:otherwise>
274 </xsl:choose>
275 </xsl:variable>
276 <tr class="{$style}">
277 <td style="text-align:left;vertical-align:top;padding:0"><xsl:value-of select="nfd:prefix"/></td>
278 <td>
279 <table class="item-sublist">
280 <tr>
281 <th>FaceId</th>
282 <xsl:for-each select="nfd:routes/nfd:route">
283 <td><xsl:value-of select="nfd:faceId"/></td>
284 </xsl:for-each>
285 </tr>
286 <tr>
287 <th>Origin</th>
288 <xsl:for-each select="nfd:routes/nfd:route">
289 <td><xsl:value-of select="nfd:origin"/></td>
290 </xsl:for-each>
291 </tr>
292 <tr>
293 <th>Cost</th>
294 <xsl:for-each select="nfd:routes/nfd:route">
295 <td><xsl:value-of select="nfd:cost"/></td>
296 </xsl:for-each>
297 </tr>
298 <tr>
Chengyu Fan1c630ba2014-08-20 13:27:58 -0500299 <th>ChildInherit</th>
Chengyu Fan30aa2072014-07-20 13:52:32 -0600300 <xsl:for-each select="nfd:routes/nfd:route">
Chengyu Fan1c630ba2014-08-20 13:27:58 -0500301 <td>
302 <xsl:if test="nfd:flags/nfd:childInherit">
303 Y
304 </xsl:if>
305 </td>
306 </xsl:for-each>
307 </tr>
308 <tr>
309 <th>RibCapture</th>
310 <xsl:for-each select="nfd:routes/nfd:route">
311 <td>
312 <xsl:if test="nfd:flags/nfd:ribCapture">
313 Y
314 </xsl:if>
315 </td>
Chengyu Fan30aa2072014-07-20 13:52:32 -0600316 </xsl:for-each>
317 </tr>
318 <tr>
319 <th>Expires in</th>
320 <xsl:for-each select="nfd:routes/nfd:route">
321 <td>
322 <xsl:choose>
323 <xsl:when test="nfd:expirationPeriod">
324 <xsl:call-template name="formatDuration"><xsl:with-param name="duration" select="nfd:expirationPeriod" /></xsl:call-template>
325 </xsl:when>
326 <xsl:otherwise>
327 Never
328 </xsl:otherwise>
329 </xsl:choose>
330 </td>
331 </xsl:for-each>
332 </tr>
333 </table>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700334 </td>
335 </tr>
Chengyu Fan45d1a762014-07-08 14:21:32 -0600336 </xsl:for-each>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700337 </tbody>
Chengyu Fan45d1a762014-07-08 14:21:32 -0600338 </table>
339</xsl:template>
340
341<xsl:template match="nfd:strategyChoices">
342 <h2>Strategy Choices</h2>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700343 <table class="item-list">
344 <thead>
345 <tr>
Chengyu Fan30aa2072014-07-20 13:52:32 -0600346 <th width="20%">Namespace</th>
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700347 <th>Strategy Name</th>
348 </tr>
349 </thead>
350 <tbody>
351 <xsl:for-each select="nfd:strategyChoice">
352 <tr>
353 <td><xsl:value-of select="nfd:namespace"/></td>
354 <td><xsl:value-of select="nfd:strategy/nfd:name"/></td>
355 </tr>
356 </xsl:for-each>
357 </tbody>
Chengyu Fan45d1a762014-07-08 14:21:32 -0600358 </table>
359</xsl:template>
360
361</xsl:stylesheet>