-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjzon.js
158 lines (133 loc) · 3.78 KB
/
jzon.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*
** Version 0.2
**
** Changes:
** 0.2
** Previous version was not encoding arrays containing objects correctly. Revamped the encoder to
** handle objects of very different shapes. Additionally, the difference between arrays and objects
** is now stored in the encoder output.
**
*/
var JZON = JZON || (function () {
var OBJECT_FORMAT_SLOT = 0,
ARRAY_FORMAT_SLOT = 1,
INVALID_SLOT = -1;
// Is thing an array?
function isArray(thing) {
return toString.call(thing) === '[object Array]';
}
// Is thing an object?
function isObject(thing) {
return thing != null && !isArray(thing) && typeof thing === 'object';
}
// Extracts the format of the suppled object.
function _extractFormat(data, format) {
if (isArray(data)) {
format = format || Array(2);
for (var i = 0; i < data.length; i += 1) {
var n = isObject(data[i]) ? OBJECT_FORMAT_SLOT : isArray(data[i]) ? ARRAY_FORMAT_SLOT : INVALID_SLOT;
if (n !== INVALID_SLOT) {
format[n] = _extractFormat(data[i], format[n]);
}
}
}
else if (isObject(data)) {
format = format || {};
for (var name in data) {
if (!data.hasOwnProperty(name)) {
continue;
}
if (isArray(data[name])) {
format[name + '['] = _extractFormat(data[name], format[name + '[']);
} else if (isObject(data[name])) {
format[name + '{'] = _extractFormat(data[name], format[name + '{']);
} else {
format[name] = null;
}
}
}
return format;
}
function typeMatch(data, format) {
if (isArray(data)) {
return isArray(format);
}
if (isObject(data)) {
return isObject(format);
}
return format === undefined;
}
function _compressData(data, format) {
if (!typeMatch(data, format)) {
throw new Error('Data does not match format.');
}
var result = [];
if (isArray(format)) {
for (var i = 0; i < data.length; i += 1) {
var d = data[i];
if (isObject(d)) {
result.push({ '%': _compressData(d, format[OBJECT_FORMAT_SLOT]) })
} else {
result.push(_compressData(d, isArray(d) ? format[ARRAY_FORMAT_SLOT] : undefined));
}
}
} else if (isObject(format)) {
for (var name in format) {
if (/\[$/.test(name)) {
var dname = name.substr(0, name.length - 1);
result.push(_compressData(data[dname], format[name]));
} else if (/\{$/.test(name)) {
var dname = name.substr(0, name.length - 1);
result.push({ '%': data.hasOwnProperty(dname) ? _compressData(data[dname], format[name]) : null });
} else {
result.push(data.hasOwnProperty(name) ? data[name] : null)
}
}
} else {
result = data;
}
return result;
}
function _compress(data) {
var format = _extractFormat(data),
compressed = _compressData(data, format);
return { f: format, c: compressed };
}
function _uncompressData(format, compressed) {
var result = isArray(format) ? [] : isObject(format) ? {} : compressed;
if (isArray(format)) {
for (var i = 0; i < compressed.length; i++) {
var c = compressed[i];
result.push(_uncompressData(isArray(c) ? format[ARRAY_FORMAT_SLOT] : isObject(c) ? format[OBJECT_FORMAT_SLOT] : undefined, c));
}
} else if (isObject(format)) {
var i = 0;
var c = compressed['%'];
for (var name in format) {
if (c !== null) {
if (/\[$/.test(name)) {
result[name.substr(0, name.length - 1)] = _uncompressData(format[name], c[i]);
} else if (/\{$/.test(name)) {
if (c[i] && c[i]['%']) {
result[name.substr(0, name.length - 1)] = _uncompressData(format[name], c[i]);
}
} else {
if (c[i] != null) {
result[name] = c[i];
}
}
i += 1;
}
}
}
return result;
}
function _uncompress(compressed) {
return _uncompressData(compressed.f, compressed.c);
}
// The api.
return {
compress: _compress,
uncompress: _uncompress
};
}());