Re: [dev] xml parser

2019-02-03 Thread sylvain . bertrand
On Sun, Feb 03, 2019 at 09:36:22AM +0100, Markus Wichmann wrote: > At work, we're using libxml2. Since we are also using static linking, > this has caused our firmware package to go from 20MB to 60MB unzipped. > So I hope this helps you find a good package, by showing you where it > isn't. DOM lib

Re: [dev] xml parser

2019-02-03 Thread Markus Wichmann
On Sat, Feb 02, 2019 at 06:15:26PM +, sylvain.bertr...@gmail.com wrote: > Hi, > > I am looking at xml parsers. > > I am about to go expat, but I am wondering if there are some interesting > alternatives I did miss? > > -- > Sylvain > At work, we're using libxml2. Since we are also using s

Re: [dev] xml parser

2019-02-02 Thread sylvain . bertrand
On Sat, Feb 02, 2019 at 07:31:24PM +0100, Silvan Jegen wrote: > https://sillymon.ch/posts/slcon3.html Thx! Based on you results, I guess I'll give a shot at ezxml and yxml. Stream("sax") or DOM("XPath"), don't know which one is easier to use in my case, yet. I did notice some "XML entities" in t

Re: [dev] xml parser

2019-02-02 Thread Hiltjo Posthuma
On Sat, Feb 02, 2019 at 06:15:26PM +, sylvain.bertr...@gmail.com wrote: > Hi, > > I am looking at xml parsers. > > I am about to go expat, but I am wondering if there are some interesting > alternatives I did miss? > > -- > Sylvain > Hi, I suck at writing parsers, but wrote one:

Re: [dev] xml parser

2019-02-02 Thread sylvain . bertrand
On Sat, Feb 02, 2019 at 01:20:16PM -0500, Sean MacLennan wrote: > Json? Not sure what you need the xml parser for... but does it have to > be xml? Unfortunately, the source file is utf-8 xml. -- Sylvain

Re: [dev] xml parser

2019-02-02 Thread Silvan Jegen
[2019-02-02 18:15] sylvain.bertr...@gmail.com > I am looking at xml parsers. > > I am about to go expat, but I am wondering if there are some interesting > alternatives I did miss? I had a talk on this at the suckless conference 3 a few years ago. In case you are interested you can find links to t

Re: [dev] xml parser

2019-02-02 Thread Teodoro Santoni
2019-02-02 18:15 GMT, sylvain.bertr...@gmail.com : > Hi, > > I am looking at xml parsers. > > I am about to go expat, but I am wondering if there are some interesting > alternatives I did miss? > > -- > Sylvain > > Hi, Have you seen slcon16's silvan jegen talk[1][2]? He describes some C xml pars

Re: [dev] xml parser

2019-02-02 Thread Sean MacLennan
On Sat, 2 Feb 2019 18:15:26 + sylvain.bertr...@gmail.com wrote: > Hi, > > I am looking at xml parsers. > > I am about to go expat, but I am wondering if there are some > interesting alternatives I did miss? > Json? Not sure what you need the xml parser for... but does it have to be xml? C

[dev] xml parser

2019-02-02 Thread sylvain . bertrand
Hi, I am looking at xml parsers. I am about to go expat, but I am wondering if there are some interesting alternatives I did miss? -- Sylvain