Advertisement
Guest User

Untitled

a guest
Jul 5th, 2011
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.     json.js
  3.     2011-02-23
  4.  
  5.     Public Domain
  6.  
  7.     No warranty expressed or implied. Use at your own risk.
  8.  
  9.     This file has been superceded by http://www.JSON.org/json2.js
  10.  
  11.     See http://www.JSON.org/js.html
  12.  
  13.     This code should be minified before deployment.
  14.     See http://javascript.crockford.com/jsmin.html
  15.  
  16.     USE YOUR OWN COPY. IT IS EXTREMELY UNWISE TO LOAD CODE FROM SERVERS YOU DO
  17.     NOT CONTROL.
  18.  
  19.     This file adds these methods to JavaScript:
  20.  
  21.         object.toJSONString(whitelist)
  22.             This method produce a JSON text from a JavaScript value.
  23.             It must not contain any cyclical references. Illegal values
  24.             will be excluded.
  25.  
  26.             The default conversion for dates is to an ISO string. You can
  27.             add a toJSONString method to any date object to get a different
  28.             representation.
  29.  
  30.             The object and array methods can take an optional whitelist
  31.             argument. A whitelist is an array of strings. If it is provided,
  32.             keys in objects not found in the whitelist are excluded.
  33.  
  34.         string.parseJSON(filter)
  35.             This method parses a JSON text to produce an object or
  36.             array. It can throw a SyntaxError exception.
  37.  
  38.             The optional filter parameter is a function which can filter and
  39.             transform the results. It receives each of the keys and values, and
  40.             its return value is used instead of the original value. If it
  41.             returns what it received, then structure is not modified. If it
  42.             returns undefined then the member is deleted.
  43.  
  44.             Example:
  45.  
  46.             // Parse the text. If a key contains the string 'date' then
  47.             // convert the value to a date.
  48.  
  49.             myData = text.parseJSON(function (key, value) {
  50.                 return key.indexOf('date') >= 0 ? new Date(value) : value;
  51.             });
  52.  
  53.     This file will break programs with improper for..in loops. See
  54.     http://yuiblog.com/blog/2006/09/26/for-in-intrigue/
  55.  
  56.     This file creates a global JSON object containing two methods: stringify
  57.     and parse.
  58.  
  59.         JSON.stringify(value, replacer, space)
  60.             value       any JavaScript value, usually an object or array.
  61.  
  62.             replacer    an optional parameter that determines how object
  63.                         values are stringified for objects. It can be a
  64.                         function or an array of strings.
  65.  
  66.             space       an optional parameter that specifies the indentation
  67.                         of nested structures. If it is omitted, the text will
  68.                         be packed without extra whitespace. If it is a number,
  69.                         it will specify the number of spaces to indent at each
  70.                         level. If it is a string (such as '\t' or ' '),
  71.                         it contains the characters used to indent at each level.
  72.  
  73.             This method produces a JSON text from a JavaScript value.
  74.  
  75.             When an object value is found, if the object contains a toJSON
  76.             method, its toJSON method will be called and the result will be
  77.             stringified. A toJSON method does not serialize: it returns the
  78.             value represented by the name/value pair that should be serialized,
  79.             or undefined if nothing should be serialized. The toJSON method
  80.             will be passed the key associated with the value, and this will be
  81.             bound to the object holding the key.
  82.  
  83.             For example, this would serialize Dates as ISO strings.
  84.  
  85.                 Date.prototype.toJSON = function (key) {
  86.                     function f(n) {
  87.                         // Format integers to have at least two digits.
  88.                         return n < 10 ? '0' + n : n;
  89.                     }
  90.  
  91.                     return this.getUTCFullYear()   + '-' +
  92.                          f(this.getUTCMonth() + 1) + '-' +
  93.                          f(this.getUTCDate())      + 'T' +
  94.                          f(this.getUTCHours())     + ':' +
  95.                          f(this.getUTCMinutes())   + ':' +
  96.                          f(this.getUTCSeconds())   + 'Z';
  97.                 };
  98.  
  99.             You can provide an optional replacer method. It will be passed the
  100.             key and value of each member, with this bound to the containing
  101.             object. The value that is returned from your method will be
  102.             serialized. If your method returns undefined, then the member will
  103.             be excluded from the serialization.
  104.  
  105.             If the replacer parameter is an array of strings, then it will be
  106.             used to select the members to be serialized. It filters the results
  107.             such that only members with keys listed in the replacer array are
  108.             stringified.
  109.  
  110.             Values that do not have JSON representations, such as undefined or
  111.             functions, will not be serialized. Such values in objects will be
  112.             dropped; in arrays they will be replaced with null. You can use
  113.             a replacer function to replace those with JSON values.
  114.             JSON.stringify(undefined) returns undefined.
  115.  
  116.             The optional space parameter produces a stringification of the
  117.             value that is filled with line breaks and indentation to make it
  118.             easier to read.
  119.  
  120.             If the space parameter is a non-empty string, then that string will
  121.             be used for indentation. If the space parameter is a number, then
  122.             the indentation will be that many spaces.
  123.  
  124.             Example:
  125.  
  126.             text = JSON.stringify(['e', {pluribus: 'unum'}]);
  127.             // text is '["e",{"pluribus":"unum"}]'
  128.  
  129.  
  130.             text = JSON.stringify(['e', {pluribus: 'unum'}], null, '\t');
  131.             // text is '[\n\t"e",\n\t{\n\t\t"pluribus": "unum"\n\t}\n]'
  132.  
  133.             text = JSON.stringify([new Date()], function (key, value) {
  134.                 return this[key] instanceof Date ?
  135.                     'Date(' + this[key] + ')' : value;
  136.             });
  137.             // text is '["Date(---current time---)"]'
  138.  
  139.  
  140.         JSON.parse(text, reviver)
  141.             This method parses a JSON text to produce an object or array.
  142.             It can throw a SyntaxError exception.
  143.  
  144.             The optional reviver parameter is a function that can filter and
  145.             transform the results. It receives each of the keys and values,
  146.             and its return value is used instead of the original value.
  147.             If it returns what it received, then the structure is not modified.
  148.             If it returns undefined then the member is deleted.
  149.  
  150.             Example:
  151.  
  152.             // Parse the text. Values that look like ISO date strings will
  153.             // be converted to Date objects.
  154.  
  155.             myData = JSON.parse(text, function (key, value) {
  156.                 var a;
  157.                 if (typeof value === 'string') {
  158.                     a =
  159. /^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}(?:\.\d*)?)Z$/.exec(value);
  160.                     if (a) {
  161.                         return new Date(Date.UTC(+a[1], +a[2] - 1, +a[3], +a[4],
  162.                             +a[5], +a[6]));
  163.                     }
  164.                 }
  165.                 return value;
  166.             });
  167.  
  168.             myData = JSON.parse('["Date(09/09/2001)"]', function (key, value) {
  169.                 var d;
  170.                 if (typeof value === 'string' &&
  171.                         value.slice(0, 5) === 'Date(' &&
  172.                         value.slice(-1) === ')') {
  173.                     d = new Date(value.slice(5, -1));
  174.                     if (d) {
  175.                         return d;
  176.                     }
  177.                 }
  178.                 return value;
  179.             });
  180.  
  181.  
  182.     This is a reference implementation. You are free to copy, modify, or
  183.     redistribute.
  184. */
  185.  
  186. /*jslint evil: true, regexp: false */
  187.  
  188. /*members "", "\b", "\t", "\n", "\f", "\r", "\"", JSON, "\\", apply,
  189.     call, charCodeAt, getUTCDate, getUTCFullYear, getUTCHours,
  190.     getUTCMinutes, getUTCMonth, getUTCSeconds, hasOwnProperty, join,
  191.     lastIndex, length, parse, parseJSON, prototype, push, replace, slice,
  192.     stringify, test, toJSON, toJSONString, toString, valueOf
  193. */
  194.  
  195.  
  196. // Create a JSON object only if one does not already exist. We create the
  197. // methods in a closure to avoid creating global variables.
  198.  
  199. var MYJSON;
  200. if (!MYJSON) {
  201.     MYJSON = {};
  202. }
  203.  
  204. (function () {
  205.     "use strict";
  206.  
  207.     function f(n) {
  208.         // Format integers to have at least two digits.
  209.         return n < 10 ? '0' + n : n;
  210.     }
  211.  
  212.     if (typeof Date.prototype.toMYJSON !== 'function') {
  213.  
  214.         Date.prototype.toMYJSON = function (key) {
  215.  
  216.             return isFinite(this.valueOf()) ?
  217.                 this.getUTCFullYear()     + '-' +
  218.                 f(this.getUTCMonth() + 1) + '-' +
  219.                 f(this.getUTCDate())      + 'T' +
  220.                 f(this.getUTCHours())     + ':' +
  221.                 f(this.getUTCMinutes())   + ':' +
  222.                 f(this.getUTCSeconds())   + 'Z' : null;
  223.         };
  224.  
  225.         String.prototype.toMYJSON      =
  226.             Number.prototype.toMYJSON  =
  227.             Boolean.prototype.toMYJSON = function (key) {
  228.                 return this.valueOf();
  229.             };
  230.     }
  231.  
  232.     var cx = /[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
  233.         escapable = /[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
  234.         gap,
  235.         indent,
  236.         meta = {    // table of character substitutions
  237.             '\b': '\\b',
  238.             '\t': '\\t',
  239.             '\n': '\\n',
  240.             '\f': '\\f',
  241.             '\r': '\\r',
  242.             '"' : '\\"',
  243.             '\\': '\\\\'
  244.         },
  245.         rep;
  246.  
  247.  
  248.     function quote(string) {
  249.  
  250. // If the string contains no control characters, no quote characters, and no
  251. // backslash characters, then we can safely slap some quotes around it.
  252. // Otherwise we must also replace the offending characters with safe escape
  253. // sequences.
  254.  
  255.         escapable.lastIndex = 0;
  256.         return escapable.test(string) ? '"' + string.replace(escapable, function (a) {
  257.             var c = meta[a];
  258.             return typeof c === 'string' ? c :
  259.                 '\\u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4);
  260.         }) + '"' : '"' + string + '"';
  261.     }
  262.  
  263.  
  264.     function str(key, holder) {
  265.  
  266. // Produce a string from holder[key].
  267.  
  268.         var i,          // The loop counter.
  269.             k,          // The member key.
  270.             v,          // The member value.
  271.             length,
  272.             mind = gap,
  273.             partial,
  274.             value = holder[key];
  275.  
  276. // If the value has a toJSON method, call it to obtain a replacement value.
  277.  
  278.         if (value && typeof value === 'object' &&
  279.                 typeof value.toMYJSON === 'function') {
  280.             value = value.toMYJSON(key);
  281.         }
  282.  
  283. // If we were called with a replacer function, then call the replacer to
  284. // obtain a replacement value.
  285.  
  286.         if (typeof rep === 'function') {
  287.             value = rep.call(holder, key, value);
  288.         }
  289.  
  290. // What happens next depends on the value's type.
  291.  
  292.         switch (typeof value) {
  293.         case 'function':
  294.             return String(value);
  295.  
  296.         case 'string':
  297.             return quote(value);
  298.  
  299.         case 'number':
  300.  
  301. // JSON numbers must be finite. Encode non-finite numbers as null.
  302.  
  303.             return isFinite(value) ? String(value) : 'null';
  304.  
  305.         case 'boolean':
  306.         case 'null':
  307.  
  308. // If the value is a boolean or null, convert it to a string. Note:
  309. // typeof null does not produce 'null'. The case is included here in
  310. // the remote chance that this gets fixed someday.
  311.  
  312.             return String(value);
  313.  
  314. // If the type is 'object', we might be dealing with an object or an array or
  315. // null.
  316.  
  317.         case 'object':
  318.  
  319. // Due to a specification blunder in ECMAScript, typeof null is 'object',
  320. // so watch out for that case.
  321.  
  322.             if (!value) {
  323.                 return 'null';
  324.             }
  325.  
  326. // Make an array to hold the partial results of stringifying this object value.
  327.  
  328.             gap += indent;
  329.             partial = [];
  330.  
  331. // Is the value an array?
  332.  
  333.             if (Object.prototype.toString.apply(value) === '[object Array]') {
  334.  
  335. // The value is an array. Stringify every element. Use null as a placeholder
  336. // for non-JSON values.
  337.  
  338.                 length = value.length;
  339.                 for (i = 0; i < length; i += 1) {
  340.                     partial[i] = str(i, value) || 'null';
  341.                 }
  342.  
  343. // Join all of the elements together, separated with commas, and wrap them in
  344. // brackets.
  345.  
  346.                 v = partial.length === 0 ? '[]' : gap ?
  347.                     '[\n' + gap + partial.join(',\n' + gap) + '\n' + mind + ']' :
  348.                     '[' + partial.join(',') + ']';
  349.                 gap = mind;
  350.                 return v;
  351.             }
  352.  
  353. // If the replacer is an array, use it to select the members to be stringified.
  354.  
  355.             if (rep && typeof rep === 'object') {
  356.                 length = rep.length;
  357.                 for (i = 0; i < length; i += 1) {
  358.                     k = rep[i];
  359.                     if (typeof k === 'string') {
  360.                         v = str(k, value);
  361.                         if (v) {
  362.                             partial.push(quote(k) + (gap ? ': ' : ':') + v);
  363.                         }
  364.                     }
  365.                 }
  366.             } else {
  367.  
  368. // Otherwise, iterate through all of the keys in the object.
  369.  
  370.                 for (k in value) {
  371.                     if (Object.prototype.hasOwnProperty.call(value, k)) {
  372.                         v = str(k, value);
  373.                         if (v) {
  374.                             partial.push(quote(k) + (gap ? ': ' : ':') + v);
  375.                         }
  376.                     }
  377.                 }
  378.             }
  379.  
  380. // Join all of the member texts together, separated with commas,
  381. // and wrap them in braces.
  382.  
  383.             v = partial.length === 0 ? '{}' : gap ?
  384.                 '{\n' + gap + partial.join(',\n' + gap) + '\n' + mind + '}' :
  385.                 '{' + partial.join(',') + '}';
  386.             gap = mind;
  387.             return v;
  388.         }
  389.     }
  390.  
  391. // If the JSON object does not yet have a stringify method, give it one.
  392.  
  393.     if (typeof MYJSON.stringify !== 'function') {
  394.         MYJSON.stringify = function (value, replacer, space) {
  395.  
  396. // The stringify method takes a value and an optional replacer, and an optional
  397. // space parameter, and returns a JSON text. The replacer can be a function
  398. // that can replace values, or an array of strings that will select the keys.
  399. // A default replacer method can be provided. Use of the space parameter can
  400. // produce text that is more easily readable.
  401.  
  402.             var i;
  403.             gap = '';
  404.             indent = '';
  405.  
  406. // If the space parameter is a number, make an indent string containing that
  407. // many spaces.
  408.  
  409.             if (typeof space === 'number') {
  410.                 for (i = 0; i < space; i += 1) {
  411.                     indent += ' ';
  412.                 }
  413.  
  414. // If the space parameter is a string, it will be used as the indent string.
  415.  
  416.             } else if (typeof space === 'string') {
  417.                 indent = space;
  418.             }
  419.  
  420. // If there is a replacer, it must be a function or an array.
  421. // Otherwise, throw an error.
  422.  
  423.             rep = replacer;
  424.             if (replacer && typeof replacer !== 'function' &&
  425.                     (typeof replacer !== 'object' ||
  426.                     typeof replacer.length !== 'number')) {
  427.                 throw new Error('MYJSON.stringify');
  428.             }
  429.  
  430. // Make a fake root object containing our value under the key of ''.
  431. // Return the result of stringifying the value.
  432.  
  433.             return str('', {'': value});
  434.         };
  435.     }
  436.  
  437.  
  438. // If the JSON object does not yet have a parse method, give it one.
  439.  
  440.     if (typeof MYJSON.parse !== 'function') {
  441.         MYJSON.parse = function (text, reviver) {
  442.  
  443. // The parse method takes a text and an optional reviver function, and returns
  444. // a JavaScript value if the text is a valid JSON text.
  445.  
  446.             var j;
  447.  
  448.             function walk(holder, key) {
  449.  
  450. // The walk method is used to recursively walk the resulting structure so
  451. // that modifications can be made.
  452.  
  453.                 var k, v, value = holder[key];
  454.                 if (value && typeof value === 'object') {
  455.                     for (k in value) {
  456.                         if (Object.prototype.hasOwnProperty.call(value, k)) {
  457.                             v = walk(value, k);
  458.                             if (v !== undefined) {
  459.                                 value[k] = v;
  460.                             } else {
  461.                                 delete value[k];
  462.                             }
  463.                         }
  464.                     }
  465.                 }
  466.                 return reviver.call(holder, key, value);
  467.             }
  468.  
  469.  
  470. // Parsing happens in four stages. In the first stage, we replace certain
  471. // Unicode characters with escape sequences. JavaScript handles many characters
  472. // incorrectly, either silently deleting them, or treating them as line endings.
  473.  
  474.             text = String(text);
  475.             cx.lastIndex = 0;
  476.             if (cx.test(text)) {
  477.                 text = text.replace(cx, function (a) {
  478.                     return '\\u' +
  479.                         ('0000' + a.charCodeAt(0).toString(16)).slice(-4);
  480.                 });
  481.             }
  482.  
  483. // In the second stage, we run the text against regular expressions that look
  484. // for non-JSON patterns. We are especially concerned with '()' and 'new'
  485. // because they can cause invocation, and '=' because it can cause mutation.
  486. // But just to be safe, we want to reject all unexpected forms.
  487.  
  488. // We split the second stage into 4 regexp operations in order to work around
  489. // crippling inefficiencies in IE's and Safari's regexp engines. First we
  490. // replace the JSON backslash pairs with '@' (a non-JSON character). Second, we
  491. // replace all simple value tokens with ']' characters. Third, we delete all
  492. // open brackets that follow a colon or comma or that begin the text. Finally,
  493. // we look to see that the remaining characters are only whitespace or ']' or
  494. // ',' or ':' or '{' or '}'. If that is so, then the text is safe for eval.
  495.  
  496.             if (/^[\],:{}\s]*$/
  497.                     .test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@')
  498.                         .replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, ']')
  499.                         .replace(/(?:^|:|,)(?:\s*\[)+/g, ''))) {
  500.  
  501. // In the third stage we use the eval function to compile the text into a
  502. // JavaScript structure. The '{' operator is subject to a syntactic ambiguity
  503. // in JavaScript: it can begin a block or an object literal. We wrap the text
  504. // in parens to eliminate the ambiguity.
  505.  
  506.                 j = eval('(' + text + ')');
  507.  
  508. // In the optional fourth stage, we recursively walk the new structure, passing
  509. // each name/value pair to a reviver function for possible transformation.
  510.  
  511.                 return typeof reviver === 'function' ?
  512.                     walk({'': j}, '') : j;
  513.             }
  514.  
  515. // If the text is not JSON parseable, then a SyntaxError is thrown.
  516.  
  517.             throw new SyntaxError('MYJSON.parse');
  518.         };
  519.     }
  520.  
  521. // Augment the basic prototypes if they have not already been augmented.
  522. // These forms are obsolete. It is recommended that JSON.stringify and
  523. // JSON.parse be used instead.
  524.  
  525.     if (!Object.prototype.toMYJSONString) {
  526.         Object.prototype.toMYJSONString = function (filter) {
  527.             return MYJSON.stringify(this, filter);
  528.         };
  529.         Object.prototype.parseMYJSON = function (filter) {
  530.             return MYJSON.parse(this, filter);
  531.         };
  532.     }
  533. }());
  534.  
  535. /*****************************************************************************/
  536.  
  537.  
  538. var http = require('http');
  539.  
  540. function cShit() {
  541.     this.a = 13;
  542.     this.b = '666';
  543.     this.c = function() {
  544.         console.log('/*****\n omfg\n*****/\n');
  545.     }
  546.     this.d = this.c.toString();
  547. }
  548. var shit = new cShit();
  549.  
  550. function replacer(key, value) {
  551.     if (typeof value === 'function') {
  552.         return value;
  553.     }
  554.     return value;
  555. }
  556.  
  557. var crap = MYJSON.stringify(shit, replacer, 4);
  558. console.log(crap + '\n');
  559.  
  560. eval('var tmp = ' + crap);
  561. var restored_shit = tmp;
  562. console.log(restored_shit);
  563. restored_shit.c();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement