Skip to content

LuaDist-testing/xml2lua

Repository files navigation

xml2lua Build Status MIT license

xml2lua is an XML parser written entirely in Lua which doesn't depend on any external C/C++ library, and works for Lua 5.1 to 5.3.

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.

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

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages