digitalmars.D - JSON in D
- Steve Teale (2/2) May 15 2009 I'm trying to write a JSON parser/generator. If anyone else is doing the...
- Sean Kelly (3/4) May 15 2009 I've got one, but I wrote it for work so I'm not sure if I can release
- Christopher Wright (2/7) May 15 2009 Dude, tango.text.json?
- Sean Kelly (2/9) May 15 2009 That's a decent option if you aren't inclined to write one.
- Moritz Warning (4/13) May 16 2009 I also wrote one:
- Steve Teale (3/20) May 16 2009 Thanks, I'll check it out, bur mine is also close to working now.
- Fawzi Mohamed (11/34) May 17 2009 As we are about JSON blip has also one.
- Christopher Wright (2/15) May 17 2009 Do you have a link?
- Fawzi Mohamed (2/18) May 17 2009 http://dsource.org/projects/blip
- Steve Teale (5/19) May 17 2009 Fawzi,
I'm trying to write a JSON parser/generator. If anyone else is doing the same, can we collaborate? Steve
May 15 2009
== Quote from Steve Teale (steve.teale britseyeview.com)'s articleI'm trying to write a JSON parser/generator. If anyone else is doing the same, can we collaborate?I've got one, but I wrote it for work so I'm not sure if I can release it. I'd be happy to offer suggestions though :-/
May 15 2009
Sean Kelly wrote:== Quote from Steve Teale (steve.teale britseyeview.com)'s articleDude, tango.text.json?I'm trying to write a JSON parser/generator. If anyone else is doing the same, can we collaborate?I've got one, but I wrote it for work so I'm not sure if I can release it. I'd be happy to offer suggestions though :-/
May 15 2009
== Quote from Christopher Wright (dhasenan gmail.com)'s articleSean Kelly wrote:That's a decent option if you aren't inclined to write one.== Quote from Steve Teale (steve.teale britseyeview.com)'s articleDude, tango.text.json?I'm trying to write a JSON parser/generator. If anyone else is doing the same, can we collaborate?I've got one, but I wrote it for work so I'm not sure if I can release it. I'd be happy to offer suggestions though :-/
May 15 2009
On Fri, 15 May 2009 18:27:05 -0400, Christopher Wright wrote:Sean Kelly wrote:I also wrote one: http://web-gmui.svn.sourceforge.net/viewvc/web-gmui/trunk/utils/json/ it's fast, has many features and is BSD licensed.== Quote from Steve Teale (steve.teale britseyeview.com)'s articleDude, tango.text.json?I'm trying to write a JSON parser/generator. If anyone else is doing the same, can we collaborate?I've got one, but I wrote it for work so I'm not sure if I can release it. I'd be happy to offer suggestions though :-/
May 16 2009
Moritz Warning Wrote:On Fri, 15 May 2009 18:27:05 -0400, Christopher Wright wrote:Thanks, I'll check it out, bur mine is also close to working now. SteveSean Kelly wrote:I also wrote one: http://web-gmui.svn.sourceforge.net/viewvc/web-gmui/trunk/utils/json/ it's fast, has many features and is BSD licensed.== Quote from Steve Teale (steve.teale britseyeview.com)'s articleDude, tango.text.json?I'm trying to write a JSON parser/generator. If anyone else is doing the same, can we collaborate?I've got one, but I wrote it for work so I'm not sure if I can release it. I'd be happy to offer suggestions though :-/
May 16 2009
On 2009-05-16 19:30:03 +0200, Steve Teale <steve.teale britseyeview.com> said:Moritz Warning Wrote:As we are about JSON blip has also one. It does not aim at replacing tango's one, which is really fast, and is the way to go if you want to read JSON to an in memory representation of it. On the other hand if you want to use JSON for serialization, i.e. to read into your objects, or to write out them, then what is in blip could be interesting as it is a serialization frameworkd that support json (and also a binary protocol), and could be exteded to support other protocols like xml. FawziOn Fri, 15 May 2009 18:27:05 -0400, Christopher Wright wrote:Thanks, I'll check it out, bur mine is also close to working now. SteveSean Kelly wrote:I also wrote one: http://web-gmui.svn.sourceforge.net/viewvc/web-gmui/trunk/utils/json/ it's fast, has many features and is BSD licensed.== Quote from Steve Teale (steve.teale britseyeview.com)'s articleDude, tango.text.json?I'm trying to write a JSON parser/generator. If anyone else is doing the same, can we collaborate?I've got one, but I wrote it for work so I'm not sure if I can release it. I'd be happy to offer suggestions though :-/
May 17 2009
Fawzi Mohamed wrote:As we are about JSON blip has also one. It does not aim at replacing tango's one, which is really fast, and is the way to go if you want to read JSON to an in memory representation of it. On the other hand if you want to use JSON for serialization, i.e. to read into your objects, or to write out them, then what is in blip could be interesting as it is a serialization frameworkd that support json (and also a binary protocol), and could be exteded to support other protocols like xml. FawziDo you have a link?
May 17 2009
On 2009-05-17 16:58:26 +0200, Christopher Wright <dhasenan gmail.com> said:Fawzi Mohamed wrote:http://dsource.org/projects/blipAs we are about JSON blip has also one. It does not aim at replacing tango's one, which is really fast, and is the way to go if you want to read JSON to an in memory representation of it. On the other hand if you want to use JSON for serialization, i.e. to read into your objects, or to write out them, then what is in blip could be interesting as it is a serialization frameworkd that support json (and also a binary protocol), and could be exteded to support other protocols like xml. FawziDo you have a link?
May 17 2009
Fawzi Mohamed Wrote:As we are about JSON blip has also one. It does not aim at replacing tango's one, which is really fast, and is the way to go if you want to read JSON to an in memory representation of it. On the other hand if you want to use JSON for serialization, i.e. to read into your objects, or to write out them, then what is in blip could be interesting as it is a serialization frameworkd that support json (and also a binary protocol), and could be exteded to support other protocols like xml. FawziFawzi, What I've done is actually going pretty well, I can parse all the examples from www.json.org (albeit with changes that I don't want to make - they have an example (the most complicated one) with variable names that would not compile in Javascript). My test program parses them, converts them to XML, then converts them back back to JSON, and compares the outputs. D/Phobos really does make this stuff easy - I love it! Steve
May 17 2009