xnlogic-transit-ruby 0.8.572-java
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 +7 -0
- data/.yard_redcarpet_ext +1 -0
- data/.yardopts +6 -0
- data/CHANGELOG.md +31 -0
- data/Jarfile +10 -0
- data/LICENSE +202 -0
- data/README.md +172 -0
- data/lib/transit.jar +0 -0
- data/lib/transit.rb +108 -0
- data/lib/transit/date_time_util.rb +39 -0
- data/lib/transit/decoder.rb +123 -0
- data/lib/transit/marshaler/base.rb +193 -0
- data/lib/transit/marshaler/jruby/json.rb +38 -0
- data/lib/transit/marshaler/jruby/messagepack.rb +25 -0
- data/lib/transit/read_handlers.rb +113 -0
- data/lib/transit/reader.rb +65 -0
- data/lib/transit/rolling_cache.rb +70 -0
- data/lib/transit/transit_types.rb +258 -0
- data/lib/transit/write_handlers.rb +438 -0
- data/lib/transit/writer.rb +68 -0
- data/spec/spec_helper.rb +85 -0
- data/spec/transit/date_time_util_spec.rb +65 -0
- data/spec/transit/decoder_spec.rb +60 -0
- data/spec/transit/exemplar_spec.rb +150 -0
- data/spec/transit/marshaler_spec.rb +30 -0
- data/spec/transit/reader_spec.rb +170 -0
- data/spec/transit/rolling_cache_spec.rb +94 -0
- data/spec/transit/round_trip_spec.rb +172 -0
- data/spec/transit/transit_types_spec.rb +144 -0
- data/spec/transit/writer_spec.rb +319 -0
- metadata +171 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: ae71060c87e384a1372749a7554c3b272e82d288
|
4
|
+
data.tar.gz: 5130b268df2d2d60728a3b5b94281182f8bb1bae
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2682d595a968a62d470f64d30b175e5e552d17a7e0a20b1e3ed8ca578960558acd4537832fb54a7d597b4c8b2def37fdfdea951b2c639bba832a6af0368c70a4
|
7
|
+
data.tar.gz: 7b69776139af962c651000785831d41d4d3c719601720341c937afb14dd592b50bd950486c6d83fa166349e57180205707c556b1267be2ecc2ef37ced6d24ff6
|
data/.yard_redcarpet_ext
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
:tables
|
data/.yardopts
ADDED
data/CHANGELOG.md
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
### 0.8.572 / 2015-01-15
|
2
|
+
|
3
|
+
* Marshal int map keys as ints in msgpack
|
4
|
+
|
5
|
+
### 0.8.569 / 2014-12-03
|
6
|
+
|
7
|
+
* ByteArray#to_s forces default encoding for platform
|
8
|
+
* fixes rare bug in which trying to print binary data nested within
|
9
|
+
decoded binary data raises an encoding incompatibility error.
|
10
|
+
|
11
|
+
### 0.8.567 / 2014-09-21
|
12
|
+
|
13
|
+
* restore newline suppression when writing in json mode
|
14
|
+
* helpful error message when nested object has no handler
|
15
|
+
|
16
|
+
### 0.8.560 (java platform only) / 2014-09-12
|
17
|
+
|
18
|
+
* Bump dependency on transit-java to 0.8.269
|
19
|
+
* fixes bug which turned an empty set into an array
|
20
|
+
|
21
|
+
### 0.8.552 (java platform only) / 2014-09-12
|
22
|
+
|
23
|
+
* Support JRuby!
|
24
|
+
|
25
|
+
### 0.8.539 / 2014-09-05
|
26
|
+
|
27
|
+
* Support special numbers (NaN, INF, -INF)
|
28
|
+
|
29
|
+
### 0.8.467 / 2014-07-22
|
30
|
+
|
31
|
+
* Initial release
|
data/Jarfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,202 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
data/README.md
ADDED
@@ -0,0 +1,172 @@
|
|
1
|
+
transit-ruby
|
2
|
+
===================
|
3
|
+
|
4
|
+
Transit is a data format and a set of libraries for conveying
|
5
|
+
values between applications written in different languages. This
|
6
|
+
library provides support for marshalling Transit data to/from Ruby.
|
7
|
+
|
8
|
+
[Rationale](http://blog.cognitect.com/blog/2014/7/22/transit)<br>
|
9
|
+
[API docs](http://rubydoc.info/gems/transit-ruby)<br>
|
10
|
+
[Specification](https://github.com/cognitect/transit-format)
|
11
|
+
|
12
|
+
This implementation's major.minor version number corresponds to the
|
13
|
+
version of the Transit specification it supports.
|
14
|
+
|
15
|
+
_NOTE: Transit is a work in progress and may evolve based on feedback.
|
16
|
+
As a result, while Transit is a great option for transferring data
|
17
|
+
between applications, it should not yet be used for storing data
|
18
|
+
durably over time. This recommendation will change when the
|
19
|
+
specification is complete._
|
20
|
+
|
21
|
+
## Contributing
|
22
|
+
|
23
|
+
This library is open source, developed internally by Cognitect. We welcome discussions of potential problems and enhancement suggestions on the [transit-format mailing list](https://groups.google.com/forum/#!forum/transit-format). Issues can be filed using GitHub [issues](https://github.com/cognitect/transit-ruby/issues) for this project. Because transit is incorporated into products and client projects, we prefer to do development internally and are not accepting pull requests or patches.
|
24
|
+
|
25
|
+
## Releases and Dependency Information
|
26
|
+
|
27
|
+
See https://rubygems.org/gems/transit-ruby
|
28
|
+
|
29
|
+
## Install
|
30
|
+
|
31
|
+
```sh
|
32
|
+
gem install transit-ruby
|
33
|
+
```
|
34
|
+
|
35
|
+
## Basic Usage
|
36
|
+
|
37
|
+
```ruby
|
38
|
+
# io can be any Ruby IO
|
39
|
+
|
40
|
+
writer = Transit::Writer.new(:json, io) # or :json-verbose, :msgpack
|
41
|
+
writer.write(value)
|
42
|
+
|
43
|
+
reader = Transit::Reader.new(:json, io) # or :msgpack
|
44
|
+
reader.read
|
45
|
+
|
46
|
+
# or
|
47
|
+
|
48
|
+
reader.read {|val| do_something_with(val)}
|
49
|
+
```
|
50
|
+
|
51
|
+
For example:
|
52
|
+
|
53
|
+
```
|
54
|
+
irb(2.1.1): io = StringIO.new('', 'w+')
|
55
|
+
==========> #<StringIO:0x007faab2ec3970>
|
56
|
+
irb(2.1.1): writer = Transit::Writer.new(:json, io)
|
57
|
+
==========> #<Transit::Writer:0x007faab2e8c1c8 @marshaler=#<Transit::JsonMarshaler:0x007faab2e1a168..........(snip)..........
|
58
|
+
irb(2.1.1): writer.write("abc")
|
59
|
+
==========> nil
|
60
|
+
irb(2.1.1): writer.write(123456789012345678901234567890)
|
61
|
+
==========> nil
|
62
|
+
irb(2.1.1): io.string
|
63
|
+
==========> "[\"~#'\",\"abc\"]\n[\"~#'\",\"~n123456789012345678901234567890\"]\n"
|
64
|
+
irb(2.1.1): reader = Transit::Reader.new(:json, StringIO.new(io.string))
|
65
|
+
==========> #<Transit::Reader:0x007faab2db48e0 @reader=#<Transit::JsonUnmarshaler:0x007faab2dae030 @..........(snip)..........
|
66
|
+
irb(2.1.1): reader.read {|val| puts val}
|
67
|
+
abc
|
68
|
+
123456789012345678901234567890
|
69
|
+
```
|
70
|
+
|
71
|
+
## Custom Handlers
|
72
|
+
|
73
|
+
### Custom Write Handlers
|
74
|
+
|
75
|
+
Implement `tag`, `rep(obj)` and `string_rep(obj)` methods. For example:
|
76
|
+
|
77
|
+
```ruby
|
78
|
+
Point = Struct.new(:x,:y) do
|
79
|
+
def to_a; [x,y] end
|
80
|
+
end
|
81
|
+
|
82
|
+
class PointWriteHandler
|
83
|
+
def tag(_) "point" end
|
84
|
+
def rep(o) o.to_a end
|
85
|
+
def string_rep(_) nil end
|
86
|
+
end
|
87
|
+
```
|
88
|
+
|
89
|
+
### Custom Read Handlers
|
90
|
+
|
91
|
+
Implement `from_rep(rep)` method. For example:
|
92
|
+
|
93
|
+
```ruby
|
94
|
+
class PointReadHandler
|
95
|
+
def from_rep(rep)
|
96
|
+
Point.new(*rep)
|
97
|
+
end
|
98
|
+
end
|
99
|
+
```
|
100
|
+
|
101
|
+
### Example Usage
|
102
|
+
|
103
|
+
```ruby
|
104
|
+
io = StringIO.new('', 'w+')
|
105
|
+
writer = Transit::Writer.new(:json, io,
|
106
|
+
:handlers => {Point => PointWriteHandler.new})
|
107
|
+
writer.write(Point.new(37,42))
|
108
|
+
|
109
|
+
p io.string.chomp
|
110
|
+
#=> "[\"~#point\",[37,42]]"
|
111
|
+
|
112
|
+
reader = Transit::Reader.new(:json, StringIO.new(io.string),
|
113
|
+
:handlers => {"point" => PointReadHandler.new})
|
114
|
+
p reader.read
|
115
|
+
#=> #<struct Point x=37, y=42>
|
116
|
+
```
|
117
|
+
|
118
|
+
See
|
119
|
+
[Transit::WriteHandlers](http://rubydoc.info/gems/transit-ruby/Transit/WriteHandlers)
|
120
|
+
for more info.
|
121
|
+
|
122
|
+
## Default Type Mapping
|
123
|
+
|
124
|
+
|Transit type|Write accepts|Read returns|Example(write)|Example(read)|
|
125
|
+
|------------|-------------|------------|--------------|-------------|
|
126
|
+
|null|nil|nil|nil|nil|
|
127
|
+
|string|String|String|"abc"|"abc"|
|
128
|
+
|boolean|true, false|true, false|false|false|
|
129
|
+
|integer|Fixnum, Bignum|Fixnum, Bignum|123|123|
|
130
|
+
|decimal|Float|Float|123.456|123.456|
|
131
|
+
|keyword|Symbol|Symbol|:abc|:abc|
|
132
|
+
|symbol|Transit::Symbol|Transit::Symbol|Transit::Symbol.new("foo")|`#<Transit::Symbol "foo">`|
|
133
|
+
|big decimal|BigDecimal|BigDecimal|BigDecimal.new("2**64")|`#<BigDecimal:7f9e6d33c558>`|
|
134
|
+
|big integer|Fixnum, Bignum|Fixnum, Bignum|2**128|340282366920938463463374607431768211456|
|
135
|
+
|time|DateTime, Date, Time|DateTime|DateTime.now|`#<DateTime: 2014-07-15T15:52:27+00:00 ((2456854j,57147s,23000000n),+0s,2299161j)>`|
|
136
|
+
|uri|Addressable::URI, URI|Addressable::URI|Addressable::URI.parse("http://example.com")|`#<Addressable::URI:0x3fc0e20390d4 URI:http://example.com>`|
|
137
|
+
|uuid|Transit::UUID|Transit::UUID|Transit::UUID.new|`#<Transit::UUID "defa1cce-f70b-4ddb-bb6e-b6ac817d8bc8">`|
|
138
|
+
|char|Transit::TaggedValue|String|Transit::TaggedValue.new("c", "a")|"a"|
|
139
|
+
|array|Array|Array|[1, 2, 3]|[1, 2, 3]|
|
140
|
+
|list|Transit::TaggedValue|Array|Transit::TaggedValue.new("list", [1, 2, 3])|[1, 2, 3]|
|
141
|
+
|set|Set|Set|Set.new([1, 2, 3])|`#<Set: {1, 2, 3}>`|
|
142
|
+
|map|Hash|Hash|`{a: 1, b: 2, c: 3}`|`{:a=>1, :b=>2, :c=>3}`|
|
143
|
+
|bytes|Transit::ByteArray|Transit::ByteArray|Transit::ByteArray.new("base64")|base64|
|
144
|
+
|link|Transit::Link|Transit::Link|Transit::Link.new(Addressable::URI.parse("http://example.org/search"), "search")|`#<Transit::Link:0x007f81c405b7f0 @values={"href"=>#<Addressable::URI:0x3fc0e202dfb8 URI:http://example.org/search>, "rel"=>"search", "name"=>nil, "render"=>nil, "prompt"=>nil}>`|
|
145
|
+
|
146
|
+
### Additional types (not required by the [transit-format](https://github.com/cognitect/transit-format) spec)
|
147
|
+
|
148
|
+
|Semantic type|Write accepts|Read returns|Example(write)|Example(read)|
|
149
|
+
|------------|-------------|------------|--------------|-------------|
|
150
|
+
|ratio|Rational|Rational|Rational(1, 3)|Rational(1, 3)|
|
151
|
+
|
152
|
+
## Supported Rubies
|
153
|
+
|
154
|
+
* MRI 1.9.3, 2.0.0, 2.1.0, 2.1.1, 2.1.2
|
155
|
+
* JRuby 1.7.13..16
|
156
|
+
|
157
|
+
## Copyright and License
|
158
|
+
|
159
|
+
Copyright © 2014 Cognitect
|
160
|
+
|
161
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
162
|
+
you may not use this file except in compliance with the License.
|
163
|
+
You may obtain a copy of the License at
|
164
|
+
|
165
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
166
|
+
|
167
|
+
Unless required by applicable law or agreed to in writing, software
|
168
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
169
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
170
|
+
implied.
|
171
|
+
See the License for the specific language governing permissions and
|
172
|
+
limitations under the License.
|
data/lib/transit.jar
ADDED
Binary file
|
data/lib/transit.rb
ADDED
@@ -0,0 +1,108 @@
|
|
1
|
+
# Copyright 2014 Cognitect. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS-IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
|
16
|
+
# WriteHandlers convert instances of Ruby types to their corresponding Transit
|
17
|
+
# semantic types, and ReadHandlers read convert transit values back into instances
|
18
|
+
# of Ruby types. transit-ruby ships with default sets of WriteHandlers for each
|
19
|
+
# of the Ruby types that map naturally to transit types, and ReadHandlers for each
|
20
|
+
# transit type. For the common case, the
|
21
|
+
# built-in handlers will suffice, but you can add your own extension types and/or
|
22
|
+
# override the built-in handlers.
|
23
|
+
#
|
24
|
+
# For example, Ruby has Date, Time, and DateTime, each with their
|
25
|
+
# own semantics. Transit has an instance type, which does not
|
26
|
+
# differentiate between Date and Time, so transit-ruby writes Dates,
|
27
|
+
# Times, and DateTimes as transit instances, and reads transit
|
28
|
+
# instances as DateTimes. If your application cares that Dates are
|
29
|
+
# different from DateTimes, you could register custom write and read
|
30
|
+
# handlers, overriding the built-in DateHandler and adding a new DateReadHandler.
|
31
|
+
#
|
32
|
+
# ```ruby
|
33
|
+
# class DateWriteHandler
|
34
|
+
# def tag(_) "D" end
|
35
|
+
# def rep(o) o.to_s end
|
36
|
+
# def string_rep(o) o.to_s end
|
37
|
+
# end
|
38
|
+
#
|
39
|
+
# class DateReadHandler
|
40
|
+
# def from_rep(rep)
|
41
|
+
# Date.parse(rep)
|
42
|
+
# end
|
43
|
+
# end
|
44
|
+
#
|
45
|
+
# io = StringIO.new('','w+')
|
46
|
+
# writer = Transit::Writer.new(:json, io, :handlers => {Date => DateWriteHandler.new})
|
47
|
+
# writer.write(Date.new(2014,7,22))
|
48
|
+
# io.string
|
49
|
+
# # => "[\"~#'\",\"~D2014-07-22\"]\n"
|
50
|
+
#
|
51
|
+
# reader = Transit::Reader.new(:json, StringIO.new(io.string), :handlers => {"D" => DateReadHandler.new})
|
52
|
+
# reader.read
|
53
|
+
# # => #<Date: 2014-07-22 ((2456861j,0s,0n),+0s,2299161j)>
|
54
|
+
# ```
|
55
|
+
module Transit
|
56
|
+
ESC = "~"
|
57
|
+
SUB = "^"
|
58
|
+
RES = "`"
|
59
|
+
TAG = "~#"
|
60
|
+
MAP_AS_ARRAY = "^ "
|
61
|
+
TIME_FORMAT = "%FT%H:%M:%S.%LZ"
|
62
|
+
QUOTE = "'"
|
63
|
+
|
64
|
+
MAX_INT = 2**63 - 1
|
65
|
+
MIN_INT = -2**63
|
66
|
+
|
67
|
+
JSON_MAX_INT = 2**53 - 1
|
68
|
+
JSON_MIN_INT = -JSON_MAX_INT
|
69
|
+
|
70
|
+
def jruby?
|
71
|
+
defined?(RUBY_ENGINE) && RUBY_ENGINE == "jruby"
|
72
|
+
end
|
73
|
+
module_function :jruby?
|
74
|
+
end
|
75
|
+
|
76
|
+
require 'set'
|
77
|
+
require 'time'
|
78
|
+
require 'uri'
|
79
|
+
require 'base64'
|
80
|
+
require 'bigdecimal'
|
81
|
+
require 'securerandom'
|
82
|
+
require 'forwardable'
|
83
|
+
require 'addressable/uri'
|
84
|
+
require 'transit/date_time_util'
|
85
|
+
require 'transit/transit_types'
|
86
|
+
require 'transit/rolling_cache'
|
87
|
+
require 'transit/write_handlers'
|
88
|
+
require 'transit/read_handlers'
|
89
|
+
require 'transit/marshaler/base'
|
90
|
+
require 'transit/writer'
|
91
|
+
require 'transit/decoder'
|
92
|
+
require 'transit/reader'
|
93
|
+
|
94
|
+
if Transit::jruby?
|
95
|
+
require 'lock_jar'
|
96
|
+
LockJar.lock(File.join(File.dirname(__FILE__), "..", "Jarfile"))
|
97
|
+
LockJar.load
|
98
|
+
require 'transit.jar'
|
99
|
+
require 'jruby'
|
100
|
+
com.cognitect.transit.ruby.TransitService.new.basicLoad(JRuby.runtime)
|
101
|
+
require 'transit/marshaler/jruby/json'
|
102
|
+
require 'transit/marshaler/jruby/messagepack'
|
103
|
+
else
|
104
|
+
require 'transit/marshaler/cruby/json'
|
105
|
+
require 'transit/marshaler/cruby/messagepack'
|
106
|
+
require 'transit/unmarshaler/cruby/json'
|
107
|
+
require 'transit/unmarshaler/cruby/messagepack'
|
108
|
+
end
|