md_README.generic-table.html 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
  5. <meta http-equiv="X-UA-Compatible" content="IE=9"/>
  6. <meta name="generator" content="Doxygen 1.8.11"/>
  7. <title>libwebsockets: Notes about generic-table</title>
  8. <link href="tabs.css" rel="stylesheet" type="text/css"/>
  9. <script type="text/javascript" src="jquery.js"></script>
  10. <script type="text/javascript" src="dynsections.js"></script>
  11. <link href="navtree.css" rel="stylesheet" type="text/css"/>
  12. <script type="text/javascript" src="resize.js"></script>
  13. <script type="text/javascript" src="navtreedata.js"></script>
  14. <script type="text/javascript" src="navtree.js"></script>
  15. <script type="text/javascript">
  16. $(document).ready(initResizable);
  17. $(window).load(resizeHeight);
  18. </script>
  19. <link href="doxygen.css" rel="stylesheet" type="text/css" />
  20. </head>
  21. <body>
  22. <div id="top"><!-- do not remove this div, it is closed by doxygen! -->
  23. <div id="titlearea">
  24. <table cellspacing="0" cellpadding="0">
  25. <tbody>
  26. <tr style="height: 56px;">
  27. <td id="projectlogo"><img alt="Logo" src="libwebsockets.org-logo.png"/></td>
  28. <td id="projectalign" style="padding-left: 0.5em;">
  29. <div id="projectname">libwebsockets
  30. </div>
  31. <div id="projectbrief">Lightweight C library for HTML5 websockets</div>
  32. </td>
  33. </tr>
  34. </tbody>
  35. </table>
  36. </div>
  37. <!-- end header part -->
  38. <!-- Generated by Doxygen 1.8.11 -->
  39. <div id="navrow1" class="tabs">
  40. <ul class="tablist">
  41. <li><a href="index.html"><span>Main&#160;Page</span></a></li>
  42. <li class="current"><a href="pages.html"><span>Related&#160;Pages</span></a></li>
  43. <li><a href="modules.html"><span>Modules</span></a></li>
  44. <li><a href="annotated.html"><span>Data&#160;Structures</span></a></li>
  45. <li><a href="files.html"><span>Files</span></a></li>
  46. </ul>
  47. </div>
  48. </div><!-- top -->
  49. <div id="side-nav" class="ui-resizable side-nav-resizable">
  50. <div id="nav-tree">
  51. <div id="nav-tree-contents">
  52. <div id="nav-sync" class="sync"></div>
  53. </div>
  54. </div>
  55. <div id="splitbar" style="-moz-user-select:none;"
  56. class="ui-resizable-handle">
  57. </div>
  58. </div>
  59. <script type="text/javascript">
  60. $(document).ready(function(){initNavTree('md_README.generic-table.html','');});
  61. </script>
  62. <div id="doc-content">
  63. <div class="header">
  64. <div class="headertitle">
  65. <div class="title">Notes about generic-table </div> </div>
  66. </div><!--header-->
  67. <div class="contents">
  68. <div class="textblock"><h1><a class="anchor" id="gtint"></a>
  69. What is generic-table?</h1>
  70. <p>Generic-table is a JSON schema and client-side JS file that makes it easy to display live, table structured HTML over a ws link.</p>
  71. <p>An example plugin and index.html using it are provided, but lwsgt itself doesn't have its own plugin, it's just a JSON schema and client-side JS that other plugins can use to simplify displaying live, table-based data without having to reinvent the wheel each time.</p>
  72. <p>The ws protocol sends JSON describing the table, and then JSON updating the table contents when it chooses, the brower table is updated automatically, live.</p>
  73. <div class="image">
  74. <img src="lwsgt-overview.png" alt="lwsgt-overview.png"/>
  75. </div>
  76. <ul>
  77. <li>Example protocol plugin (displays directory contents): <a href="https://github.com/warmcat/libwebsockets/tree/master/plugins/generic-table/protocol_table_dirlisting.c">https://github.com/warmcat/libwebsockets/tree/master/plugins/generic-table/protocol_table_dirlisting.c</a></li>
  78. <li>Example HTML: <a href="https://github.com/warmcat/libwebsockets/tree/master/plugins/generic-table/assets/index.html">https://github.com/warmcat/libwebsockets/tree/master/plugins/generic-table/assets/index.html</a></li>
  79. <li>lwsgt.js (client-side table rendering / ws link management): <a href="https://github.com/warmcat/libwebsockets/tree/master/plugins/generic-table/assets/lwsgt.js">https://github.com/warmcat/libwebsockets/tree/master/plugins/generic-table/assets/lwsgt.js</a></li>
  80. </ul>
  81. <h1><a class="anchor" id="gteb"></a>
  82. Enabling for build</h1>
  83. <p>Enable the demo plugin at CMake with -DLWS_WITH_PLUGINS=1</p>
  84. <h1><a class="anchor" id="gtinth"></a>
  85. Integrating with your html</h1>
  86. <ul>
  87. <li>In your HEAD section, include lwsgt.js</li>
  88. </ul>
  89. <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;&lt;script src=&quot;lwsgt.js&quot;&gt;&lt;/script&gt;</div></div><!-- fragment --><ul>
  90. <li>Also in your HEAD section, style the lwsgt CSS, eg</li>
  91. </ul>
  92. <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;&lt;style&gt;</div><div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160;.lwsgt_title { font-size: 24; text-align:center }</div><div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160;.lwsgt_breadcrumbs { font-size: 18; text-align:left }</div><div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160;.lwsgt_table { font-size: 14; padding:12px; margin: 12px; align:center }</div><div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160;.lwsgt_hdr { font-size: 18; text-align:center;</div><div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160; background-color: rgba(40, 40, 40, 0.8); color: white }</div><div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160;.lwsgt_tr { padding: 10px }</div><div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160;.lwsgt_td { padding: 3px }</div><div class="line"><a name="l00009"></a><span class="lineno"> 9</span>&#160;&lt;/style&gt;</div></div><!-- fragment --><p>You can skip this but the result will be less beautiful until some CSS is provided.</p>
  93. <ul>
  94. <li>In your body section, declare a div with an id (can be whatever you want)</li>
  95. </ul>
  96. <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;&lt;tr&gt;&lt;td&gt;&lt;div id=&quot;lwsgt1&quot; class=&quot;group1&quot;&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;</div></div><!-- fragment --><p>lwsgt JS will put its content there.</p>
  97. <ul>
  98. <li>Finally in a &lt;script&gt; at the end of your page, instantiate lwsgt and provide a custom callback for clickable links</li>
  99. </ul>
  100. <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;&lt;script&gt;</div><div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160;var v1 = new lwsgt_initial(&quot;Dir listing demo&quot;,</div><div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160; &quot;protocol-lws-table-dirlisting&quot;,</div><div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160; &quot;lwsgt1&quot;, &quot;lwsgt_dir_click&quot;, &quot;v1&quot;);</div><div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160;</div><div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160;function lwsgt_dir_click(gt, u, col, row)</div><div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160;{</div><div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160; if (u[0] == &#39;=&#39;) { /* change directory */</div><div class="line"><a name="l00009"></a><span class="lineno"> 9</span>&#160; window[gt].lwsgt_ws.send(u.substring(1, u.length));</div><div class="line"><a name="l00010"></a><span class="lineno"> 10</span>&#160; return;</div><div class="line"><a name="l00011"></a><span class="lineno"> 11</span>&#160; }</div><div class="line"><a name="l00012"></a><span class="lineno"> 12</span>&#160; var win = window.open(u, &#39;_blank&#39;);</div><div class="line"><a name="l00013"></a><span class="lineno"> 13</span>&#160; win.focus();</div><div class="line"><a name="l00014"></a><span class="lineno"> 14</span>&#160;}</div><div class="line"><a name="l00015"></a><span class="lineno"> 15</span>&#160;</div><div class="line"><a name="l00016"></a><span class="lineno"> 16</span>&#160;&lt;/script&gt;</div></div><!-- fragment --><p>In the callback, you can recover the ws object by <code>window[gt].lwsgt_ws</code>.</p>
  101. <h1><a class="anchor" id="gtc"></a>
  102. Lwsgt constructor</h1>
  103. <p>To instantiate the ws link and lwsgt instance, your HTML must call a lwsgt constructor for each region on the page managed by lwsgt.</p>
  104. <p><code>var myvar = new lwsgt_initial(title, ws_protocol, div_id, click_cb, myvar);</code></p>
  105. <p>All of the arguments are strings.</p>
  106. <table class="doxtable">
  107. <tr>
  108. <th>Parameter </th><th>Description </th></tr>
  109. <tr>
  110. <td>title </td><td>Title string to go above the table </td></tr>
  111. <tr>
  112. <td>ws_protocol </td><td>Protocol name string to use when making ws connection </td></tr>
  113. <tr>
  114. <td>div_id </td><td>HTML id of div to fill with content </td></tr>
  115. <tr>
  116. <td>click_cb </td><td>Callback function name string to handle clickable links </td></tr>
  117. <tr>
  118. <td>myvar </td><td>Name of var used to hold this instantiation globally </td></tr>
  119. </table>
  120. <p>Note "myvar" is needed so it can be passed to the click handling callback.</p>
  121. <h1><a class="anchor" id="gtclick"></a>
  122. Lwsgt click handling function</h1>
  123. <p>When a clickable link produced by lwsgt is clicked, the function named in the click_cb parameter to lwsgt_initial is called.</p>
  124. <p>That function is expected to take four parameters, eg</p>
  125. <p><code>function lwsgt_dir_click(gt, u, col, row)</code></p>
  126. <table class="doxtable">
  127. <tr>
  128. <th>Parameter </th><th>Description </th></tr>
  129. <tr>
  130. <td>gt </td><td>Name of global var holding this lwsgt context (ie, myvar) </td></tr>
  131. <tr>
  132. <td>u </td><td>Link "url" string </td></tr>
  133. <tr>
  134. <td>col </td><td>Table column number link is from </td></tr>
  135. <tr>
  136. <td>row </td><td>Table row number link is from </td></tr>
  137. </table>
  138. <h1><a class="anchor" id="gtgj"></a>
  139. Generic-table JSON</h1>
  140. <h3>Column layout</h3>
  141. <p>When the ws connection is established, the protocol should send a JSON message describing the table columns. For example</p>
  142. <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;&quot;cols&quot;: [</div><div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160; { &quot;name&quot;: &quot;Date&quot; },</div><div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160; { &quot;name&quot;: &quot;Size&quot;, &quot;align&quot;: &quot;right&quot; },</div><div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160; { &quot;name&quot;: &quot;Icon&quot; },</div><div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160; { &quot;name&quot;: &quot;Name&quot;, &quot;href&quot;: &quot;uri&quot;},</div><div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160; { &quot;name&quot;: &quot;uri&quot;, &quot;hide&quot;: &quot;1&quot; }</div><div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160; ]</div><div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160;}</div></div><!-- fragment --><ul>
  143. <li>This describes 5 columns</li>
  144. <li>Only four columns (not "uri") should be visible</li>
  145. <li>"Name" should be presented as a clickable link using "uri" as the destination, when a "uri" field is presented.</li>
  146. <li>"Size" field should be presented aligned to the right</li>
  147. </ul>
  148. <h3>Breadcrumbs</h3>
  149. <p>When a view is hierarchical, it's useful to provide a "path" with links back in the "path", known as "breadcrumbs".</p>
  150. <p>Elements before the last one should provide a "url" member as well as the displayable name, which is used to create the link destination.</p>
  151. <p>The last element, being the current displayed page should not have a url member and be displayed without link style.</p>
  152. <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;&quot;breadcrumbs&quot;:[{&quot;name&quot;:&quot;top&quot;, &quot;url&quot;: &quot;/&quot; }, {&quot;name&quot;:&quot;mydir&quot;}]</div></div><!-- fragment --><h3>Table data</h3>
  153. <p>The actual file data consists of an array of rows, containing the columns mentioned in the original "cols" section.</p>
  154. <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;&quot;data&quot;:[</div><div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160; {</div><div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160; &quot;Icon&quot;:&quot; &quot;,</div><div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160; &quot;Date&quot;:&quot;2015-Feb-06 03:08:35 +0000&quot;,</div><div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160; &quot;Size&quot;:&quot;1406&quot;,</div><div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160; &quot;uri&quot;:&quot;./serve//favicon.ico&quot;,</div><div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160; &quot;Name&quot;:&quot;favicon.ico&quot;</div><div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160; }</div><div class="line"><a name="l00009"></a><span class="lineno"> 9</span>&#160;]</div></div><!-- fragment --><h1><a class="anchor" id="gtdirl"></a>
  155. Setting up protocol-lws-table-dirlisting</h1>
  156. <p>The example protocol needs two mounts, one to provide the index.html, js and the protocol itself</p>
  157. <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;{</div><div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160; &quot;mountpoint&quot;: &quot;/dirtest&quot;,</div><div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160; &quot;origin&quot;: &quot;file:///usr/share/libwebsockets-test-server/generic-table&quot;,</div><div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160; &quot;origin&quot;: &quot;callback://protocol-lws-table-dirlisting&quot;,</div><div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160; &quot;default&quot;: &quot;index.html&quot;,</div><div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160; &quot;pmo&quot;: [{</div><div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160; &quot;dir&quot;: &quot;/usr/share/libwebsockets-test-server&quot;</div><div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160; }]</div><div class="line"><a name="l00009"></a><span class="lineno"> 9</span>&#160;},</div></div><!-- fragment --><p>The protocol wants a per-mount option (PMO) to tell it the base directory it is serving from, named "dir".</p>
  158. <p>The other mount is there to simply serve items that get clicked on from the table in a secure way</p>
  159. <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;{</div><div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160; &quot;mountpoint&quot;: &quot;/dirtest/serve&quot;,</div><div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160; &quot;origin&quot;: &quot;file:///usr/share/libwebsockets-test-server&quot;,</div><div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160; &quot;default&quot;: &quot;index.html&quot;</div><div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160;},</div></div><!-- fragment --><p>This last bit is not related to using lwsgt itself. </p>
  160. </div></div><!-- contents -->
  161. </div><!-- doc-content -->
  162. <!-- start footer part -->
  163. <div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
  164. <ul>
  165. <li class="footer">Generated by
  166. <a href="http://www.doxygen.org/index.html">
  167. <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.11 </li>
  168. </ul>
  169. </div>
  170. </body>
  171. </html>