json-rpc-objects-bson 0.1.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.
- data/.document +5 -0
- data/CHANGES.txt +41 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +28 -0
- data/LICENSE.txt +20 -0
- data/README.md +35 -0
- data/Rakefile +29 -0
- data/VERSION +1 -0
- data/lib/json-rpc-objects/serializer/bson.rb +56 -0
- metadata +109 -0
data/.document
ADDED
data/CHANGES.txt
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
|
2
|
+
0.3.4 (2011-07-18)
|
3
|
+
* dependency from yajl-ruby to multi_json for compatibility with all
|
4
|
+
other major JSON libraries or unsupported platforms
|
5
|
+
* minor optimizations and corrections
|
6
|
+
* upgrade to modern 'hash-utils' version
|
7
|
+
|
8
|
+
0.3.3 (2011-02-13)
|
9
|
+
* rather big performance lag in generic parsers
|
10
|
+
|
11
|
+
0.3.2 (2011-02-04)
|
12
|
+
* instance attributes documentation
|
13
|
+
|
14
|
+
0.3.1 (2011-02-03)
|
15
|
+
* 2.0 Request and Response can receive ID as Symbol
|
16
|
+
|
17
|
+
0.3.0 (2011-02-01)
|
18
|
+
* #error? response method
|
19
|
+
* non-fake request, response and error classes (including ProcedureCall
|
20
|
+
and ProcedureReturn classes of sure) have generic marking Request,
|
21
|
+
Response and Error parent classes
|
22
|
+
* fake 1.1 request, response and error classes are parent classes of the
|
23
|
+
appropriate 2.0 classes
|
24
|
+
* correct error inheritance from 1.1 to 1.0
|
25
|
+
|
26
|
+
0.2.0 (2011-01-30)
|
27
|
+
* high level modules now aren't modules, but constants linking to
|
28
|
+
appropriate classes
|
29
|
+
|
30
|
+
0.1.3 (2011-01-18)
|
31
|
+
* 'version' gem dependency removed
|
32
|
+
|
33
|
+
0.1.2 (2011-01-16)
|
34
|
+
* compatibility problem in 1.0 fake error class
|
35
|
+
* high level error module returned 1.1 instead of 2.0 error
|
36
|
+
|
37
|
+
0.1.1 (2011-01-16)
|
38
|
+
* bug in 1.1/2.0 response error assignment
|
39
|
+
|
40
|
+
0.1.0 (2011-01-13)
|
41
|
+
* initial version
|
data/Gemfile
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
source "http://rubygems.org"
|
2
|
+
# Add dependencies required to use your gem here.
|
3
|
+
# Example:
|
4
|
+
gem "json-rpc-objects", ">= 0.4.0"
|
5
|
+
gem "bson", ">= 0"
|
6
|
+
|
7
|
+
# Add dependencies to develop your gem here.
|
8
|
+
# Include everything needed to run rake, tests, features, etc.
|
9
|
+
group :development do
|
10
|
+
gem "bundler", ">= 1.0.0"
|
11
|
+
gem "jeweler", ">= 1.5.2"
|
12
|
+
end
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
abstract (1.0.0)
|
5
|
+
addressable (2.2.6)
|
6
|
+
bson (1.3.1)
|
7
|
+
git (1.2.5)
|
8
|
+
hash-utils (0.18.0)
|
9
|
+
jeweler (1.6.4)
|
10
|
+
bundler (~> 1.0)
|
11
|
+
git (>= 1.2.5)
|
12
|
+
rake
|
13
|
+
json-rpc-objects (0.4.0)
|
14
|
+
abstract (>= 1.0.0)
|
15
|
+
addressable (>= 2.2.2)
|
16
|
+
hash-utils (>= 0.18.0)
|
17
|
+
multi_json
|
18
|
+
multi_json (1.0.3)
|
19
|
+
rake (0.9.2)
|
20
|
+
|
21
|
+
PLATFORMS
|
22
|
+
ruby
|
23
|
+
|
24
|
+
DEPENDENCIES
|
25
|
+
bson
|
26
|
+
bundler (>= 1.0.0)
|
27
|
+
jeweler (>= 1.5.2)
|
28
|
+
json-rpc-objects (>= 0.4.0)
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2011 Martin Kozák (martinkozak@martinkozak.net)
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
JSON-RPC Objects BSON Serializer
|
2
|
+
================================
|
3
|
+
|
4
|
+
**JSON-RPC Objects** are implementation of by [JSON-RPC][1] defined
|
5
|
+
objects with respect to specifications compliance and API backward
|
6
|
+
compatibility. It implements all versions of the protocol and support
|
7
|
+
for ability to communicate by the same protocol version which the
|
8
|
+
other side uses by a transparent way.
|
9
|
+
|
10
|
+
This is [BSON][11] serializing support for this library.
|
11
|
+
See [JSON-RPC Objects][2].
|
12
|
+
|
13
|
+
|
14
|
+
Contributing
|
15
|
+
------------
|
16
|
+
|
17
|
+
1. Fork it.
|
18
|
+
2. Create a branch (`git checkout -b 20101220-my-change`).
|
19
|
+
3. Commit your changes (`git commit -am "Added something"`).
|
20
|
+
4. Push to the branch (`git push origin 20101220-my-change`).
|
21
|
+
5. Create an [Issue][6] with a link to your branch.
|
22
|
+
6. Enjoy a refreshing Diet Coke and wait.
|
23
|
+
|
24
|
+
|
25
|
+
Copyright
|
26
|
+
---------
|
27
|
+
|
28
|
+
Copyright © 2011 [Martin Kozák][7]. See `LICENSE.txt` for
|
29
|
+
further details.
|
30
|
+
|
31
|
+
[1]: http://en.wikipedia.org/wiki/JSON-RPC
|
32
|
+
[2]: https://github.com/martinkozak/json-rpc-objects
|
33
|
+
[6]: http://github.com/martinkozak/json-rpc-objects-bson/issues
|
34
|
+
[7]: http://www.martinkozak.net/
|
35
|
+
[11]: http://bsonspec.org/
|
data/Rakefile
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'rubygems'
|
3
|
+
require 'bundler'
|
4
|
+
|
5
|
+
begin
|
6
|
+
Bundler.setup(:default, :development)
|
7
|
+
rescue Bundler::BundlerError => e
|
8
|
+
$stderr.puts e.message
|
9
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
10
|
+
exit e.status_code
|
11
|
+
end
|
12
|
+
|
13
|
+
require 'rake'
|
14
|
+
require 'jeweler'
|
15
|
+
|
16
|
+
Jeweler::Tasks.new do |gem|
|
17
|
+
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
18
|
+
gem.name = "json-rpc-objects-bson"
|
19
|
+
gem.homepage = "http://github.com/martinkozak/json-rpc-objects-bson"
|
20
|
+
gem.license = "MIT"
|
21
|
+
gem.summary = 'BSON serializing support for JSON-RPC Objects. JSON-RPC Objects is complete implementation of JSON-RPC objects with respect to specifications compliance and API backward compatibility. '
|
22
|
+
gem.email = "martinkozak@martinkozak.net"
|
23
|
+
gem.authors = ["Martin Kozák"]
|
24
|
+
# Include your dependencies below. Runtime dependencies are required when using your gem,
|
25
|
+
# and development dependencies are only needed for development (ie running rake tasks, tests, etc)
|
26
|
+
# gem.add_runtime_dependency 'jabber4r', '> 0.1'
|
27
|
+
# gem.add_development_dependency 'rspec', '> 1.2.3'
|
28
|
+
end
|
29
|
+
Jeweler::RubygemsDotOrgTasks.new
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|
@@ -0,0 +1,56 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# (c) 2011 Martin Kozák (martinkozak@martinkozak.net)
|
3
|
+
|
4
|
+
require "json-rpc-objects/serializer"
|
5
|
+
require "bson"
|
6
|
+
|
7
|
+
##
|
8
|
+
# Main JSON-RPC Objects module.
|
9
|
+
#
|
10
|
+
|
11
|
+
module JsonRpcObjects
|
12
|
+
|
13
|
+
##
|
14
|
+
# Abstract serializer class.
|
15
|
+
#
|
16
|
+
# @since 0.4.0
|
17
|
+
# @abstract
|
18
|
+
#
|
19
|
+
|
20
|
+
class Serializer
|
21
|
+
|
22
|
+
##
|
23
|
+
# BSON serializer using +bson+.
|
24
|
+
# @since 0.4.0
|
25
|
+
#
|
26
|
+
|
27
|
+
class BSON < Serializer
|
28
|
+
|
29
|
+
##
|
30
|
+
# Serializes data.
|
31
|
+
#
|
32
|
+
# @param [Object] data some data
|
33
|
+
# @return [Object] object in serialized form
|
34
|
+
#
|
35
|
+
|
36
|
+
def serialize(data)
|
37
|
+
::BSON.serialize(data)
|
38
|
+
end
|
39
|
+
|
40
|
+
##
|
41
|
+
# Deserializes data.
|
42
|
+
#
|
43
|
+
# @param [Object] data data in serialized form
|
44
|
+
# @return [Object] deserialized data
|
45
|
+
#
|
46
|
+
|
47
|
+
def deserialize(data)
|
48
|
+
::BSON.deserialize(data)
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
|
metadata
ADDED
@@ -0,0 +1,109 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: json-rpc-objects-bson
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.1.0
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- "Martin Koz\xC3\xA1k"
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2011-07-20 00:00:00 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: json-rpc-objects
|
17
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.4.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: *id001
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: bson
|
28
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: "0"
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: *id002
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: bundler
|
39
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: 1.0.0
|
45
|
+
type: :development
|
46
|
+
prerelease: false
|
47
|
+
version_requirements: *id003
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: jeweler
|
50
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 1.5.2
|
56
|
+
type: :development
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: *id004
|
59
|
+
description:
|
60
|
+
email: martinkozak@martinkozak.net
|
61
|
+
executables: []
|
62
|
+
|
63
|
+
extensions: []
|
64
|
+
|
65
|
+
extra_rdoc_files:
|
66
|
+
- LICENSE.txt
|
67
|
+
- README.md
|
68
|
+
files:
|
69
|
+
- .document
|
70
|
+
- CHANGES.txt
|
71
|
+
- Gemfile
|
72
|
+
- Gemfile.lock
|
73
|
+
- LICENSE.txt
|
74
|
+
- README.md
|
75
|
+
- Rakefile
|
76
|
+
- VERSION
|
77
|
+
- lib/json-rpc-objects/serializer/bson.rb
|
78
|
+
homepage: http://github.com/martinkozak/json-rpc-objects-bson
|
79
|
+
licenses:
|
80
|
+
- MIT
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
none: false
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
hash: -689932310787420269
|
92
|
+
segments:
|
93
|
+
- 0
|
94
|
+
version: "0"
|
95
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
|
+
none: false
|
97
|
+
requirements:
|
98
|
+
- - ">="
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: "0"
|
101
|
+
requirements: []
|
102
|
+
|
103
|
+
rubyforge_project:
|
104
|
+
rubygems_version: 1.8.5
|
105
|
+
signing_key:
|
106
|
+
specification_version: 3
|
107
|
+
summary: BSON serializing support for JSON-RPC Objects. JSON-RPC Objects is complete implementation of JSON-RPC objects with respect to specifications compliance and API backward compatibility.
|
108
|
+
test_files: []
|
109
|
+
|