1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
5 <title>Reference</title>
6 <link rel="stylesheet" href="../luadoc.css" type="text/css" />
7 <!--meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/-->
14 <div id="product_logo"></div>
15 <div id="product_name"><big><b></b></big></div>
16 <div id="product_description"></div>
17 </div> <!-- id="product" -->
27 <li><a href="../index.html">Index</a></li>
38 <a href="../modules/luci.dispatcher.html">luci.dispatcher</a>
42 <a href="../modules/luci.http.html">luci.http</a>
46 <a href="../modules/luci.http.protocol.html">luci.http.protocol</a>
50 <a href="../modules/luci.http.protocol.conditionals.html">luci.http.protocol.conditionals</a>
54 <a href="../modules/luci.http.protocol.date.html">luci.http.protocol.date</a>
58 <a href="../modules/luci.http.protocol.mime.html">luci.http.protocol.mime</a>
62 <a href="../modules/luci.i18n.html">luci.i18n</a>
66 <a href="../modules/luci.ip.html">luci.ip</a>
70 <a href="../modules/luci.ip.cidr.html">luci.ip.cidr</a>
74 <a href="../modules/luci.json.html">luci.json</a>
78 <a href="../modules/luci.jsonc.html">luci.jsonc</a>
81 <li><strong>luci.jsonc.parser</strong></li>
84 <a href="../modules/luci.model.ipkg.html">luci.model.ipkg</a>
88 <a href="../modules/luci.model.uci.html">luci.model.uci</a>
92 <a href="../modules/luci.rpcc.html">luci.rpcc</a>
96 <a href="../modules/luci.rpcc.ruci.html">luci.rpcc.ruci</a>
100 <a href="../modules/luci.sys.html">luci.sys</a>
104 <a href="../modules/luci.sys.init.html">luci.sys.init</a>
108 <a href="../modules/luci.sys.iptparser.html">luci.sys.iptparser</a>
112 <a href="../modules/luci.sys.net.html">luci.sys.net</a>
116 <a href="../modules/luci.sys.process.html">luci.sys.process</a>
120 <a href="../modules/luci.sys.user.html">luci.sys.user</a>
124 <a href="../modules/luci.sys.wifi.html">luci.sys.wifi</a>
128 <a href="../modules/luci.util.html">luci.util</a>
132 <a href="../modules/nixio.html">nixio</a>
136 <a href="../modules/nixio.CHANGELOG.html">nixio.CHANGELOG</a>
140 <a href="../modules/nixio.CryptoHash.html">nixio.CryptoHash</a>
144 <a href="../modules/nixio.File.html">nixio.File</a>
148 <a href="../modules/nixio.README.html">nixio.README</a>
152 <a href="../modules/nixio.Socket.html">nixio.Socket</a>
156 <a href="../modules/nixio.TLSContext.html">nixio.TLSContext</a>
160 <a href="../modules/nixio.TLSSocket.html">nixio.TLSSocket</a>
164 <a href="../modules/nixio.UnifiedIO.html">nixio.UnifiedIO</a>
168 <a href="../modules/nixio.bin.html">nixio.bin</a>
172 <a href="../modules/nixio.bit.html">nixio.bit</a>
176 <a href="../modules/nixio.crypto.html">nixio.crypto</a>
180 <a href="../modules/nixio.fs.html">nixio.fs</a>
195 </div><!-- id="navigation" -->
199 <h1>Object Instance <code>luci.jsonc.parser</code></h1>
202 LuCI JSON parser instance.
203 A JSON parser instance is useful to parse JSON data chunk by chunk, without
204 the need to assemble all data in advance.</p>
213 <table class="function_list">
216 <td class="name" nowrap><a href="#parser.parse">parser:parse</a> (json)</td>
219 Parses one chunk of JSON data.</td>
223 <td class="name" nowrap><a href="#parser.get">parser:get</a> ()</td>
226 Convert parsed JSON data into Lua table.</td>
230 <td class="name" nowrap><a href="#parser.set">parser:set</a> (data)</td>
233 Put Lua data into the parser.</td>
237 <td class="name" nowrap><a href="#parser.stringify">parser:stringify</a> (pretty)</td>
240 Serialize current parser state as JSON.</td>
254 <h2><a name="functions"></a>Functions</h2>
255 <dl class="function">
259 <dt><a name="parser.parse"></a><strong>parser:parse</strong> (json)</dt>
263 Parses one chunk of JSON data.
271 json: String containing the JSON fragment to parse
280 <pre>parser = luci.jsonc.new()
283 chunk = ... -- fetch a cunk of data, e.g. from a socket
284 finish, errmsg = <b>parser.parse(chunk)</b>
286 if finish == nil then
287 error("Cannot parse JSON: " .. errmsg)
290 if finish == true then
297 <h3>Return value:</h3>
299 <li><code>true</code> if a complete JSON object has been parsed and no further input is
301 <li><code>false</code> if further input is required</li>
302 <li><code>nil</code> if an error was encountered while parsing the current chunk.
303 In this case a string describing the parse error is returned as second
311 <li><a href="#parser.get">
322 <dt><a name="parser.get"></a><strong>parser:get</strong> ()</dt>
326 Convert parsed JSON data into Lua table.
334 <pre>parser = luci.jsonc.new()
335 parser:parse('{ "example": "test" }')
338 print(data.example) -- "test"</pre>
342 <h3>Return value:</h3>
343 Parsed JSON object converted into a Lua table or <code>nil</code> if the parser
344 didn't finish or encountered an error.
351 <li><a href="#parser.parse">
362 <dt><a name="parser.set"></a><strong>parser:set</strong> (data)</dt>
366 Put Lua data into the parser.
374 data: Lua data to put into the parser object. The data is converted to an
375 internal JSON representation that can be dumped with <code>stringify()</code>.
376 The conversion follows the rules described in <code>luci.jsonc.stringify</code>.
385 <pre>parser = luci.jsonc.new()
386 parser:set({ "some", "data" })</pre>
390 <h3>Return value:</h3>
398 <li><a href="#parser.stringify">
409 <dt><a name="parser.stringify"></a><strong>parser:stringify</strong> (pretty)</dt>
413 Serialize current parser state as JSON.
421 pretty: A boolean value indicating whether the resulting JSON should be pretty printed.
430 <pre>parser = luci.jsonc.new()
431 parser:parse('{ "example": "test" }')
432 print(parser:serialize()) -- '{"example":"test"}'</pre>
436 <h3>Return value:</h3>
437 Returns the serialized JSON data of this parser instance.
450 </div> <!-- id="content" -->
452 </div> <!-- id="main" -->
455 <p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
456 </div> <!-- id="about" -->
458 </div> <!-- id="container" -->