thrift 0.22.0 → 0.24.0
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.
- checksums.yaml +4 -4
- data/README.md +235 -17
- data/benchmark/benchmark.rb +23 -8
- data/benchmark/client.rb +50 -6
- data/benchmark/server.rb +46 -7
- data/benchmark/thin_server.rb +2 -0
- data/ext/binary_protocol_accelerated.c +154 -42
- data/ext/bytes.c +14 -0
- data/ext/compact_protocol.c +138 -45
- data/ext/constants.h +12 -0
- data/ext/extconf.rb +17 -8
- data/ext/memory_buffer.c +44 -7
- data/ext/protocol.c +29 -0
- data/ext/protocol.h +35 -0
- data/ext/struct.c +48 -17
- data/ext/thrift_native.c +28 -3
- data/lib/thrift/bytes.rb +70 -100
- data/lib/thrift/client.rb +54 -13
- data/lib/thrift/exceptions.rb +6 -5
- data/lib/thrift/multiplexed_processor.rb +20 -10
- data/lib/thrift/processor.rb +7 -6
- data/lib/thrift/protocol/base_protocol.rb +52 -21
- data/lib/thrift/protocol/binary_protocol.rb +65 -20
- data/lib/thrift/protocol/binary_protocol_accelerated.rb +6 -5
- data/lib/thrift/protocol/compact_protocol.rb +76 -41
- data/lib/thrift/protocol/header_protocol.rb +321 -0
- data/lib/thrift/protocol/json_protocol.rb +44 -27
- data/lib/thrift/protocol/multiplexed_protocol.rb +6 -5
- data/lib/thrift/protocol/protocol_decorator.rb +13 -4
- data/lib/thrift/serializer/deserializer.rb +6 -5
- data/lib/thrift/serializer/serializer.rb +5 -5
- data/lib/thrift/server/base_server.rb +5 -4
- data/lib/thrift/server/mongrel_http_server.rb +7 -6
- data/lib/thrift/server/nonblocking_server.rb +35 -9
- data/lib/thrift/server/simple_server.rb +13 -5
- data/lib/thrift/server/thin_http_server.rb +4 -3
- data/lib/thrift/server/thread_pool_server.rb +7 -6
- data/lib/thrift/server/threaded_server.rb +13 -5
- data/lib/thrift/struct.rb +12 -11
- data/lib/thrift/struct_union.rb +14 -9
- data/lib/thrift/thrift_native.rb +3 -2
- data/lib/thrift/transport/base_server_transport.rb +8 -5
- data/lib/thrift/transport/base_transport.rb +18 -14
- data/lib/thrift/transport/buffered_transport.rb +7 -6
- data/lib/thrift/transport/framed_transport.rb +8 -7
- data/lib/thrift/transport/header_transport.rb +562 -0
- data/lib/thrift/transport/http_client_transport.rb +2 -1
- data/lib/thrift/transport/io_stream_transport.rb +4 -3
- data/lib/thrift/transport/memory_buffer_transport.rb +13 -6
- data/lib/thrift/transport/server_socket.rb +14 -8
- data/lib/thrift/transport/socket.rb +126 -60
- data/lib/thrift/transport/ssl_server_socket.rb +4 -3
- data/lib/thrift/transport/ssl_socket.rb +45 -13
- data/lib/thrift/transport/unix_server_socket.rb +9 -5
- data/lib/thrift/transport/unix_socket.rb +7 -6
- data/lib/thrift/types.rb +10 -6
- data/lib/thrift/union.rb +15 -8
- data/lib/thrift/uuid.rb +50 -0
- data/lib/thrift.rb +4 -1
- data/spec/ThriftSpec.thrift +21 -1
- data/spec/base_protocol_spec.rb +21 -2
- data/spec/base_transport_spec.rb +48 -8
- data/spec/binary_protocol_accelerated_spec.rb +1 -0
- data/spec/binary_protocol_spec.rb +1 -2
- data/spec/binary_protocol_spec_shared.rb +206 -155
- data/spec/bytes_spec.rb +71 -114
- data/spec/client_spec.rb +86 -19
- data/spec/compact_protocol_spec.rb +153 -16
- data/spec/constants_demo_spec.rb +102 -0
- data/spec/exception_spec.rb +1 -1
- data/spec/flat_spec.rb +1 -0
- data/spec/header_protocol_spec.rb +476 -0
- data/spec/header_transport_spec.rb +431 -0
- data/spec/http_client_spec.rb +5 -6
- data/spec/json_protocol_spec.rb +69 -47
- data/spec/multiplexed_processor_spec.rb +75 -0
- data/spec/namespaced_spec.rb +1 -1
- data/spec/nonblocking_server_spec.rb +174 -8
- data/spec/processor_spec.rb +1 -1
- data/spec/recursion_depth_spec.rb +223 -0
- data/spec/serializer_spec.rb +1 -1
- data/spec/server_socket_spec.rb +38 -1
- data/spec/server_spec.rb +60 -9
- data/spec/socket_spec.rb +119 -13
- data/spec/socket_spec_shared.rb +73 -9
- data/spec/spec_helper.rb +2 -1
- data/spec/ssl_server_socket_spec.rb +52 -1
- data/spec/ssl_socket_spec.rb +181 -11
- data/spec/struct_nested_containers_spec.rb +2 -2
- data/spec/struct_spec.rb +114 -9
- data/spec/support/header_protocol_helper.rb +55 -0
- data/spec/thin_http_server_spec.rb +4 -18
- data/spec/types_spec.rb +26 -26
- data/spec/union_spec.rb +70 -11
- data/spec/unix_socket_spec.rb +17 -2
- data/spec/uuid_validation_spec.rb +239 -0
- data/test/fuzz/Makefile +779 -0
- data/test/fuzz/Makefile.am +173 -0
- data/test/fuzz/Makefile.in +775 -0
- data/test/fuzz/README.md +149 -0
- data/test/fuzz/fuzz_common.rb +96 -0
- data/{lib/thrift/core_ext.rb → test/fuzz/fuzz_parse_binary_protocol.rb} +4 -4
- data/{lib/thrift/core_ext/fixnum.rb → test/fuzz/fuzz_parse_binary_protocol_accelerated.rb} +7 -13
- data/test/fuzz/fuzz_parse_binary_protocol_accelerated_harness.rb +23 -0
- data/test/fuzz/fuzz_parse_binary_protocol_harness.rb +23 -0
- data/test/fuzz/fuzz_parse_compact_protocol.rb +23 -0
- data/test/fuzz/fuzz_parse_compact_protocol_harness.rb +23 -0
- data/test/fuzz/fuzz_parse_json_protocol.rb +23 -0
- data/test/fuzz/fuzz_parse_json_protocol_harness.rb +23 -0
- data/test/fuzz/fuzz_roundtrip_binary_protocol.rb +23 -0
- data/test/fuzz/fuzz_roundtrip_binary_protocol_accelerated.rb +23 -0
- data/test/fuzz/fuzz_roundtrip_binary_protocol_accelerated_harness.rb +23 -0
- data/test/fuzz/fuzz_roundtrip_binary_protocol_harness.rb +23 -0
- data/test/fuzz/fuzz_roundtrip_compact_protocol.rb +23 -0
- data/test/fuzz/fuzz_roundtrip_compact_protocol_harness.rb +23 -0
- data/test/fuzz/fuzz_roundtrip_json_protocol.rb +23 -0
- data/test/fuzz/fuzz_roundtrip_json_protocol_harness.rb +23 -0
- data/test/fuzz/fuzz_tracer.rb +29 -0
- metadata +105 -70
metadata
CHANGED
|
@@ -1,85 +1,56 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: thrift
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.24.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Apache Thrift Developers
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
13
|
+
name: logger
|
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
|
16
15
|
requirements:
|
|
17
16
|
- - ">="
|
|
18
17
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
20
|
-
type: :
|
|
18
|
+
version: '0'
|
|
19
|
+
type: :runtime
|
|
21
20
|
prerelease: false
|
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
22
|
requirements:
|
|
24
23
|
- - ">="
|
|
25
24
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: pry
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - "~>"
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.11.3
|
|
34
|
-
type: :development
|
|
35
|
-
prerelease: false
|
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
-
requirements:
|
|
38
|
-
- - "~>"
|
|
39
|
-
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.11.3
|
|
41
|
-
- !ruby/object:Gem::Dependency
|
|
42
|
-
name: pry-byebug
|
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
|
44
|
-
requirements:
|
|
45
|
-
- - "~>"
|
|
46
|
-
- !ruby/object:Gem::Version
|
|
47
|
-
version: '3.6'
|
|
48
|
-
type: :development
|
|
49
|
-
prerelease: false
|
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
-
requirements:
|
|
52
|
-
- - "~>"
|
|
53
|
-
- !ruby/object:Gem::Version
|
|
54
|
-
version: '3.6'
|
|
25
|
+
version: '0'
|
|
55
26
|
- !ruby/object:Gem::Dependency
|
|
56
|
-
name:
|
|
27
|
+
name: bundler
|
|
57
28
|
requirement: !ruby/object:Gem::Requirement
|
|
58
29
|
requirements:
|
|
59
|
-
- - "
|
|
30
|
+
- - ">="
|
|
60
31
|
- !ruby/object:Gem::Version
|
|
61
|
-
version:
|
|
32
|
+
version: 2.2.34
|
|
62
33
|
type: :development
|
|
63
34
|
prerelease: false
|
|
64
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
36
|
requirements:
|
|
66
|
-
- - "
|
|
37
|
+
- - ">="
|
|
67
38
|
- !ruby/object:Gem::Version
|
|
68
|
-
version:
|
|
39
|
+
version: 2.2.34
|
|
69
40
|
- !ruby/object:Gem::Dependency
|
|
70
41
|
name: rack
|
|
71
42
|
requirement: !ruby/object:Gem::Requirement
|
|
72
43
|
requirements:
|
|
73
|
-
- -
|
|
44
|
+
- - ">="
|
|
74
45
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 2.2.
|
|
46
|
+
version: 2.2.23
|
|
76
47
|
type: :development
|
|
77
48
|
prerelease: false
|
|
78
49
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
50
|
requirements:
|
|
80
|
-
- -
|
|
51
|
+
- - ">="
|
|
81
52
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 2.2.
|
|
53
|
+
version: 2.2.23
|
|
83
54
|
- !ruby/object:Gem::Dependency
|
|
84
55
|
name: rack-test
|
|
85
56
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -100,14 +71,14 @@ dependencies:
|
|
|
100
71
|
requirements:
|
|
101
72
|
- - "~>"
|
|
102
73
|
- !ruby/object:Gem::Version
|
|
103
|
-
version: '
|
|
74
|
+
version: '13.3'
|
|
104
75
|
type: :development
|
|
105
76
|
prerelease: false
|
|
106
77
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
78
|
requirements:
|
|
108
79
|
- - "~>"
|
|
109
80
|
- !ruby/object:Gem::Version
|
|
110
|
-
version: '
|
|
81
|
+
version: '13.3'
|
|
111
82
|
- !ruby/object:Gem::Dependency
|
|
112
83
|
name: rspec
|
|
113
84
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -159,27 +130,26 @@ extensions:
|
|
|
159
130
|
extra_rdoc_files:
|
|
160
131
|
- README.md
|
|
161
132
|
- ext/binary_protocol_accelerated.c
|
|
162
|
-
- ext/bytes.c
|
|
163
|
-
- ext/compact_protocol.c
|
|
164
|
-
- ext/memory_buffer.c
|
|
165
|
-
- ext/protocol.c
|
|
166
|
-
- ext/strlcpy.c
|
|
167
|
-
- ext/struct.c
|
|
168
|
-
- ext/thrift_native.c
|
|
169
133
|
- ext/binary_protocol_accelerated.h
|
|
134
|
+
- ext/bytes.c
|
|
170
135
|
- ext/bytes.h
|
|
136
|
+
- ext/compact_protocol.c
|
|
171
137
|
- ext/compact_protocol.h
|
|
172
138
|
- ext/constants.h
|
|
139
|
+
- ext/extconf.rb
|
|
173
140
|
- ext/macros.h
|
|
141
|
+
- ext/memory_buffer.c
|
|
174
142
|
- ext/memory_buffer.h
|
|
143
|
+
- ext/protocol.c
|
|
175
144
|
- ext/protocol.h
|
|
145
|
+
- ext/strlcpy.c
|
|
176
146
|
- ext/strlcpy.h
|
|
147
|
+
- ext/struct.c
|
|
177
148
|
- ext/struct.h
|
|
178
|
-
- ext/
|
|
149
|
+
- ext/thrift_native.c
|
|
150
|
+
- lib/thrift.rb
|
|
179
151
|
- lib/thrift/bytes.rb
|
|
180
152
|
- lib/thrift/client.rb
|
|
181
|
-
- lib/thrift/core_ext/fixnum.rb
|
|
182
|
-
- lib/thrift/core_ext.rb
|
|
183
153
|
- lib/thrift/exceptions.rb
|
|
184
154
|
- lib/thrift/multiplexed_processor.rb
|
|
185
155
|
- lib/thrift/processor.rb
|
|
@@ -187,6 +157,7 @@ extra_rdoc_files:
|
|
|
187
157
|
- lib/thrift/protocol/binary_protocol.rb
|
|
188
158
|
- lib/thrift/protocol/binary_protocol_accelerated.rb
|
|
189
159
|
- lib/thrift/protocol/compact_protocol.rb
|
|
160
|
+
- lib/thrift/protocol/header_protocol.rb
|
|
190
161
|
- lib/thrift/protocol/json_protocol.rb
|
|
191
162
|
- lib/thrift/protocol/multiplexed_protocol.rb
|
|
192
163
|
- lib/thrift/protocol/protocol_decorator.rb
|
|
@@ -206,6 +177,7 @@ extra_rdoc_files:
|
|
|
206
177
|
- lib/thrift/transport/base_transport.rb
|
|
207
178
|
- lib/thrift/transport/buffered_transport.rb
|
|
208
179
|
- lib/thrift/transport/framed_transport.rb
|
|
180
|
+
- lib/thrift/transport/header_transport.rb
|
|
209
181
|
- lib/thrift/transport/http_client_transport.rb
|
|
210
182
|
- lib/thrift/transport/io_stream_transport.rb
|
|
211
183
|
- lib/thrift/transport/memory_buffer_transport.rb
|
|
@@ -217,7 +189,7 @@ extra_rdoc_files:
|
|
|
217
189
|
- lib/thrift/transport/unix_socket.rb
|
|
218
190
|
- lib/thrift/types.rb
|
|
219
191
|
- lib/thrift/union.rb
|
|
220
|
-
- lib/thrift.rb
|
|
192
|
+
- lib/thrift/uuid.rb
|
|
221
193
|
files:
|
|
222
194
|
- README.md
|
|
223
195
|
- benchmark/Benchmark.thrift
|
|
@@ -246,8 +218,6 @@ files:
|
|
|
246
218
|
- lib/thrift.rb
|
|
247
219
|
- lib/thrift/bytes.rb
|
|
248
220
|
- lib/thrift/client.rb
|
|
249
|
-
- lib/thrift/core_ext.rb
|
|
250
|
-
- lib/thrift/core_ext/fixnum.rb
|
|
251
221
|
- lib/thrift/exceptions.rb
|
|
252
222
|
- lib/thrift/multiplexed_processor.rb
|
|
253
223
|
- lib/thrift/processor.rb
|
|
@@ -255,6 +225,7 @@ files:
|
|
|
255
225
|
- lib/thrift/protocol/binary_protocol.rb
|
|
256
226
|
- lib/thrift/protocol/binary_protocol_accelerated.rb
|
|
257
227
|
- lib/thrift/protocol/compact_protocol.rb
|
|
228
|
+
- lib/thrift/protocol/header_protocol.rb
|
|
258
229
|
- lib/thrift/protocol/json_protocol.rb
|
|
259
230
|
- lib/thrift/protocol/multiplexed_protocol.rb
|
|
260
231
|
- lib/thrift/protocol/protocol_decorator.rb
|
|
@@ -274,6 +245,7 @@ files:
|
|
|
274
245
|
- lib/thrift/transport/base_transport.rb
|
|
275
246
|
- lib/thrift/transport/buffered_transport.rb
|
|
276
247
|
- lib/thrift/transport/framed_transport.rb
|
|
248
|
+
- lib/thrift/transport/header_transport.rb
|
|
277
249
|
- lib/thrift/transport/http_client_transport.rb
|
|
278
250
|
- lib/thrift/transport/io_stream_transport.rb
|
|
279
251
|
- lib/thrift/transport/memory_buffer_transport.rb
|
|
@@ -285,6 +257,7 @@ files:
|
|
|
285
257
|
- lib/thrift/transport/unix_socket.rb
|
|
286
258
|
- lib/thrift/types.rb
|
|
287
259
|
- lib/thrift/union.rb
|
|
260
|
+
- lib/thrift/uuid.rb
|
|
288
261
|
- spec/BaseService.thrift
|
|
289
262
|
- spec/ExtendedService.thrift
|
|
290
263
|
- spec/Referenced.thrift
|
|
@@ -298,13 +271,18 @@ files:
|
|
|
298
271
|
- spec/bytes_spec.rb
|
|
299
272
|
- spec/client_spec.rb
|
|
300
273
|
- spec/compact_protocol_spec.rb
|
|
274
|
+
- spec/constants_demo_spec.rb
|
|
301
275
|
- spec/exception_spec.rb
|
|
302
276
|
- spec/flat_spec.rb
|
|
277
|
+
- spec/header_protocol_spec.rb
|
|
278
|
+
- spec/header_transport_spec.rb
|
|
303
279
|
- spec/http_client_spec.rb
|
|
304
280
|
- spec/json_protocol_spec.rb
|
|
281
|
+
- spec/multiplexed_processor_spec.rb
|
|
305
282
|
- spec/namespaced_spec.rb
|
|
306
283
|
- spec/nonblocking_server_spec.rb
|
|
307
284
|
- spec/processor_spec.rb
|
|
285
|
+
- spec/recursion_depth_spec.rb
|
|
308
286
|
- spec/serializer_spec.rb
|
|
309
287
|
- spec/server_socket_spec.rb
|
|
310
288
|
- spec/server_spec.rb
|
|
@@ -315,15 +293,44 @@ files:
|
|
|
315
293
|
- spec/ssl_socket_spec.rb
|
|
316
294
|
- spec/struct_nested_containers_spec.rb
|
|
317
295
|
- spec/struct_spec.rb
|
|
296
|
+
- spec/support/header_protocol_helper.rb
|
|
318
297
|
- spec/thin_http_server_spec.rb
|
|
319
298
|
- spec/types_spec.rb
|
|
320
299
|
- spec/union_spec.rb
|
|
321
300
|
- spec/unix_socket_spec.rb
|
|
322
|
-
|
|
301
|
+
- spec/uuid_validation_spec.rb
|
|
302
|
+
- test/fuzz/Makefile
|
|
303
|
+
- test/fuzz/Makefile.am
|
|
304
|
+
- test/fuzz/Makefile.in
|
|
305
|
+
- test/fuzz/README.md
|
|
306
|
+
- test/fuzz/fuzz_common.rb
|
|
307
|
+
- test/fuzz/fuzz_parse_binary_protocol.rb
|
|
308
|
+
- test/fuzz/fuzz_parse_binary_protocol_accelerated.rb
|
|
309
|
+
- test/fuzz/fuzz_parse_binary_protocol_accelerated_harness.rb
|
|
310
|
+
- test/fuzz/fuzz_parse_binary_protocol_harness.rb
|
|
311
|
+
- test/fuzz/fuzz_parse_compact_protocol.rb
|
|
312
|
+
- test/fuzz/fuzz_parse_compact_protocol_harness.rb
|
|
313
|
+
- test/fuzz/fuzz_parse_json_protocol.rb
|
|
314
|
+
- test/fuzz/fuzz_parse_json_protocol_harness.rb
|
|
315
|
+
- test/fuzz/fuzz_roundtrip_binary_protocol.rb
|
|
316
|
+
- test/fuzz/fuzz_roundtrip_binary_protocol_accelerated.rb
|
|
317
|
+
- test/fuzz/fuzz_roundtrip_binary_protocol_accelerated_harness.rb
|
|
318
|
+
- test/fuzz/fuzz_roundtrip_binary_protocol_harness.rb
|
|
319
|
+
- test/fuzz/fuzz_roundtrip_compact_protocol.rb
|
|
320
|
+
- test/fuzz/fuzz_roundtrip_compact_protocol_harness.rb
|
|
321
|
+
- test/fuzz/fuzz_roundtrip_json_protocol.rb
|
|
322
|
+
- test/fuzz/fuzz_roundtrip_json_protocol_harness.rb
|
|
323
|
+
- test/fuzz/fuzz_tracer.rb
|
|
324
|
+
homepage: https://thrift.apache.org
|
|
323
325
|
licenses:
|
|
324
326
|
- Apache-2.0
|
|
325
|
-
metadata:
|
|
326
|
-
|
|
327
|
+
metadata:
|
|
328
|
+
bug_tracker_uri: https://issues.apache.org/jira/browse/THRIFT
|
|
329
|
+
changelog_uri: https://github.com/apache/thrift/blob/master/CHANGES.md
|
|
330
|
+
documentation_uri: https://thrift.apache.org/docs/
|
|
331
|
+
homepage_uri: https://thrift.apache.org
|
|
332
|
+
mailing_list_uri: https://thrift.apache.org/mailing
|
|
333
|
+
source_code_uri: https://github.com/apache/thrift/
|
|
327
334
|
rdoc_options:
|
|
328
335
|
- "--line-numbers"
|
|
329
336
|
- "--inline-source"
|
|
@@ -338,18 +345,22 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
338
345
|
requirements:
|
|
339
346
|
- - ">="
|
|
340
347
|
- !ruby/object:Gem::Version
|
|
341
|
-
version:
|
|
348
|
+
version: 2.7.0
|
|
342
349
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
343
350
|
requirements:
|
|
344
351
|
- - ">="
|
|
345
352
|
- !ruby/object:Gem::Version
|
|
346
353
|
version: '0'
|
|
347
354
|
requirements: []
|
|
348
|
-
rubygems_version: 3.
|
|
349
|
-
signing_key:
|
|
355
|
+
rubygems_version: 3.6.7
|
|
350
356
|
specification_version: 4
|
|
351
357
|
summary: Ruby bindings for Apache Thrift
|
|
352
358
|
test_files:
|
|
359
|
+
- benchmark/Benchmark.thrift
|
|
360
|
+
- benchmark/benchmark.rb
|
|
361
|
+
- benchmark/client.rb
|
|
362
|
+
- benchmark/server.rb
|
|
363
|
+
- benchmark/thin_server.rb
|
|
353
364
|
- spec/BaseService.thrift
|
|
354
365
|
- spec/ExtendedService.thrift
|
|
355
366
|
- spec/Referenced.thrift
|
|
@@ -363,13 +374,18 @@ test_files:
|
|
|
363
374
|
- spec/bytes_spec.rb
|
|
364
375
|
- spec/client_spec.rb
|
|
365
376
|
- spec/compact_protocol_spec.rb
|
|
377
|
+
- spec/constants_demo_spec.rb
|
|
366
378
|
- spec/exception_spec.rb
|
|
367
379
|
- spec/flat_spec.rb
|
|
380
|
+
- spec/header_protocol_spec.rb
|
|
381
|
+
- spec/header_transport_spec.rb
|
|
368
382
|
- spec/http_client_spec.rb
|
|
369
383
|
- spec/json_protocol_spec.rb
|
|
384
|
+
- spec/multiplexed_processor_spec.rb
|
|
370
385
|
- spec/namespaced_spec.rb
|
|
371
386
|
- spec/nonblocking_server_spec.rb
|
|
372
387
|
- spec/processor_spec.rb
|
|
388
|
+
- spec/recursion_depth_spec.rb
|
|
373
389
|
- spec/serializer_spec.rb
|
|
374
390
|
- spec/server_socket_spec.rb
|
|
375
391
|
- spec/server_spec.rb
|
|
@@ -380,12 +396,31 @@ test_files:
|
|
|
380
396
|
- spec/ssl_socket_spec.rb
|
|
381
397
|
- spec/struct_nested_containers_spec.rb
|
|
382
398
|
- spec/struct_spec.rb
|
|
399
|
+
- spec/support/header_protocol_helper.rb
|
|
383
400
|
- spec/thin_http_server_spec.rb
|
|
384
401
|
- spec/types_spec.rb
|
|
385
402
|
- spec/union_spec.rb
|
|
386
403
|
- spec/unix_socket_spec.rb
|
|
387
|
-
-
|
|
388
|
-
-
|
|
389
|
-
-
|
|
390
|
-
-
|
|
391
|
-
-
|
|
404
|
+
- spec/uuid_validation_spec.rb
|
|
405
|
+
- test/fuzz/Makefile
|
|
406
|
+
- test/fuzz/Makefile.am
|
|
407
|
+
- test/fuzz/Makefile.in
|
|
408
|
+
- test/fuzz/README.md
|
|
409
|
+
- test/fuzz/fuzz_common.rb
|
|
410
|
+
- test/fuzz/fuzz_parse_binary_protocol.rb
|
|
411
|
+
- test/fuzz/fuzz_parse_binary_protocol_accelerated.rb
|
|
412
|
+
- test/fuzz/fuzz_parse_binary_protocol_accelerated_harness.rb
|
|
413
|
+
- test/fuzz/fuzz_parse_binary_protocol_harness.rb
|
|
414
|
+
- test/fuzz/fuzz_parse_compact_protocol.rb
|
|
415
|
+
- test/fuzz/fuzz_parse_compact_protocol_harness.rb
|
|
416
|
+
- test/fuzz/fuzz_parse_json_protocol.rb
|
|
417
|
+
- test/fuzz/fuzz_parse_json_protocol_harness.rb
|
|
418
|
+
- test/fuzz/fuzz_roundtrip_binary_protocol.rb
|
|
419
|
+
- test/fuzz/fuzz_roundtrip_binary_protocol_accelerated.rb
|
|
420
|
+
- test/fuzz/fuzz_roundtrip_binary_protocol_accelerated_harness.rb
|
|
421
|
+
- test/fuzz/fuzz_roundtrip_binary_protocol_harness.rb
|
|
422
|
+
- test/fuzz/fuzz_roundtrip_compact_protocol.rb
|
|
423
|
+
- test/fuzz/fuzz_roundtrip_compact_protocol_harness.rb
|
|
424
|
+
- test/fuzz/fuzz_roundtrip_json_protocol.rb
|
|
425
|
+
- test/fuzz/fuzz_roundtrip_json_protocol_harness.rb
|
|
426
|
+
- test/fuzz/fuzz_tracer.rb
|