rbencode 0.0.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.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/.rubocop.yml +12 -0
- data/.travis.yml +5 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +24 -0
- data/LICENSE.txt +21 -0
- data/README.md +44 -0
- data/Rakefile +10 -0
- data/bin/console +17 -0
- data/bin/setup +8 -0
- data/lib/rbencode.rb +115 -0
- data/lib/rbencode/version.rb +3 -0
- data/rbencode.gemspec +27 -0
- metadata +113 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: a601993da7cdcb5f5c758d300f789db83ffbf265
|
4
|
+
data.tar.gz: 45eef34189e6b66bed8d37023a80827b91a80300
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7fc8663579f82e09b7f6d571d8b2fd4827541ffa8b956f8cb127979207eeeffaac111993c9765918622733a50ebe89c08ed2becc78183b8acb9ec61691e0c222
|
7
|
+
data.tar.gz: 0a9cefec52f0d8a0e3c3c2854362c224c8dec28badf05b77b8d5478a2cc5ea541c88b7fd3a2e82e33ff15c21c52f256c7274aa3d0cde6c4e9aae9446968c90e3
|
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
rbencode (0.0.1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
bond (0.5.1)
|
10
|
+
minitest (5.10.3)
|
11
|
+
rake (10.5.0)
|
12
|
+
|
13
|
+
PLATFORMS
|
14
|
+
ruby
|
15
|
+
|
16
|
+
DEPENDENCIES
|
17
|
+
bond (~> 0.5.1)
|
18
|
+
bundler (~> 1.16)
|
19
|
+
minitest (~> 5.0)
|
20
|
+
rake (~> 10.0)
|
21
|
+
rbencode!
|
22
|
+
|
23
|
+
BUNDLED WITH
|
24
|
+
1.16.0
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Axel Örn Sigurðsson
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
# Rbencode
|
2
|
+
|
3
|
+
A simple bencoding module, to encode and decode as specified in the [BitTorrent Protocol Specification: BEP 3](http://www.bittorrent.org/beps/bep_0003.html).
|
4
|
+
|
5
|
+
This project was mainly made as a simple task to implement while learning ruby.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'rbencode'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install rbencode
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
Rbencode.decode('3:foo') == 'foo'
|
27
|
+
Rbencode.encode('foo') == '3:foo'
|
28
|
+
```
|
29
|
+
|
30
|
+
See tests for more examples
|
31
|
+
|
32
|
+
## Development
|
33
|
+
|
34
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
35
|
+
|
36
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
37
|
+
|
38
|
+
## Contributing
|
39
|
+
|
40
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/ikornaselur/rbencode.
|
41
|
+
|
42
|
+
## License
|
43
|
+
|
44
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "rbencode"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require 'bond'
|
14
|
+
Bond.start
|
15
|
+
|
16
|
+
require "irb"
|
17
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/lib/rbencode.rb
ADDED
@@ -0,0 +1,115 @@
|
|
1
|
+
require 'rbencode/version'
|
2
|
+
|
3
|
+
class UnsupportedDataError < StandardError
|
4
|
+
end
|
5
|
+
|
6
|
+
class MalformedData < StandardError
|
7
|
+
end
|
8
|
+
|
9
|
+
# A bencoding module to serialize to and from the bit torrent bencoding spec
|
10
|
+
module Rbencode
|
11
|
+
def self.encode(data)
|
12
|
+
Encoder.encode(data)
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.decode(data)
|
16
|
+
decoder = Decoder.new(data)
|
17
|
+
decoder.decode
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
# The encoding class, to encapsulate all encoding behaviour in one module
|
22
|
+
module Encoder
|
23
|
+
module_function
|
24
|
+
|
25
|
+
def self.encode(data)
|
26
|
+
if data.is_a? Integer
|
27
|
+
encode_int(data)
|
28
|
+
elsif data.is_a? String
|
29
|
+
encode_string(data)
|
30
|
+
elsif data.is_a? Array
|
31
|
+
encode_array(data)
|
32
|
+
elsif data.is_a? Hash
|
33
|
+
encode_hash(data)
|
34
|
+
else
|
35
|
+
raise UnsupportedDataError
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def encode_int(data)
|
40
|
+
"i#{data}e"
|
41
|
+
end
|
42
|
+
|
43
|
+
def encode_string(data)
|
44
|
+
"#{data.length}:#{data}"
|
45
|
+
end
|
46
|
+
|
47
|
+
def encode_array(data)
|
48
|
+
"l#{data.collect { |item| encode(item) }.join}e"
|
49
|
+
end
|
50
|
+
|
51
|
+
def encode_hash(data)
|
52
|
+
"d#{data.to_a.flatten(1).collect { |item| encode(item) }.join}e"
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
# Decoder for a bencoded string
|
57
|
+
class Decoder
|
58
|
+
def initialize(encoded)
|
59
|
+
@encoded_buffer = encoded.chars
|
60
|
+
end
|
61
|
+
|
62
|
+
def decode
|
63
|
+
type = @encoded_buffer[0]
|
64
|
+
if /[\d]/.match? type
|
65
|
+
parse_string
|
66
|
+
elsif type == 'i'
|
67
|
+
parse_int
|
68
|
+
elsif type == 'l'
|
69
|
+
parse_array
|
70
|
+
elsif type == 'd'
|
71
|
+
parse_hash
|
72
|
+
else
|
73
|
+
raise MalformedData
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
def parse_string
|
78
|
+
count_chars = []
|
79
|
+
count_chars.push(@encoded_buffer.shift) while @encoded_buffer[0] != ':'
|
80
|
+
@encoded_buffer.shift # Drop the colon
|
81
|
+
count = count_chars.join.to_i
|
82
|
+
|
83
|
+
raise MalformedData if @encoded_buffer.length < count
|
84
|
+
|
85
|
+
@encoded_buffer.shift(count).join
|
86
|
+
end
|
87
|
+
|
88
|
+
def parse_int
|
89
|
+
@encoded_buffer.shift # drop the i
|
90
|
+
int_chars = []
|
91
|
+
int_chars.push(@encoded_buffer.shift) while @encoded_buffer[0] != 'e'
|
92
|
+
@encoded_buffer.shift # drop the e
|
93
|
+
int_chars.join.to_i
|
94
|
+
end
|
95
|
+
|
96
|
+
def parse_array
|
97
|
+
@encoded_buffer.shift # drop the l
|
98
|
+
array = []
|
99
|
+
array.push(decode) while @encoded_buffer[0] != 'e'
|
100
|
+
@encoded_buffer.shift # drop the e
|
101
|
+
array
|
102
|
+
end
|
103
|
+
|
104
|
+
def parse_hash
|
105
|
+
@encoded_buffer.shift # drop the l
|
106
|
+
hash = {}
|
107
|
+
while @encoded_buffer[0] != 'e'
|
108
|
+
key = decode
|
109
|
+
value = decode
|
110
|
+
hash[key] = value
|
111
|
+
end
|
112
|
+
@encoded_buffer.shift # drop the e
|
113
|
+
hash
|
114
|
+
end
|
115
|
+
end
|
data/rbencode.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'rbencode/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'rbencode'
|
8
|
+
spec.version = Rbencode::VERSION
|
9
|
+
spec.authors = ['Axel Örn Sigurðsson']
|
10
|
+
spec.email = ['axel@takumi.com']
|
11
|
+
|
12
|
+
spec.summary = 'A serializer for the Bit Torrent bencoding format'
|
13
|
+
spec.homepage = 'https://github.com/ikornaselur/rbencode'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
|
+
f.match(%r{^(test|spec|features)/})
|
18
|
+
end
|
19
|
+
spec.bindir = 'exe'
|
20
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
|
+
spec.require_paths = ['lib']
|
22
|
+
|
23
|
+
spec.add_development_dependency 'bundler', '~> 1.16'
|
24
|
+
spec.add_development_dependency 'minitest', '~> 5.0'
|
25
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
26
|
+
spec.add_development_dependency 'bond', '~> 0.5.1'
|
27
|
+
end
|
metadata
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rbencode
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Axel Örn Sigurðsson
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-12-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: minitest
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '5.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '5.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: bond
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.5.1
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.5.1
|
69
|
+
description:
|
70
|
+
email:
|
71
|
+
- axel@takumi.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- ".rubocop.yml"
|
78
|
+
- ".travis.yml"
|
79
|
+
- Gemfile
|
80
|
+
- Gemfile.lock
|
81
|
+
- LICENSE.txt
|
82
|
+
- README.md
|
83
|
+
- Rakefile
|
84
|
+
- bin/console
|
85
|
+
- bin/setup
|
86
|
+
- lib/rbencode.rb
|
87
|
+
- lib/rbencode/version.rb
|
88
|
+
- rbencode.gemspec
|
89
|
+
homepage: https://github.com/ikornaselur/rbencode
|
90
|
+
licenses:
|
91
|
+
- MIT
|
92
|
+
metadata: {}
|
93
|
+
post_install_message:
|
94
|
+
rdoc_options: []
|
95
|
+
require_paths:
|
96
|
+
- lib
|
97
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
98
|
+
requirements:
|
99
|
+
- - ">="
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '0'
|
107
|
+
requirements: []
|
108
|
+
rubyforge_project:
|
109
|
+
rubygems_version: 2.6.8
|
110
|
+
signing_key:
|
111
|
+
specification_version: 4
|
112
|
+
summary: A serializer for the Bit Torrent bencoding format
|
113
|
+
test_files: []
|