/* server side js functions for encoding/decoding objects into linear strings Copyright Andrew Tridgell 2005 released under the GNU GPL Version 2 or later */ /* usage: enc = encodeObject(obj); obj = decodeObject(enc); The encoded format of the object is a string that is safe to use in URLs Note that only data elements are encoded, not functions */ function __count_members(o) { var i, count = 0; for (i in o) { count++; } return count; } function __replace(str, old, rep) { var s = string_init(); var a = s.split(old, str); var j = s.join(rep, a); return s.join(rep, a); } function encodeObject(o) { var s = string_init(); var i, r = s.sprintf("%u:", __count_members(o)); for (i in o) { var t = typeof(o[i]); if (t == 'object' && o[i] == null) { t = 'null'; } if (t == 'object') { r = s.sprintf("%s%s:%s:%s", r, i, t, encodeObject(o[i])); } else if (t == "string") { var enc = s.encodeURIComponent(o[i]); var rep = __replace(enc, '%', '#'); r = s.sprintf("%s%s:%s:%s:", r, i, t, __replace(s.encodeURIComponent(o[i]),'%','#')); } else if (t == "boolean" || t == "number") { r = s.sprintf("%s%s:%s:%s:", r, i, t, "" + o[i]); } else if (t == "undefined" || t == "null") { r = s.sprintf("%s%s:%s:", r, i, t); } else { println("Unable to linearise type " + t); } } return r; } function decodeObjectArray(a) { var s = string_init(); var o = new Object(); var i, count = a[a.i]; a.i++; for (i=0;i