2006-07-24 17:09:23 +00:00
|
|
|
/*
|
|
|
|
* Helma License Notice
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Helma License
|
|
|
|
* Version 2.0 (the "License"). You may not use this file except in
|
|
|
|
* compliance with the License. A copy of the License is available at
|
|
|
|
* http://adele.helma.org/download/helma/license.txt
|
|
|
|
*
|
|
|
|
* Copyright 1998-2006 Helma Software. All Rights Reserved.
|
|
|
|
*
|
2006-07-24 17:18:52 +00:00
|
|
|
* $RCSfile: JSON.js,v $
|
2007-09-28 13:16:38 +00:00
|
|
|
* $Author$
|
|
|
|
* $Revision$
|
|
|
|
* $Date$
|
2006-07-24 17:09:23 +00:00
|
|
|
*/
|
|
|
|
|
2007-12-13 12:21:48 +00:00
|
|
|
/**
|
|
|
|
* @fileoverview Adds JSON methods to the Object, Array and String prototypes.
|
|
|
|
* <br /><br />
|
|
|
|
* To use this optional module, its repository needs to be added to the
|
|
|
|
* application, for example by calling app.addRepository('modules/core/JSON.js')
|
|
|
|
*/
|
2006-07-24 17:09:23 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
json.js
|
|
|
|
2006-04-28 [http://www.json.org/json.js]
|
|
|
|
|
|
|
|
This file adds these methods to JavaScript:
|
|
|
|
|
2006-07-24 17:18:52 +00:00
|
|
|
object.toJSON()
|
2006-07-24 17:09:23 +00:00
|
|
|
|
|
|
|
This method produces a JSON text from an object. The
|
|
|
|
object must not contain any cyclical references.
|
|
|
|
|
2006-07-24 17:18:52 +00:00
|
|
|
array.toJSON()
|
2006-07-24 17:09:23 +00:00
|
|
|
|
|
|
|
This method produces a JSON text from an array. The
|
|
|
|
array must not contain any cyclical references.
|
|
|
|
|
|
|
|
string.parseJSON()
|
|
|
|
|
|
|
|
This method parses a JSON text to produce an object or
|
|
|
|
array. It will return false if there is an error.
|
|
|
|
*/
|
|
|
|
|
|
|
|
(function () {
|
|
|
|
var m = {
|
|
|
|
'\b': '\\b',
|
|
|
|
'\t': '\\t',
|
|
|
|
'\n': '\\n',
|
|
|
|
'\f': '\\f',
|
|
|
|
'\r': '\\r',
|
|
|
|
'"' : '\\"',
|
|
|
|
'\\': '\\\\'
|
|
|
|
},
|
|
|
|
|
|
|
|
s = {
|
2007-12-13 12:21:48 +00:00
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
2006-07-24 17:09:23 +00:00
|
|
|
array: function (x) {
|
|
|
|
var a = ['['], b, f, i, l = x.length, v;
|
|
|
|
for (i = 0; i < l; i += 1) {
|
|
|
|
v = x[i];
|
|
|
|
f = s[typeof v];
|
|
|
|
if (f) {
|
|
|
|
v = f(v);
|
|
|
|
if (typeof v == 'string') {
|
|
|
|
if (b) {
|
|
|
|
a[a.length] = ',';
|
|
|
|
}
|
|
|
|
a[a.length] = v;
|
|
|
|
b = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
a[a.length] = ']';
|
|
|
|
return a.join('');
|
|
|
|
},
|
|
|
|
|
|
|
|
'boolean': function (x) {
|
|
|
|
return String(x);
|
|
|
|
},
|
|
|
|
|
|
|
|
'null': function (x) {
|
|
|
|
return "null";
|
|
|
|
},
|
|
|
|
|
2007-12-13 12:21:48 +00:00
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
2006-07-24 17:09:23 +00:00
|
|
|
number: function (x) {
|
|
|
|
return isFinite(x) ? String(x) : 'null';
|
|
|
|
},
|
|
|
|
|
2007-12-13 12:21:48 +00:00
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
2006-07-24 17:09:23 +00:00
|
|
|
object: function (x) {
|
|
|
|
if (x) {
|
|
|
|
if (x instanceof Array) {
|
|
|
|
return s.array(x);
|
|
|
|
}
|
|
|
|
var a = ['{'], b, f, i, v;
|
|
|
|
for (i in x) {
|
|
|
|
v = x[i];
|
|
|
|
f = s[typeof v];
|
|
|
|
if (f) {
|
|
|
|
v = f(v);
|
|
|
|
if (typeof v == 'string') {
|
|
|
|
if (b) {
|
|
|
|
a[a.length] = ',';
|
|
|
|
}
|
|
|
|
a.push(s.string(i), ':', v);
|
|
|
|
b = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
a[a.length] = '}';
|
|
|
|
return a.join('');
|
|
|
|
}
|
|
|
|
return 'null';
|
|
|
|
},
|
|
|
|
|
2007-12-13 12:21:48 +00:00
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
2006-07-24 17:09:23 +00:00
|
|
|
string: function (x) {
|
|
|
|
if (/["\\\x00-\x1f]/.test(x)) {
|
|
|
|
x = x.replace(/([\x00-\x1f\\"])/g, function(a, b) {
|
|
|
|
var c = m[b];
|
|
|
|
if (c) {
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
c = b.charCodeAt();
|
|
|
|
return '\\u00' +
|
|
|
|
Math.floor(c / 16).toString(16) +
|
|
|
|
(c % 16).toString(16);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return '"' + x + '"';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-07-01 15:50:28 +00:00
|
|
|
/**
|
|
|
|
* This method produces a JSON text from an object.
|
|
|
|
* The object must not contain any cyclical references.
|
|
|
|
*/
|
2006-07-24 17:18:52 +00:00
|
|
|
Object.prototype.toJSON = function () {
|
2006-07-24 17:09:23 +00:00
|
|
|
return s.object(this);
|
|
|
|
};
|
|
|
|
|
2007-07-01 15:50:28 +00:00
|
|
|
/**
|
|
|
|
* This method produces a JSON text from an array.
|
|
|
|
* The array must not contain any cyclical references.
|
|
|
|
*/
|
2006-07-24 17:18:52 +00:00
|
|
|
Array.prototype.toJSON = function () {
|
2006-07-24 17:09:23 +00:00
|
|
|
return s.array(this);
|
|
|
|
};
|
|
|
|
|
2006-07-24 17:18:52 +00:00
|
|
|
Object.prototype.dontEnum("toJSON");
|
|
|
|
Array.prototype.dontEnum("toJSON");
|
2006-07-24 17:09:23 +00:00
|
|
|
return;
|
|
|
|
})();
|
|
|
|
|
2007-07-01 15:50:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This method parses a JSON text to produce an object or
|
|
|
|
* array. It will return false if there is an error.
|
|
|
|
*/
|
2006-07-24 17:09:23 +00:00
|
|
|
String.prototype.parseJSON = function () {
|
|
|
|
try {
|
|
|
|
return !(/[^,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]/.test(this.replace(/"(\\.|[^"\\])*"/g, ''))) && eval('(' + this + ')');
|
|
|
|
} catch (e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
2006-07-24 17:18:52 +00:00
|
|
|
|
|
|
|
String.prototype.dontEnum("parseJSON");
|