elihugarret / xml2lua

An XML Parser written entirely in Lua 5

Home Page:http://manoelcampos.github.io/xml2lua/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

xml2lua-1.0-1 Build Status MIT license

xml2lua is an XML parser written entirely in Lua which doesn't depend on any external C/C++ library.

This version was adapted to work with Lua 5 and can be used in Lua applications, including interactive Digital Television (DTV) Ginga NCL applications for the Brazilian DTV System (worldwide known as ISDB-T International or ISDB-Tb).

The original parser was written by Paul Chakravarti and is available on LuaUsers.

The code (and documentation) is not complete yet, however it is usable and this release is intended to avoid potential duplication between efforts and get early feedback.

The API is relatively stable however there may be some detailed changes.

Installation

If you clone this repository, you are download all the module source code and can run the examples directly. However, if you want to use the module inside your own project, the best way is to download it using LuaRocks at the command line:

luarocks install xml2lua

How to use

A simplified example which parses an XML directly from a string is presented below:

require("xml2lua")
--Uses a handler that converts the XML to a Lua table
local handler = require("xmlhandler.tree")

local xml = [[
<people>
  <person type="P">
    <name>Manoel</name>
    <city>Palmas-TO</city>
  </person>
  <person type="J">
    <name>University of Brasília</name>
    <city>Brasília-DF</city>
  </person>  
</people>    
]]

--Instantiates the XML parser
local parser = xml2lua.parser(handler)
parser:parse(xml)

--Manually prints the table (since the XML structure for this example is previously known)
for i, p in pairs(handler.root.people.person) do
  print("Name:", p.name, "City:", p.city, "Type:", p._attr.type)
end

There are some examples such as the example1.lua.

Command line tool

You can use a command line tool to try parsing XML files. Execute lua testxml.lua -help on the terminal for more details.

License

This code is freely distributable under the terms of the MIT license.

Authors

About

An XML Parser written entirely in Lua 5

http://manoelcampos.github.io/xml2lua/

License:MIT License


Languages

Language:Lua 100.0%