1 define("dojo/json", ["./has"], function(has){
3 var hasJSON = typeof JSON != "undefined";
4 has.add("json-parse", hasJSON); // all the parsers work fine
5 // Firefox 3.5/Gecko 1.9 fails to use replacer in stringify properly https://bugzilla.mozilla.org/show_bug.cgi?id=509184
6 has.add("json-stringify", hasJSON && JSON.stringify({a:0}, function(k,v){return v||1;}) == '{"a":1}');
7 if(has("json-stringify")){
11 var escapeString = function(/*String*/str){
13 // Adds escape sequences for non-visual characters, double quote and
14 // backslash and surrounds with double quotes to form a valid string
16 return ('"' + str.replace(/(["\\])/g, '\\$1') + '"').
17 replace(/[\f]/g, "\\f").replace(/[\b]/g, "\\b").replace(/[\n]/g, "\\n").
18 replace(/[\t]/g, "\\t").replace(/[\r]/g, "\\r"); // string
21 parse: has("json-parse") ? JSON.parse : function(str, strict){
23 // Parses a [JSON](http://json.org) string to return a JavaScript object.
25 // This function follows [native JSON API](https://developer.mozilla.org/en/JSON)
26 // Throws for invalid JSON strings. This delegates to eval() if native JSON
27 // support is not available. By default this will evaluate any valid JS expression.
28 // With the strict parameter set to true, the parser will ensure that only
29 // valid JSON strings are parsed (otherwise throwing an error). Without the strict
30 // parameter, the content passed to this method must come
31 // from a trusted source.
33 // a string literal of a JSON item, for instance:
34 // `'{ "foo": [ "bar", 1, { "baz": "thud" } ] }'`
36 // When set to true, this will ensure that only valid, secure JSON is ever parsed.
37 // Make sure this is set to true for untrusted content. Note that on browsers/engines
38 // without native JSON support, setting this to true will run slower.
39 if(strict && !/^([\s\[\{]*(?:"(?:\\.|[^"])+"|-?\d[\d\.]*(?:[Ee][+-]?\d+)?|null|true|false|)[\s\]\}]*(?:,|:|$))+$/.test(str)){
40 throw new SyntaxError("Invalid characters in JSON");
42 return eval('(' + str + ')');
44 stringify: function(value, replacer, spacer){
46 // Returns a [JSON](http://json.org) serialization of an object.
48 // Returns a [JSON](http://json.org) serialization of an object.
49 // This function follows [native JSON API](https://developer.mozilla.org/en/JSON)
50 // Note that this doesn't check for infinite recursion, so don't do that!
52 // A value to be serialized.
54 // A replacer function that is called for each value and can return a replacement
56 // A spacer string to be used for pretty printing of JSON
59 // simple serialization of a trivial object
60 // | define(["dojo/json"], function(JSON){
61 // | var jsonStr = JSON.stringify({ howdy: "stranger!", isStrange: true });
62 // | doh.is('{"howdy":"stranger!","isStrange":true}', jsonStr);
64 if(typeof replacer == "string"){
68 function stringify(it, indent, key){
70 it = replacer(key, it);
72 var val, objtype = typeof it;
73 if(objtype == "number"){
74 return isFinite(it) ? it + "" : "null";
76 if(objtype == "boolean"){
82 if(typeof it == "string"){
83 return escapeString(it);
85 if(objtype == "function" || objtype == "undefined"){
86 return undef; // undefined
88 // short-circuit for objects that support "json" serialization
89 // if they return "self" then just pass-through...
90 if(typeof it.toJSON == "function"){
91 return stringify(it.toJSON(key), indent, key);
93 if(it instanceof Date){
94 return '"{FullYear}-{Month+}-{Date}T{Hours}:{Minutes}:{Seconds}Z"'.replace(/\{(\w+)(\+)?\}/g, function(t, prop, plus){
95 var num = it["getUTC" + prop]() + (plus ? 1 : 0);
96 return num < 10 ? "0" + num : num;
99 if(it.valueOf() !== it){
100 // primitive wrapper, try again unwrapped:
101 return stringify(it.valueOf(), indent, key);
103 var nextIndent= spacer ? (indent + spacer) : "";
104 /* we used to test for DOM nodes and throw, but FF serializes them as {}, so cross-browser consistency is probably not efficiently attainable */
106 var sep = spacer ? " " : "";
107 var newLine = spacer ? "\n" : "";
110 if(it instanceof Array){
111 var itl = it.length, res = [];
112 for(key = 0; key < itl; key++){
114 val = stringify(obj, nextIndent, key);
115 if(typeof val != "string"){
118 res.push(newLine + nextIndent + val);
120 return "[" + res.join(",") + newLine + indent + "]";
122 // generic object code path
126 if(typeof key == "number"){
127 keyStr = '"' + key + '"';
128 }else if(typeof key == "string"){
129 keyStr = escapeString(key);
131 // skip non-string or number keys
134 val = stringify(it[key], nextIndent, key);
135 if(typeof val != "string"){
136 // skip non-serializable values
139 // At this point, the most non-IE browsers don't get in this branch
140 // (they have native JSON), so push is definitely the way to
141 output.push(newLine + nextIndent + keyStr + ":" + sep + val);
143 return "{" + output.join(",") + newLine + indent + "}"; // String
145 return stringify(value, "", "");