oj 2.0.0 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +17 -23
- data/README.md +74 -425
- data/ext/oj/buf.h +103 -0
- data/ext/oj/cache8.c +4 -0
- data/ext/oj/circarray.c +68 -0
- data/ext/oj/circarray.h +23 -0
- data/ext/oj/code.c +227 -0
- data/ext/oj/code.h +40 -0
- data/ext/oj/compat.c +243 -0
- data/ext/oj/custom.c +1097 -0
- data/ext/oj/dump.c +766 -1534
- data/ext/oj/dump.h +92 -0
- data/ext/oj/dump_compat.c +937 -0
- data/ext/oj/dump_leaf.c +254 -0
- data/ext/oj/dump_object.c +810 -0
- data/ext/oj/dump_rails.c +329 -0
- data/ext/oj/dump_strict.c +416 -0
- data/ext/oj/encode.h +51 -0
- data/ext/oj/err.c +57 -0
- data/ext/oj/err.h +70 -0
- data/ext/oj/extconf.rb +17 -7
- data/ext/oj/fast.c +213 -180
- data/ext/oj/hash.c +163 -0
- data/ext/oj/hash.h +46 -0
- data/ext/oj/hash_test.c +512 -0
- data/ext/oj/mimic_json.c +817 -0
- data/ext/oj/mimic_rails.c +806 -0
- data/ext/oj/mimic_rails.h +17 -0
- data/ext/oj/object.c +752 -0
- data/ext/oj/odd.c +230 -0
- data/ext/oj/odd.h +44 -0
- data/ext/oj/oj.c +1288 -929
- data/ext/oj/oj.h +240 -69
- data/ext/oj/parse.c +1014 -0
- data/ext/oj/parse.h +92 -0
- data/ext/oj/reader.c +223 -0
- data/ext/oj/reader.h +151 -0
- data/ext/oj/resolve.c +127 -0
- data/ext/oj/{cache.h → resolve.h} +6 -13
- data/ext/oj/rxclass.c +133 -0
- data/ext/oj/rxclass.h +27 -0
- data/ext/oj/saj.c +77 -175
- data/ext/oj/scp.c +224 -0
- data/ext/oj/sparse.c +911 -0
- data/ext/oj/stream_writer.c +301 -0
- data/ext/oj/strict.c +162 -0
- data/ext/oj/string_writer.c +480 -0
- data/ext/oj/val_stack.c +98 -0
- data/ext/oj/val_stack.h +188 -0
- data/lib/oj/active_support_helper.rb +41 -0
- data/lib/oj/bag.rb +6 -10
- data/lib/oj/easy_hash.rb +52 -0
- data/lib/oj/json.rb +172 -0
- data/lib/oj/mimic.rb +260 -5
- data/lib/oj/saj.rb +13 -10
- data/lib/oj/schandler.rb +142 -0
- data/lib/oj/state.rb +131 -0
- data/lib/oj/version.rb +1 -1
- data/lib/oj.rb +11 -23
- data/pages/Advanced.md +22 -0
- data/pages/Compatibility.md +25 -0
- data/pages/Custom.md +23 -0
- data/pages/Encoding.md +65 -0
- data/pages/JsonGem.md +79 -0
- data/pages/Modes.md +140 -0
- data/pages/Options.md +250 -0
- data/pages/Rails.md +60 -0
- data/pages/Security.md +20 -0
- data/test/_test_active.rb +76 -0
- data/test/_test_active_mimic.rb +96 -0
- data/test/_test_mimic_rails.rb +126 -0
- data/test/activesupport4/decoding_test.rb +105 -0
- data/test/activesupport4/encoding_test.rb +531 -0
- data/test/activesupport4/test_helper.rb +41 -0
- data/test/activesupport5/decoding_test.rb +125 -0
- data/test/activesupport5/encoding_test.rb +483 -0
- data/test/activesupport5/encoding_test_cases.rb +90 -0
- data/test/activesupport5/test_helper.rb +50 -0
- data/test/activesupport5/time_zone_test_helpers.rb +24 -0
- data/test/helper.rb +27 -0
- data/test/isolated/shared.rb +310 -0
- data/test/isolated/test_mimic_after.rb +13 -0
- data/test/isolated/test_mimic_alone.rb +12 -0
- data/test/isolated/test_mimic_as_json.rb +45 -0
- data/test/isolated/test_mimic_before.rb +13 -0
- data/test/isolated/test_mimic_define.rb +28 -0
- data/test/isolated/test_mimic_rails_after.rb +22 -0
- data/test/isolated/test_mimic_rails_before.rb +21 -0
- data/test/isolated/test_mimic_redefine.rb +15 -0
- data/test/json_gem/json_addition_test.rb +216 -0
- data/test/json_gem/json_common_interface_test.rb +143 -0
- data/test/json_gem/json_encoding_test.rb +109 -0
- data/test/json_gem/json_ext_parser_test.rb +20 -0
- data/test/json_gem/json_fixtures_test.rb +35 -0
- data/test/json_gem/json_generator_test.rb +383 -0
- data/test/json_gem/json_generic_object_test.rb +90 -0
- data/test/json_gem/json_parser_test.rb +470 -0
- data/test/json_gem/json_string_matching_test.rb +42 -0
- data/test/json_gem/test_helper.rb +18 -0
- data/test/perf_compat.rb +130 -0
- data/test/perf_fast.rb +9 -9
- data/test/perf_file.rb +64 -0
- data/test/{perf_obj.rb → perf_object.rb} +24 -10
- data/test/perf_scp.rb +151 -0
- data/test/perf_strict.rb +32 -113
- data/test/sample.rb +2 -3
- data/test/test_compat.rb +474 -0
- data/test/test_custom.rb +355 -0
- data/test/test_debian.rb +53 -0
- data/test/test_fast.rb +66 -16
- data/test/test_file.rb +237 -0
- data/test/test_gc.rb +49 -0
- data/test/test_hash.rb +29 -0
- data/test/test_null.rb +376 -0
- data/test/test_object.rb +1010 -0
- data/test/test_saj.rb +16 -16
- data/test/test_scp.rb +417 -0
- data/test/test_strict.rb +410 -0
- data/test/test_various.rb +815 -0
- data/test/test_writer.rb +308 -0
- data/test/tests.rb +9 -902
- data/test/tests_mimic.rb +14 -0
- data/test/tests_mimic_addition.rb +7 -0
- metadata +253 -38
- data/ext/oj/cache.c +0 -148
- data/ext/oj/foo.rb +0 -6
- data/ext/oj/load.c +0 -1049
- data/test/a.rb +0 -38
- data/test/perf1.rb +0 -64
- data/test/perf2.rb +0 -76
- data/test/perf_obj_old.rb +0 -213
- data/test/test_mimic.rb +0 -208
data/ext/oj/hash.c
ADDED
@@ -0,0 +1,163 @@
|
|
1
|
+
/* hash.c
|
2
|
+
* Copyright (c) 2011, Peter Ohler
|
3
|
+
* All rights reserved.
|
4
|
+
*
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
6
|
+
* modification, are permitted provided that the following conditions are met:
|
7
|
+
*
|
8
|
+
* - Redistributions of source code must retain the above copyright notice, this
|
9
|
+
* list of conditions and the following disclaimer.
|
10
|
+
*
|
11
|
+
* - Redistributions in binary form must reproduce the above copyright notice,
|
12
|
+
* this list of conditions and the following disclaimer in the documentation
|
13
|
+
* and/or other materials provided with the distribution.
|
14
|
+
*
|
15
|
+
* - Neither the name of Peter Ohler nor the names of its contributors may be
|
16
|
+
* used to endorse or promote products derived from this software without
|
17
|
+
* specific prior written permission.
|
18
|
+
*
|
19
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
20
|
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
21
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
22
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
23
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
24
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
25
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
26
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
27
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
28
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
29
|
+
*/
|
30
|
+
|
31
|
+
#include "hash.h"
|
32
|
+
#include <stdint.h>
|
33
|
+
|
34
|
+
#define HASH_MASK 0x000003FF
|
35
|
+
#define HASH_SLOT_CNT 1024
|
36
|
+
|
37
|
+
typedef struct _KeyVal {
|
38
|
+
struct _KeyVal *next;
|
39
|
+
const char *key;
|
40
|
+
size_t len;
|
41
|
+
VALUE val;
|
42
|
+
} *KeyVal;
|
43
|
+
|
44
|
+
struct _Hash {
|
45
|
+
struct _KeyVal slots[HASH_SLOT_CNT];
|
46
|
+
};
|
47
|
+
|
48
|
+
struct _Hash class_hash;
|
49
|
+
struct _Hash intern_hash;
|
50
|
+
|
51
|
+
// almost the Murmur hash algorithm
|
52
|
+
#define M 0x5bd1e995
|
53
|
+
#define C1 0xCC9E2D51
|
54
|
+
#define C2 0x1B873593
|
55
|
+
#define N 0xE6546B64
|
56
|
+
|
57
|
+
static uint32_t
|
58
|
+
hash_calc(const uint8_t *key, size_t len) {
|
59
|
+
const uint8_t *end = key + len;
|
60
|
+
const uint8_t *endless = key + (len / 4 * 4);
|
61
|
+
uint32_t h = (uint32_t)len;
|
62
|
+
uint32_t k;
|
63
|
+
|
64
|
+
while (key < endless) {
|
65
|
+
k = (uint32_t)*key++;
|
66
|
+
k |= (uint32_t)*key++ << 8;
|
67
|
+
k |= (uint32_t)*key++ << 16;
|
68
|
+
k |= (uint32_t)*key++ << 24;
|
69
|
+
|
70
|
+
k *= M;
|
71
|
+
k ^= k >> 24;
|
72
|
+
h *= M;
|
73
|
+
h ^= k * M;
|
74
|
+
}
|
75
|
+
if (1 < end - key) {
|
76
|
+
uint16_t k16 = (uint16_t)*key++;
|
77
|
+
|
78
|
+
k16 |= (uint16_t)*key++ << 8;
|
79
|
+
h ^= k16 << 8;
|
80
|
+
}
|
81
|
+
if (key < end) {
|
82
|
+
h ^= *key;
|
83
|
+
}
|
84
|
+
h *= M;
|
85
|
+
h ^= h >> 13;
|
86
|
+
h *= M;
|
87
|
+
h ^= h >> 15;
|
88
|
+
|
89
|
+
return h;
|
90
|
+
}
|
91
|
+
|
92
|
+
void
|
93
|
+
oj_hash_init() {
|
94
|
+
memset(class_hash.slots, 0, sizeof(class_hash.slots));
|
95
|
+
memset(intern_hash.slots, 0, sizeof(intern_hash.slots));
|
96
|
+
}
|
97
|
+
|
98
|
+
// if slotp is 0 then just lookup
|
99
|
+
static VALUE
|
100
|
+
hash_get(Hash hash, const char *key, size_t len, VALUE **slotp, VALUE def_value) {
|
101
|
+
uint32_t h = hash_calc((const uint8_t*)key, len) & HASH_MASK;
|
102
|
+
KeyVal bucket = hash->slots + h;
|
103
|
+
|
104
|
+
if (0 != bucket->key) {
|
105
|
+
KeyVal b;
|
106
|
+
|
107
|
+
for (b = bucket; 0 != b; b = b->next) {
|
108
|
+
if (len == b->len && 0 == strncmp(b->key, key, len)) {
|
109
|
+
*slotp = &b->val;
|
110
|
+
return b->val;
|
111
|
+
}
|
112
|
+
bucket = b;
|
113
|
+
}
|
114
|
+
}
|
115
|
+
if (0 != slotp) {
|
116
|
+
if (0 != bucket->key) {
|
117
|
+
KeyVal b = ALLOC(struct _KeyVal);
|
118
|
+
|
119
|
+
b->next = 0;
|
120
|
+
bucket->next = b;
|
121
|
+
bucket = b;
|
122
|
+
}
|
123
|
+
bucket->key = oj_strndup(key, len);
|
124
|
+
bucket->len = len;
|
125
|
+
bucket->val = def_value;
|
126
|
+
*slotp = &bucket->val;
|
127
|
+
}
|
128
|
+
return def_value;
|
129
|
+
}
|
130
|
+
|
131
|
+
void
|
132
|
+
oj_hash_print() {
|
133
|
+
int i;
|
134
|
+
KeyVal b;
|
135
|
+
|
136
|
+
for (i = 0; i < HASH_SLOT_CNT; i++) {
|
137
|
+
printf("%4d:", i);
|
138
|
+
for (b = class_hash.slots + i; 0 != b && 0 != b->key; b = b->next) {
|
139
|
+
printf(" %s", b->key);
|
140
|
+
}
|
141
|
+
printf("\n");
|
142
|
+
}
|
143
|
+
}
|
144
|
+
|
145
|
+
VALUE
|
146
|
+
oj_class_hash_get(const char *key, size_t len, VALUE **slotp) {
|
147
|
+
return hash_get(&class_hash, key, len, slotp, Qnil);
|
148
|
+
}
|
149
|
+
|
150
|
+
ID
|
151
|
+
oj_attr_hash_get(const char *key, size_t len, ID **slotp) {
|
152
|
+
return (ID)hash_get(&intern_hash, key, len, (VALUE**)slotp, 0);
|
153
|
+
}
|
154
|
+
|
155
|
+
char*
|
156
|
+
oj_strndup(const char *s, size_t len) {
|
157
|
+
char *d = ALLOC_N(char, len + 1);
|
158
|
+
|
159
|
+
memcpy(d, s, len);
|
160
|
+
d[len] = '\0';
|
161
|
+
|
162
|
+
return d;
|
163
|
+
}
|
data/ext/oj/hash.h
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
/* hash.h
|
2
|
+
* Copyright (c) 2011, Peter Ohler
|
3
|
+
* All rights reserved.
|
4
|
+
*
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
6
|
+
* modification, are permitted provided that the following conditions are met:
|
7
|
+
*
|
8
|
+
* - Redistributions of source code must retain the above copyright notice, this
|
9
|
+
* list of conditions and the following disclaimer.
|
10
|
+
*
|
11
|
+
* - Redistributions in binary form must reproduce the above copyright notice,
|
12
|
+
* this list of conditions and the following disclaimer in the documentation
|
13
|
+
* and/or other materials provided with the distribution.
|
14
|
+
*
|
15
|
+
* - Neither the name of Peter Ohler nor the names of its contributors may be
|
16
|
+
* used to endorse or promote products derived from this software without
|
17
|
+
* specific prior written permission.
|
18
|
+
*
|
19
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
20
|
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
21
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
22
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
23
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
24
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
25
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
26
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
27
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
28
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
29
|
+
*/
|
30
|
+
|
31
|
+
#ifndef __OJ_HASH_H__
|
32
|
+
#define __OJ_HASH_H__
|
33
|
+
|
34
|
+
#include "ruby.h"
|
35
|
+
|
36
|
+
typedef struct _Hash *Hash;
|
37
|
+
|
38
|
+
extern void oj_hash_init();
|
39
|
+
|
40
|
+
extern VALUE oj_class_hash_get(const char *key, size_t len, VALUE **slotp);
|
41
|
+
extern ID oj_attr_hash_get(const char *key, size_t len, ID **slotp);
|
42
|
+
|
43
|
+
extern void oj_hash_print();
|
44
|
+
extern char* oj_strndup(const char *s, size_t len);
|
45
|
+
|
46
|
+
#endif /* __OJ_HASH_H__ */
|