vote up 5 vote down star

Best practices aside, is there a compelling reason not to do this?

I'm writing a post-commit hook for use with a Google Code project, which provides commit data via a JSON object. GC provides an HMAC authentication token along with the request (outside the JSON data), so by validating that token I gain high confidence that the JSON data is both benign (as there's little point in distrusting Google) and valid.

My own (brief) investigations suggest that JSON happens to be completely valid Python, with the exception of the "\/" escape sequence — which GC doesn't appear to generate.

So, as I'm working with Python 2.4 (i.e. no json module), eval() is looking really tempting.

Edit: For the record, I am very much not asking if this is a good idea. I'm quite aware that it isn't, and I very much doubt I'll ever use this technique for any future projects even if I end up using it for this one. I just wanted to make sure that I know what kind of trouble I'll run into if I do. :-)

flag

3 Answers

vote up 8 vote down check

If you're comfortable with your script working fine for a while, and then randomly failing on some obscure edge case, I would go with eval.

If it's important that your code be robust, I would take the time to add simplejson. You don't need the C portion for speedups, so it really shouldn't be hard to dump a few .py files into a directory somewhere.

As an example of something that might bite you, JSON uses Unicode and simplejson returns Unicode, whereas eval returns str:

>>> simplejson.loads('{"a":1, "b":2}')
{u'a': 1, u'b': 2}
>>> eval('{"a":1, "b":2}')
{'a': 1, 'b': 2}

Edit: a better example of where eval() behaves differently:

>>> simplejson.loads('{"X": "\uabcd"}')
{u'X': u'\uabcd'}
>>> eval('{"X": "\uabcd"}')
{'X': '\\uabcd'}
>>> simplejson.loads('{"X": "\uabcd"}') == eval('{"X": "\uabcd"}')
False

Edit 2: saw yet another problem today pointed out by SilentGhost: eval doesn't handle true -> True, false -> False, null -> None correctly.

>>> simplejson.loads('[false, true, null]')
[False, True, None]
>>> eval('[false, true, null]')
Traceback (most recent call last):
  File "<interactive input>", line 1, in <module>
  File "<string>", line 1, in <module>
NameError: name 'false' is not defined
>>>
link|flag
1  
+1 for "failing on some obscure edge case". You make a good point about Unicode, too. I'm pretty sure it isn't relevant for my particular use-case, but that's something I hadn't considered before. – Ben Blank Jul 5 at 1:38
Interesting; I could've sworn I tried \uXXXX escape codes and had them work. Testing them now, they fail just as you show here. I must have been hallucinating. ^.^ – Ben Blank Jul 5 at 1:58
1  
also if you do use the C speedups, then simplejson can return a mix of string and unicode, which there seems to be no interest in fixing -- code.google.com/p/simplejson/… – Gregg Lind Jul 9 at 21:17
Wow, that's actually pretty freaky. – Kiv Jul 9 at 23:30
vote up 2 vote down

evaling JSON is a bit like trying to run XML through a C++ compiler.

eval is meant to evaluate Python code. Although there are some syntactical similarities, JSON isn't Python code. Heck, not only is it not Python code, it's not code to begin with. Therefore, even if you can get away with it for your use-case, I'd argue that it's a bad idea conceptually. Python is an apple, JSON is orange-flavored soda.

link|flag
3  
You just made me want to run XML through a C++ compiler and see if I can get it to compile. Oh templates. – Kiv Jul 5 at 2:05
Heh... I wonder if there is a way? 'twould be interesting. – Jason Baker Jul 5 at 13:46
vote up 9 vote down

The point of best practices is that in most cases, it's a bad idea to disregard them. If I were you, I'd use a parser to parse JSON into Python. Try out simplejson, it was very straightforward for parsing JSON when I last tried it and it claims to be compatible with Python 2.4.

I disagree that there's little point in distrusting Google. I wouldn't distrust them, but I'd verify the data you get from them. The reason that I'd actually use a JSON parser is right in your question:

My own (brief) investigations suggest that JSON happens to be completely valid Python, with the exception of the "\/" escape sequence — which GC doesn't appear to generate.

What makes you think that Google Code will never generate an escape sequence like that?

Parsing is a solved problem if you use the right tools. If you try to take shortcuts like this, you'll eventually get bitten by incorrect assumptions, or you'll do something like trying to hack together a parser with regex's and boolean logic when a parser already exists for your language of choice.

link|flag
If I weren't running in a hosted environment, I probably would be using simplejson. Unfortunately, I don't have a lot of control over my Python environment and I suspect that working out how to add custom packages will take longer than writing the actual script; we're talking 50 lines, tops. Similarly, I don't know that GC won't start generating that escape sequence, but if it does, the script will naturally fail safely, it'll be obvious that it's broken, and the fix is easy. – Ben Blank Jul 5 at 0:52
If the fix is easy, why not do it the fixed way first? – Matthew Scharley Jul 5 at 1:29
Because it involves using a regex to count backslashes. Right now, there aren't any regexes in the script, and I'll leave it that way if I can. :-) – Ben Blank Jul 5 at 1:35
3  
here's a simplejson port in pure python, intended for a similar situation to yours: aaronland.info/python/s60-simplejson/… . I've never used it, but I suspect it's a better idea than eval()ing – llimllib Jul 5 at 2:04
1  
The port looks nice. Might be worth running the unit tests from the original simplejson on it to see if they pass: simplejson.googlecode.com/svn/tags/… – Kiv Jul 5 at 13:12

Your Answer

Get an OpenID
or

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