oj 3.12.3 → 3.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oj
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.12.3
4
+ version: 3.13.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Ohler
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-02 00:00:00.000000000 Z
11
+ date: 2021-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler
@@ -86,6 +86,7 @@ extra_rdoc_files:
86
86
  - pages/JsonGem.md
87
87
  - pages/Modes.md
88
88
  - pages/Options.md
89
+ - pages/Parser.md
89
90
  - pages/Rails.md
90
91
  - pages/Security.md
91
92
  - pages/WAB.md
@@ -93,6 +94,8 @@ files:
93
94
  - LICENSE
94
95
  - README.md
95
96
  - ext/oj/buf.h
97
+ - ext/oj/cache.c
98
+ - ext/oj/cache.h
96
99
  - ext/oj/cache8.c
97
100
  - ext/oj/cache8.h
98
101
  - ext/oj/circarray.c
@@ -101,6 +104,7 @@ files:
101
104
  - ext/oj/code.h
102
105
  - ext/oj/compat.c
103
106
  - ext/oj/custom.c
107
+ - ext/oj/debug.c
104
108
  - ext/oj/dump.c
105
109
  - ext/oj/dump.h
106
110
  - ext/oj/dump_compat.c
@@ -112,9 +116,8 @@ files:
112
116
  - ext/oj/err.h
113
117
  - ext/oj/extconf.rb
114
118
  - ext/oj/fast.c
115
- - ext/oj/hash.c
116
- - ext/oj/hash.h
117
- - ext/oj/hash_test.c
119
+ - ext/oj/intern.c
120
+ - ext/oj/intern.h
118
121
  - ext/oj/mimic_json.c
119
122
  - ext/oj/object.c
120
123
  - ext/oj/odd.c
@@ -123,6 +126,8 @@ files:
123
126
  - ext/oj/oj.h
124
127
  - ext/oj/parse.c
125
128
  - ext/oj/parse.h
129
+ - ext/oj/parser.c
130
+ - ext/oj/parser.h
126
131
  - ext/oj/rails.c
127
132
  - ext/oj/rails.h
128
133
  - ext/oj/reader.c
@@ -132,6 +137,7 @@ files:
132
137
  - ext/oj/rxclass.c
133
138
  - ext/oj/rxclass.h
134
139
  - ext/oj/saj.c
140
+ - ext/oj/saj2.c
135
141
  - ext/oj/scp.c
136
142
  - ext/oj/sparse.c
137
143
  - ext/oj/stream_writer.c
@@ -139,10 +145,12 @@ files:
139
145
  - ext/oj/string_writer.c
140
146
  - ext/oj/trace.c
141
147
  - ext/oj/trace.h
148
+ - ext/oj/usual.c
142
149
  - ext/oj/util.c
143
150
  - ext/oj/util.h
144
151
  - ext/oj/val_stack.c
145
152
  - ext/oj/val_stack.h
153
+ - ext/oj/validate.c
146
154
  - ext/oj/wab.c
147
155
  - lib/oj.rb
148
156
  - lib/oj/active_support_helper.rb
@@ -162,6 +170,7 @@ files:
162
170
  - pages/JsonGem.md
163
171
  - pages/Modes.md
164
172
  - pages/Options.md
173
+ - pages/Parser.md
165
174
  - pages/Rails.md
166
175
  - pages/Security.md
167
176
  - pages/WAB.md
@@ -214,6 +223,7 @@ files:
214
223
  - test/perf_fast.rb
215
224
  - test/perf_file.rb
216
225
  - test/perf_object.rb
226
+ - test/perf_parser.rb
217
227
  - test/perf_saj.rb
218
228
  - test/perf_scp.rb
219
229
  - test/perf_simple.rb
@@ -245,6 +255,9 @@ files:
245
255
  - test/test_integer_range.rb
246
256
  - test/test_null.rb
247
257
  - test/test_object.rb
258
+ - test/test_parser.rb
259
+ - test/test_parser_saj.rb
260
+ - test/test_parser_usual.rb
248
261
  - test/test_rails.rb
249
262
  - test/test_saj.rb
250
263
  - test/test_scp.rb
@@ -339,6 +352,7 @@ test_files:
339
352
  - test/perf_fast.rb
340
353
  - test/perf_file.rb
341
354
  - test/perf_object.rb
355
+ - test/perf_parser.rb
342
356
  - test/perf_saj.rb
343
357
  - test/perf_scp.rb
