I am trying to parse the JSON incrementally, i.e. based on a condition.

Below is my json message and I am currently using JavaScriptSerializer to deserialize the message.

string json = @"{"id":2,
"method":"add",
"params":
   {"object":
       {"name":"test"
        "id":"1"},
        "position":"1"}
  }";

JavaScriptSerializer js = new JavaScriptSerializer();
Message m = js.Deserialize<Message>(json);

Message class is shown below:

 public class Message
 {
        public string id { get; set; }
        public string method { get; set; }
        public Params @params { get; set; }
        public string position { get; set; }
 }
public class Params
{
        public string name { get; set; }
        public string id{ get; set; 
}

The above code parses the message with no problems. But it parses the entire JSON at once. I want it to proceed parsing only if the "method" parameter's value is "add". If it is not "add", then I don't want it to proceed to parse rest of the message. Is there a way to do incremental parsing based on a condition in C#? (Environment: VS 2008 with .Net 3.5)

Thanks!

link|improve this question

60% accept rate
1  
Json parsing is performance critical for you? – CodeInChaos Jan 26 at 22:41
Why exactly do you want to do this? Does the parsed object take too much memory? Or it it too slow (did you measure it?)? Or do you have some other reason? – svick Jan 26 at 23:08
feedback

4 Answers

up vote 1 down vote accepted

I have to admit I'm not as familiar with the JavaScriptSerializer, but if you're open to use JSON.net, it has a JsonReader that acts much like a DataReader.

using(var jsonReader = new JsonTextReader(myTextReader)){
  while(jsonReader.Read()){
    //evaluate the current node and whether it's the name you want
    if(jsonReader.TokenType.PropertyName=="add"){
      //do what you want
    } else {
      //break out of loop.
    }
  }
}
link|improve this answer
That worked! Great! Thanks.. – user591410 Jan 26 at 23:58
Glad I could help! – David Hoerster Jan 27 at 0:10
feedback

If you take a look at Json.NET, it provides a non-caching, forward-only JSON parser that will suit your needs.

See the JsonReader and JsonTextReader class in the documentation.

link|improve this answer
Got it..Thanks for the pointers.. – user591410 Jan 26 at 23:58
feedback

What's the reason for this approach? If you concern is performance then it's likely "premature optimization", or in other words, worrying about a problem that might not exist.

I would strongly urge that you don't worry about this detail. Build your application, and then if it isn't fast enough use profiling tools to locate the actual bottlenecks--they likely won't be where you expect.

Focusing on performance before knowing it's an issue almost always leads to lost time, and excessive code.

link|improve this answer
1  
Definitely a valid point, and I have a feeling that you're right, but it doesn't answer the OP's question. – Kevin McCormick Jan 26 at 22:57
Thanks for your inputs. You're right but the json message that was illustrated in my question is not the actual message, it looks like this(shown below). So I want to parse only that is needed based on condition. `{"id":2, "method":"add", "params": {"object": {"name":"test", "key2": "value2"...."key100":"value:100"}, "position":"1"} }"; – user591410 Jan 26 at 22:58
@user591410, if you parse an unneeded message fully, how many nano seconds do you loose? – L.B Jan 26 at 23:40
@STW These kinds of answers does not help the community. Let's say you are importing a few hundred gigabytes of data from a JSON file. I'd hate to kill the CLR garbage collector by first deserializing the entire JSON into POCOs before processing... – Jack Wester Feb 11 at 11:39
feedback

You'd be wanting a SAX-type parser for JSON

http://en.wikipedia.org/wiki/Simple_API_for_XML

http://www.saxproject.org/event.html

SAX raises an event as it parses each piece of the document.

Doing something like that in JSON would (should) be pretty simple, given how simple the JSON syntax is.

This question might be of help: Is there a streaming API for JSON?

And another link: https://www.p6r.com/articles/2008/05/22/a-sax-like-parser-for-json/

link|improve this answer
Thanks for the links.. will investigate it. – user591410 Jan 26 at 23:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.