344
358
  - test/perf_simple.rb
@@ -370,6 +384,9 @@ test_files:
370
384
  - test/test_integer_range.rb
371
385
  - test/test_null.rb
372
386
  - test/test_object.rb
387
+ - test/test_parser.rb
388
+ - test/test_parser_saj.rb
389
+ - test/test_parser_usual.rb
373
390
  - test/test_rails.rb
374
391
  - test/test_saj.rb
375
392
  - test/test_scp.rb
data/ext/oj/hash.c DELETED
@@ -1,168 +0,0 @@
1
- // Copyright (c) 2011 Peter Ohler. All rights reserved.
2
- // Licensed under the MIT License. See LICENSE file in the project root for license details.
3
-
4
- #include "hash.h"
5
-
6
- #include <stdint.h>
7
-
8
- #define HASH_SLOT_CNT ((uint32_t)8192)
9
- #define HASH_MASK (HASH_SLOT_CNT - 1)
10
-
11
- typedef struct _keyVal {
12
- struct _keyVal *next;
13
- const char * key;
14
- size_t len;
15
- VALUE val;
16
- } * KeyVal;
17
-
18
- struct _hash {
19
- struct _keyVal slots[HASH_SLOT_CNT];
20
- };
21
-
22
- struct _hash class_hash;
23
- struct _hash str_hash;
24
- struct _hash sym_hash;
25
- struct _hash intern_hash;
26
-
27
- // almost the Murmur hash algorithm
28
- #define M 0x5bd1e995
29
- #define C1 0xCC9E2D51
30
- #define C2 0x1B873593
31
- #define N 0xE6546B64
32
-
33
- static uint32_t hash_calc(const uint8_t *key, size_t len) {
34
- const uint8_t *end = key + len;
35
- const uint8_t *endless = key + (len / 4 * 4);
36
- uint32_t h = (uint32_t)len;
37
- uint32_t k;
38
-
39
- while (key < endless) {
40
- k = (uint32_t)*key++;
41
- k |= (uint32_t)*key++ << 8;
42
- k |= (uint32_t)*key++ << 16;
43
- k |= (uint32_t)*key++ << 24;
44
-
45
- k *= M;
46
- k ^= k >> 24;
47
- h *= M;
48
- h ^= k * M;
49
- }
50
- if (1 < end - key) {
51
- uint16_t k16 = (uint16_t)*key++;
52
-
53
- k16 |= (uint16_t)*key++ << 8;
54
- h ^= k16 << 8;
55
- }
56
- if (key < end) {
57
- h ^= *key;
58
- }
59
- h *= M;
60
- h ^= h >> 13;
61
- h *= M;
62
- h ^= h >> 15;
63
-
64
- return h;
65
- }
66
-
67
- void oj_hash_init() {
68
- memset(class_hash.slots, 0, sizeof(class_hash.slots));
69
- memset(str_hash.slots, 0, sizeof(str_hash.slots));
70
- memset(sym_hash.slots, 0, sizeof(sym_hash.slots));
71
- memset(intern_hash.slots, 0, sizeof(intern_hash.slots));
72
- }
73
-
74
- // if slotp is 0 then just lookup
75
- static VALUE hash_get(Hash hash, const char *key, size_t len, VALUE **slotp, VALUE def_value) {
76
- uint32_t h = hash_calc((const uint8_t *)key, len) & HASH_MASK;
77
- KeyVal bucket = hash->slots + h;
78
-
79
- if (0 != bucket->key) {
80
- KeyVal b;
81
-
82
- for (b = bucket; 0 != b; b = b->next) {
83
- if (len == b->len && 0 == strncmp(b->key, key, len)) {
84
- *slotp = &b->val;
85
- return b->val;
86
- }
87
- bucket = b;
88
- }
89
- }
90
- if (0 != slotp) {
91
- if (0 != bucket->key) {
92
- KeyVal b = ALLOC(struct _keyVal);
93
-
94
- b->next = 0;
95
- bucket->next = b;
96
- bucket = b;
97
- }
98
- bucket->key = oj_strndup(key, len);
99
- bucket->len = len;
100
- bucket->val = def_value;
101
- *slotp = &bucket->val;
102
- }
103
- return def_value;
104
- }
105
-
106
- void oj_hash_print() {
107
- uint32_t i;
108
- KeyVal b;
109
-
110
- for (i = 0; i < HASH_SLOT_CNT; i++) {
111
- printf("%4d:", i);
112
- for (b = class_hash.slots + i; 0 != b && 0 != b->key; b = b->next) {
113
- printf(" %s", b->key);
114
- }
115
- printf("\n");
116
- }
117
- }
118
-
119
- void oj_hash_sizes() {
120
- uint32_t i;
121
- KeyVal b;
122
- int max = 0;
123
- int min = 1000000;
124
-
125
- for (i = 0; i < HASH_SLOT_CNT; i++) {
126
- int cnt = 0;
127
-
128
- for (b = str_hash.slots + i; 0 != b && 0 != b->key; b = b->next) {
129
- cnt++;
130
- }
131
- // printf(" %4d\n", cnt);
132
- if (max < cnt) {
133
- max = cnt;
134
- }
135
- if (cnt < min) {
136
- min = cnt;
137
- }
138
- }
139
- printf("min: %d max: %d\n", min, max);
140
- }
141
-
142
- VALUE
143
- oj_class_hash_get(const char *key, size_t len, VALUE **slotp) {
144
- return hash_get(&class_hash, key, len, slotp, Qnil);
145
- }
146
-
147
- VALUE
148
- oj_str_hash_get(const char *key, size_t len, VALUE **slotp) {
149
- return hash_get(&str_hash, key, len, slotp, Qnil);
150
- }
151
-
152
- VALUE
153
- oj_sym_hash_get(const char *key, size_t len, VALUE **slotp) {
154
- return hash_get(&sym_hash, key, len, slotp, Qnil);
155
- }
156
-
157
- ID oj_attr_hash_get(const char *key, size_t len, ID **slotp) {
158
- return (ID)hash_get(&intern_hash, key, len, (VALUE **)slotp, 0);
159
- }
160
-
161
- char *oj_strndup(const char *s, size_t len) {
162
- char *d = ALLOC_N(char, len + 1);
163
-
164
- memcpy(d, s, len);
165
- d[len] = '\0';
166
-
167
- return d;
168
- }
data/ext/oj/hash.h DELETED
@@ -1,21 +0,0 @@
1
- // Copyright (c) 2011 Peter Ohler. All rights reserved.
2
- // Licensed under the MIT License. See LICENSE file in the project root for license details.
3
-
4
- #ifndef OJ_HASH_H
5
- #define OJ_HASH_H
6
-
7
- #include "ruby.h"
8
-
9
- typedef struct _hash *Hash;
10
-
11
- extern void oj_hash_init();
12
-
13
- extern VALUE oj_class_hash_get(const char *key, size_t len, VALUE **slotp);
14
- extern VALUE oj_str_hash_get(const char *key, size_t len, VALUE **slotp);
15
- extern VALUE oj_sym_hash_get(const char *key, size_t len, VALUE **slotp);
16
- extern ID oj_attr_hash_get(const char *key, size_t len, ID **slotp);
17
-
18
- extern void oj_hash_print();
19
- extern char *oj_strndup(const char *s, size_t len);
20
-
21
- #endif /* OJ_HASH_H */
data/ext/oj/hash_test.c DELETED
@@ -1,491 +0,0 @@
1
- // Copyright (c) 2011 Peter Ohler. All rights reserved.
2
- // Licensed under the MIT License. See LICENSE file in the project root for license details.
3
-
4
- // if windows, comment out the whole file. It's only a performance test.
5
- #ifndef _WIN32
6
- #include "hash.h"
7
-
8
- #include <stdint.h>
9
- #include <sys/time.h>
10
- #include <time.h>
11
-
12
- /* Define printf formats for standard types, like PRIu64 for uint64_t. */
13
- #define __STDC_FORMAT_MACROS
14
- #include <inttypes.h>
15
-
16
- typedef struct _strLen {
17
- const char *str;
18
- size_t len;
19
- } * StrLen;
20
-
21
- static struct _strLen data[] = {{"Gem::Version", 12},
22
- {"TracePoint", 10},
23
- {"Complex::compatible", 19},
24
- {"Complex", 7},
25
- {"Rational::compatible", 20},
26
- {"Rational", 8},
27
- {"FiberError", 10},
28
- {"Fiber", 5},
29
- {"ThreadError", 11},
30
- {"Mutex", 5},
31
- {"ThreadGroup", 11},
32
- {"RubyVM::InstructionSequence", 27},
33
- {"Thread::Backtrace::Location", 27},
34
- {"Thread::Backtrace", 17},
35
- {"Thread", 6},
36
- {"RubyVM::Env", 11},
37
- {"RubyVM", 6},
38
- {"Enumerator::Yielder", 19},
39
- {"Enumerator::Generator", 21},
40
- {"StopIteration", 13},
41
- {"Enumerator::Lazy", 16},
42
- {"Enumerator", 10},
43
- {"ObjectSpace::WeakMap", 20},
44
- {"Math::DomainError", 17},
45
- {"Binding", 7},
46
- {"UnboundMethod", 13},
47
- {"Method", 6},
48
- {"SystemStackError", 16},
49
- {"LocalJumpError", 14},
50
- {"Proc", 4},
51
- {"Struct::Tms", 11},
52
- {"Process::Status", 15},
53
- {"Random", 6},
54
- {"Time", 4},
55
- {"Dir", 3},
56
- {"File::Stat", 10},
57
- {"File", 4},
58
- {"ARGF.class", 10},
59
- {"IO", 2},
60
- {"EOFError", 8},
61
- {"IOError", 7},
62
- {"Range", 5},
63
- {"Encoding::Converter", 19},
64
- {"Encoding::ConverterNotFoundError", 32},
65
- {"Encoding::InvalidByteSequenceError", 34},
66
- {"Encoding::UndefinedConversionError", 34},
67
- {"MatchData", 9},
68
- {"Regexp", 6},
69
- {"RegexpError", 11},
70
- {"Struct", 6},
71
- {"Hash", 4},
72
- {"Array", 5},
73
- {"Errno::ERPCMISMATCH", 19},
74
- {"Errno::EPROGUNAVAIL", 19},
75
- {"Errno::EPROGMISMATCH", 20},
76
- {"Errno::EPROCUNAVAIL", 19},
77
- {"Errno::EPROCLIM", 15},
78
- {"Errno::ENOTSUP", 14},
79
- {"Errno::ENOATTR", 14},
80
- {"Errno::ENEEDAUTH", 16},
81
- {"Errno::EFTYPE", 13},
82
- {"Errno::EBADRPC", 14},
83
- {"Errno::EAUTH", 12},
84
- {"Errno::EOWNERDEAD", 17},
85
- {"Errno::ENOTRECOVERABLE", 22},
86
- {"Errno::ECANCELED", 16},
87
- {"Errno::EDQUOT", 13},
88
- {"Errno::ESTALE", 13},
89
- {"Errno::EINPROGRESS", 18},
90
- {"Errno::EALREADY", 15},
91
- {"Errno::EHOSTUNREACH", 19},
92
- {"Errno::EHOSTDOWN", 16},
93
- {"Errno::ECONNREFUSED", 19},
94
- {"Errno::ETIMEDOUT", 16},
95
- {"Errno::ETOOMANYREFS", 19},
96
- {"Errno::ESHUTDOWN", 16},
97
- {"Errno::ENOTCONN", 15},
98
- {"Errno::EISCONN", 14},
99
- {"Errno::ENOBUFS", 14},
100
- {"Errno::ECONNRESET", 17},
101
- {"Errno::ECONNABORTED", 19},
102
- {"Errno::ENETRESET", 16},
103
- {"Errno::ENETUNREACH", 18},
104
- {"Errno::ENETDOWN", 15},
105
- {"Errno::EADDRNOTAVAIL", 20},
106
- {"Errno::EADDRINUSE", 17},
107
- {"Errno::EAFNOSUPPORT", 19},
108
- {"Errno::EPFNOSUPPORT", 19},
109
- {"Errno::EOPNOTSUPP", 17},
110
- {"Errno::ESOCKTNOSUPPORT", 22},
111
- {"Errno::EPROTONOSUPPORT", 22},
112
- {"Errno::ENOPROTOOPT", 18},
113
- {"Errno::EPROTOTYPE", 17},
114
- {"Errno::EMSGSIZE", 15},
115
- {"Errno::EDESTADDRREQ", 19},
116
- {"Errno::ENOTSOCK", 15},
117
- {"Errno::EUSERS", 13},
118
- {"Errno::EILSEQ", 13},
119
- {"Errno::EOVERFLOW", 16},
120
- {"Errno::EBADMSG", 14},
121
- {"Errno::EMULTIHOP", 16},
122
- {"Errno::EPROTO", 13},
123
- {"Errno::ENOLINK", 14},
124
- {"Errno::EREMOTE", 14},
125
- {"Errno::ENOSR", 12},
126
- {"Errno::ETIME", 12},
127
- {"Errno::ENODATA", 14},
128
- {"Errno::ENOSTR", 13},
129
- {"Errno::EIDRM", 12},
130
- {"Errno::ENOMSG", 13},
131
- {"Errno::ELOOP", 12},
132
- {"Errno::ENOTEMPTY", 16},
133
- {"Errno::ENOSYS", 13},
134
- {"Errno::ENOLCK", 13},
135
- {"Errno::ENAMETOOLONG", 19},
136
- {"Errno::EDEADLK", 14},
137
- {"Errno::ERANGE", 13},
138
- {"Errno::EDOM", 11},
139
- {"Errno::EPIPE", 12},
140
- {"Errno::EMLINK", 13},
141
- {"Errno::EROFS", 12},
142
- {"Errno::ESPIPE", 13},
143
- {"Errno::ENOSPC", 13},
144
- {"Errno::EFBIG", 12},
145
- {"Errno::ETXTBSY", 14},
146
- {"Errno::ENOTTY", 13},
147
- {"Errno::EMFILE", 13},
148
- {"Errno::ENFILE", 13},
149
- {"Errno::EINVAL", 13},
150
- {"Errno::EISDIR", 13},
151
- {"Errno::ENOTDIR", 14},
152
- {"Errno::ENODEV", 13},
153
- {"Errno::EXDEV", 12},
154
- {"Errno::EEXIST", 13},
155
- {"Errno::EBUSY", 12},
156
- {"Errno::ENOTBLK", 14},
157
- {"Errno::EFAULT", 13},
158
- {"Errno::EACCES", 13},
159
- {"Errno::ENOMEM", 13},
160
- {"Errno::EAGAIN", 13},
161
- {"Errno::ECHILD", 13},
162
- {"Errno::EBADF", 12},
163
- {"Errno::ENOEXEC", 14},
164
- {"Errno::E2BIG", 12},
165
- {"Errno::ENXIO", 12},
166
- {"Errno::EIO", 10},
167
- {"Errno::EINTR", 12},
168
- {"Errno::ESRCH", 12},
169
- {"Errno::ENOENT", 13},
170
- {"Errno::EPERM", 12},
171
- {"Errno::NOERROR", 14},
172
- {"Bignum", 6},
173
- {"Float", 5},
174
- {"Fixnum", 6},
175
- {"Integer", 7},
176
- {"Numeric", 7},
177
- {"FloatDomainError", 16},
178
- {"ZeroDivisionError", 17},
179
- {"SystemCallError", 15},
180
- {"Encoding::CompatibilityError", 28},
181
- {"EncodingError", 13},
182
- {"NoMemoryError", 13},
183
- {"SecurityError", 13},
184
- {"RuntimeError", 12},
185
- {"NoMethodError", 13},
186
- {"NameError::message", 18},
187
- {"NameError", 9},
188
- {"NotImplementedError", 19},
189
- {"LoadError", 9},
190
- {"SyntaxError", 11},
191
- {"ScriptError", 11},
192
- {"RangeError", 10},
193
- {"KeyError", 8},
194
- {"IndexError", 10},
195
- {"ArgumentError", 13},
196
- {"TypeError", 9},
197
- {"StandardError", 13},
198
- {"Interrupt", 9},
199
- {"SignalException", 15},
200
- {"SystemExit", 10},
201
- {"Exception", 9},
202
- {"Symbol", 6},
203
- {"String", 6},
204
- {"Encoding", 8},
205
- {"FalseClass", 10},
206
- {"TrueClass", 9},
207
- {"Data", 4},
208
- {"NilClass", 8},
209
- {"Class", 5},
210
- {"Module", 6},
211
- {"Object", 6},
212
- {"BasicObject", 11},
213
- {"Gem::Requirement::BadRequirementError", 37},
214
- {"Gem::Requirement", 16},
215
- {"Gem::SourceFetchProblem", 23},
216
- {"Gem::PlatformMismatch", 21},
217
- {"Gem::ErrorReason", 16},
218
- {"Gem::LoadError", 14},
219
- {"Gem::RemoteSourceException", 26},
220
- {"Gem::RemoteInstallationSkipped", 30},
221
- {"Gem::RemoteInstallationCancelled", 32},
222
- {"Gem::RemoteError", 16},
223
- {"Gem::OperationNotSupportedError", 31},
224
- {"Gem::InvalidSpecificationException", 34},
225
- {"Gem::InstallError", 17},
226
- {"Gem::Specification", 18},
227
- {"Date", 4},
228
- {"Gem::Platform", 13},
229
- {"Gem::SpecificGemNotFoundException", 33},
230
- {"Gem::GemNotFoundException", 25},
231
- {"Gem::FormatException", 20},
232
- {"Gem::FilePermissionError", 24},
233
- {"Gem::EndOfYAMLException", 23},
234
- {"Gem::DocumentError", 18},
235
- {"Gem::GemNotInHomeException", 26},
236
- {"Gem::DependencyRemovalException", 31},
237
- {"Gem::DependencyError", 20},
238
- {"Gem::CommandLineError", 21},
239
- {"Gem::Exception", 14},
240
- {"IRB::SLex", 9},
241
- {"IRB::Notifier::NoMsgNotifier", 28},
242
- {"IRB::Notifier::LeveledNotifier", 30},
243
- {"IRB::Notifier::CompositeNotifier", 32},
244
- {"IRB::Notifier::AbstractNotifier", 31},
245
- {"IRB::Notifier::ErrUnrecognizedLevel", 35},
246
- {"IRB::Notifier::ErrUndefinedNotifier", 35},
247
- {"IRB::StdioOutputMethod", 22},
248
- {"IRB::OutputMethod::NotImplementedError", 38},
249
- {"IRB::OutputMethod", 17},
250
- {"IRB::IllegalRCGenerator", 23},
251
- {"IRB::UndefinedPromptMode", 24},
252
- {"IRB::CantChangeBinding", 22},
253
- {"IRB::CantShiftToMultiIrbMode", 28},
254
- {"IRB::NoSuchJob", 14},
255
- {"IRB::IrbSwitchedToCurrentThread", 31},
256
- {"IRB::IrbAlreadyDead", 19},
257
- {"IRB::IllegalParameter", 21},
258
- {"IRB::CantReturnToNormalMode", 27},
259
- {"IRB::NotImplementedError", 24},
260
- {"IRB::UnrecognizedSwitch", 23},
261
- {"IRB::Irb", 8},
262
- {"IRB::Abort", 10},
263
- {"IRB::Locale", 11},
264
- {"IRB::SLex::ErrNodeNothing", 25},
265
- {"IRB::SLex::ErrNodeAlreadyExists", 31},
266
- {"RubyLex", 7},
267
- {"IRB::SLex::Node", 15},
268
- {"Gem::SystemExitException", 24},
269
- {"Gem::VerificationError", 22},
270
- {"RubyToken::TkError", 18},
271
- {"RubyToken::TkUnknownChar", 24},
272
- {"RubyToken::TkOPASGN", 19},
273
- {"RubyToken::TkOp", 15},
274
- {"RubyToken::TkVal", 16},
275
- {"RubyToken::TkId", 15},
276
- {"RubyToken::TkNode", 17},
277
- {"RubyToken::Token", 16},
278
- {"RubyToken::TkUNDEF", 18},
279
- {"RubyToken::TkDEF", 16},
280
- {"RubyToken::TkMODULE", 19},
281
- {"RubyToken::TkCLASS", 18},
282
- {"RubyToken::TkWHILE", 18},
283
- {"RubyToken::TkWHEN", 17},
284
- {"RubyToken::TkCASE", 17},
285
- {"RubyToken::TkELSE", 17},
286
- {"RubyToken::TkELSIF", 18},
287
- {"RubyToken::TkTHEN", 17},
288
- {"RubyToken::TkUNLESS", 19},
289
- {"RubyToken::TkIF", 15},
290
- {"RubyToken::TkEND", 16},
291
- {"RubyToken::TkENSURE", 19},
292
- {"RubyToken::TkRESCUE", 19},
293
- {"RubyToken::TkBEGIN", 18},
294
- {"RubyToken::TkDO", 15},
295
- {"RubyToken::TkIN", 15},
296
- {"RubyToken::TkRETRY", 18},
297
- {"RubyToken::TkREDO", 17},
298
- {"RubyToken::TkNEXT", 17},
299
- {"RubyToken::TkBREAK", 18},
300
- {"RubyToken::TkFOR", 16},
301
- {"RubyToken::TkUNTIL", 18},
302
- {"RubyToken::TkTRUE", 17},
303
- {"RubyToken::TkNIL", 16},
304
- {"RubyToken::TkSELF", 17},
305
- {"RubyToken::TkSUPER", 18},
306
- {"RubyToken::TkYIELD", 18},
307
- {"RubyToken::TkRETURN", 19},
308
- {"RubyToken::TkAND", 16},
309
- {"RubyToken::TkFALSE", 18},
310
- {"RubyToken::TkUNLESS_MOD", 23},
311
- {"RubyToken::TkIF_MOD", 19},
312
- {"RubyToken::TkNOT", 16},
313
- {"RubyToken::TkOR", 15},
314
- {"RubyToken::TkALIAS", 18},
315
- {"RubyToken::TkUNTIL_MOD", 22},
316
- {"RubyToken::TkWHILE_MOD", 22},
317
- {"RubyToken::TkGVAR", 17},
318
- {"RubyToken::TkFID", 16},
319
- {"RubyToken::TkIDENTIFIER", 23},
320
- {"RubyToken::Tk__FILE__", 21},
321
- {"RubyToken::Tk__LINE__", 21},
322
- {"RubyToken::TklEND", 17},
323
- {"RubyToken::TklBEGIN", 19},
324
- {"RubyToken::TkDEFINED", 20},
325
- {"RubyToken::TkDREGEXP", 20},
326
- {"RubyToken::TkDXSTRING", 21},
327
- {"RubyToken::TkDSTRING", 20},
328
- {"RubyToken::TkSYMBOL", 19},
329
- {"RubyToken::TkREGEXP", 19},
330
- {"RubyToken::TkXSTRING", 20},
331
- {"RubyToken::TkSTRING", 19},
332
- {"RubyToken::TkFLOAT", 18},
333
- {"RubyToken::TkINTEGER", 20},
334
- {"RubyToken::TkCONSTANT", 21},
335
- {"RubyToken::TkIVAR", 17},
336
- {"RubyToken::TkCVAR", 17},
337
- {"RubyToken::TkNEQ", 16},
338
- {"RubyToken::TkEQQ", 16},
339
- {"RubyToken::TkEQ", 15},
340
- {"RubyToken::TkCMP", 16},
341
- {"RubyToken::TkPOW", 16},
342
- {"RubyToken::TkUMINUS", 19},
343
- {"RubyToken::TkUPLUS", 18},
344
- {"Exception2MessageMapper::ErrNotRegisteredException", 50},
345
- {"RubyToken::TkBACK_REF", 21},
346
- {"RubyToken::TkNTH_REF", 20},
347
- {"RubyToken::TkLSHFT", 18},
348
- {"RubyToken::TkASET", 17},
349
- {"RubyToken::TkAREF", 17},
350
- {"RubyToken::TkDOT3", 17},
351
- {"RubyToken::TkDOT2", 17},
352
- {"RubyToken::TkNMATCH", 19},
353
- {"RubyToken::TkMATCH", 18},
354
- {"RubyToken::TkOROP", 17},
355
- {"RubyToken::TkANDOP", 18},
356
- {"RubyToken::TkLEQ", 16},
357
- {"RubyToken::TkGEQ", 16},
358
- {"RubyToken::TkAMPER", 18},
359
- {"RubyToken::TkSTAR", 17},
360
- {"RubyToken::TkfLBRACE", 20},
361
- {"RubyToken::TkfLBRACK", 20},
362
- {"RubyToken::TkfLPAREN", 20},
363
- {"RubyToken::TkCOLON", 18},
364
- {"RubyToken::TkQUESTION", 21},
365
- {"RubyToken::TkASSOC", 18},
366
- {"RubyToken::TkCOLON3", 19},
367
- {"RubyToken::TkCOLON2", 19},
368
- {"RubyToken::TkRSHFT", 18},
369
- {"RubyToken::TkBITAND", 19},
370
- {"RubyToken::TkBITXOR", 19},
371
- {"RubyToken::TkBITOR", 18},
372
- {"RubyToken::TkMOD", 16},
373
- {"RubyToken::TkDIV", 16},
374
- {"RubyToken::TkMULT", 17},
375
- {"RubyToken::TkMINUS", 18},
376
- {"RubyToken::TkPLUS", 17},
377
- {"RubyToken::TkLT", 15},
378
- {"RubyToken::TkGT", 15},
379
- {"RubyToken::TkSYMBEG", 19},
380
- {"IRB::DefaultEncodings", 21},
381
- {"RubyToken::TkRPAREN", 19},
382
- {"RubyToken::TkLBRACE", 19},
383
- {"RubyToken::TkLBRACK", 19},
384
- {"RubyToken::TkLPAREN", 19},
385
- {"RubyToken::TkDOT", 16},
386
- {"RubyToken::TkASSIGN", 19},
387
- {"RubyToken::TkBACKQUOTE", 22},
388
- {"RubyToken::TkNOTOP", 18},
389
- {"RubyToken::TkBITNOT", 19},
390
- {"RubyToken::TkDOLLAR", 19},
391
- {"RubyToken::TkAT", 15},
392
- {"RubyToken::TkBACKSLASH", 22},
393
- {"RubyToken::TkEND_OF_SCRIPT", 26},
394
- {"RubyToken::TkNL", 15},
395
- {"RubyToken::TkSPACE", 18},
396
- {"RubyToken::TkRD_COMMENT", 23},
397
- {"RubyToken::TkCOMMENT", 20},
398
- {"RubyToken::TkSEMICOLON", 22},
399
- {"RubyToken::TkCOMMA", 18},
400
- {"RubyToken::TkRBRACE", 19},
401
- {"RubyToken::TkRBRACK", 19},
402
- {"RubyLex::TerminateLineInput", 27},
403
- {"RubyLex::SyntaxError", 20},
404
- {"RubyLex::TkReading2TokenDuplicateError", 38},
405
- {"RubyLex::TkSymbol2TokenNoKey", 28},
406
- {"RubyLex::TkReading2TokenNoKey", 29},
407
- {"RubyLex::AlreadyDefinedToken", 28},
408
- {"IRB::FileInputMethod", 20},
409
- {"IRB::StdioInputMethod", 21},
410
- {"IRB::InputMethod", 16},
411
- {"IRB::ReadlineInputMethod", 24},
412
- {"IRB::Context", 12},
413
- {"IRB::Inspector", 14},
414
- {"IRB::WorkSpace", 14},
415
- {0, 0}};
416
-
417
- static uint64_t micro_time() {
418
- struct timeval tv;
419
-
420
- gettimeofday(&tv, NULL);
421
-
422
- return (uint64_t)tv.tv_sec * 1000000ULL + (uint64_t)tv.tv_usec;
423
- }
424
-
425
- static void perf() {
426
- StrLen d;
427
- VALUE v;
428
- VALUE * slot = 0;
429
- uint64_t dt, start;
430
- int i, iter = 1000000;
431
- int dataCnt = sizeof(data) / sizeof(*data);
432
-
433
- oj_hash_init();
434
- start = micro_time();
435
- for (i = iter; 0 < i; i--) {
436
- for (d = data; 0 != d->str; d++) {
437
- v = oj_class_hash_get(d->str, d->len, &slot);
438
- if (Qundef == v) {
439
- if (0 != slot) {
440
- v = ID2SYM(rb_intern(d->str));
441
- *slot = v;
442
- }
443
- }
444
- }
445
- }
446
- dt = micro_time() - start;
447
- #if IS_WINDOWS
448
- printf("%d iterations took %ld msecs, %ld gets/msec\n",
449
- iter,
450
- (long)(dt / 1000),
451
- (long)(iter * dataCnt / (dt / 1000)));
452
- #else
453
- printf("%d iterations took %" PRIu64 " msecs, %ld gets/msec\n",
454
- iter,
455
- dt / 1000,
456
- (long)(iter * dataCnt / (dt / 1000)));
457
- #endif
458
- }
459
-
460
- void oj_hash_test() {
461
- StrLen d;
462
- VALUE v;
463
- VALUE *slot = 0;
464
- ;
465
-
466
- oj_hash_init();
467
- for (d = data; 0 != d->str; d++) {
468
- char *s = oj_strndup(d->str, d->len);
469
- v = oj_class_hash_get(d->str, d->len, &slot);
470
- if (Qnil == v) {
471
- if (0 == slot) {
472
- printf("*** failed to get a slot for %s\n", s);
473
- } else {
474
- v = ID2SYM(rb_intern(d->str));
475
- *slot = v;
476
- }
477
- } else {
478
- VALUE rs = rb_funcall2(v, rb_intern("to_s"), 0, 0);
479
-
480
- printf("*** get on '%s' returned '%s' (%s)\n",
481
- s,
482
- StringValuePtr(rs),
483
- rb_class2name(rb_obj_class(v)));
484
- }
485
- /*oj_hash_print(c);*/
486
- }
487
- printf("*** ---------- hash table ------------\n");
488
- oj_hash_print();
489
- perf();
490
- }
491
- #endif