websocketio 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 9d9761e5661e390bd615bd8f6f195c93813f5c06
4
+ data.tar.gz: cffb0529922148010360e0f89db9d5e5064fd005
5
+ SHA512:
6
+ metadata.gz: f34470bc4e66bbff0ed97fb7b1dde924e797fe8afeb6c942a9d878e9df41a3dd7c39583c1e2bc5f3195982163eb672d1107c67e35e50b5ce3df84146b66b8914
7
+ data.tar.gz: 1f8bda924a87be3f233240e7d6dcc822fa32a7a60356ffff09a39840bf91d608d95885e3f54039852bef6662f24439d7df664b6ee2695ef53276a4bf7324a553
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.swp
data/.travis.yml ADDED
@@ -0,0 +1,8 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.2
4
+ - 2.0.0
5
+ - 1.9.3
6
+ script: "bundle exec rspec"
7
+ before_install:
8
+ - "gem install bundler -v 1.9.4"
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Takeshi Horiuchi
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,61 @@
1
+ # WebSocketIO
2
+
3
+ [![Build Status](https://travis-ci.org/keshihoriuchi/ruby-websocketio.svg)](https://travis-ci.org/keshihoriuchi/ruby-websocketio)
4
+
5
+ WebSocketIO is a Ruby library. It aims to capacitate applications or libraries implemented with TCPSocket to communicate with WebSocket easily.
6
+
7
+ WebSocketIO::Client is a object which can communicate through WebSocket with same interface as TCPSocket.
8
+
9
+ Inspired by [websocket-stream](https://github.com/maxogden/websocket-stream) of Node.js
10
+
11
+ ## Installation
12
+
13
+ Add this line to your application's Gemfile:
14
+
15
+ ```ruby
16
+ gem 'websocketio'
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install websocketio
26
+
27
+ ## Usage
28
+
29
+ ```ruby
30
+ require 'websocketio'
31
+
32
+ tcpsocket = TCPSocket.new('localhost', 8080)
33
+ websocketio = WebSocketIO::Client.new(tcpsocket, url: 'ws://localhost:8080')
34
+ websocketio.write 'How are you?'
35
+
36
+ trap('INT') { websocketio.close }
37
+ while c = websocket.read(1) do
38
+ STDOUT << c
39
+ end
40
+ ```
41
+
42
+ ### new(socket, handshake\_args) -> WebSocketIO::Client
43
+ #### socket
44
+
45
+ It requires a connected socket object.
46
+ All sockets which have same interface as TCPSocket are available.
47
+ When you want to connect over proxy, you may use [ruby-proxifier](https://github.com/samuelkadolph/ruby-proxifier). See `example` directory.
48
+
49
+ #### handshake\_args
50
+
51
+ Parameters for WebSocket handshaking.
52
+ This arg is given to `WebSocket::Handshake::Client.new` which is defined at [websocket-ruby](https://github.com/imanel/websocket-ruby#client-handshake).
53
+
54
+ ## Implemented
55
+
56
+ * WebSocketIO::Client
57
+ * new
58
+ * write
59
+ * read
60
+ * getc
61
+ * close
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,4 @@
1
+ # coding: utf-8
2
+
3
+ require 'websocketio/version'
4
+ require 'websocketio/client'
@@ -0,0 +1,68 @@
1
+ # coding: utf-8
2
+
3
+ require 'websocket'
4
+ require 'filter_io'
5
+ require 'forwardable'
6
+
7
+ module WebSocketIO
8
+ class Client
9
+ extend Forwardable
10
+
11
+ def_delegators :@filtered_socket, :read, :getc
12
+
13
+ def initialize(socket, handshake_args)
14
+ @socket = socket
15
+ @handshake = WebSocket::Handshake::Client.new(handshake_args)
16
+ @socket.write @handshake.to_s
17
+ until @handshake.finished? do
18
+ @handshake << @socket.getc
19
+ end
20
+
21
+ # TODO: FilterIO assume that eof? isn't blocking method. But TCPSocket#eof? is.
22
+ # See http://docs.ruby-lang.org/en/2.2.0/IO.html#method-i-eof-3F
23
+ def @socket.eof?; closed?; end
24
+ @filtered_socket = filter(@socket, @handshake.version)
25
+ end
26
+
27
+ def close
28
+ send_frame type: :close
29
+ @socket.close
30
+ @socket = nil
31
+ @closed = true
32
+ end
33
+
34
+ def closed?
35
+ @closed
36
+ end
37
+
38
+ def write(str)
39
+ send_frame data: str
40
+ str.to_s.bytesize
41
+ end
42
+
43
+ private
44
+
45
+ def send_frame(params)
46
+ params = {
47
+ data: nil,
48
+ type: :text,
49
+ version: @handshake.version
50
+ }.merge(params)
51
+ frame = WebSocket::Frame::Outgoing::Client.new(params)
52
+ @socket.write frame.to_s
53
+ end
54
+
55
+ def filter(socket, version)
56
+ frame = WebSocket::Frame::Incoming::Client.new(version: version)
57
+ pushed_size = 0
58
+ FilterIO.new socket, block_size: 1 do |data|
59
+ frame << data[pushed_size]
60
+ pushed_size += 1
61
+ buffered = frame.next
62
+ raise FilterIO::NeedMoreData unless buffered
63
+ pushed_size = 0
64
+ buffered.to_s
65
+ end
66
+ end
67
+ end
68
+ end
@@ -0,0 +1,5 @@
1
+ # coding: utf-8
2
+
3
+ module WebSocketIO
4
+ VERSION = "0.0.1"
5
+ end
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'websocketio/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "websocketio"
8
+ spec.version = WebSocketIO::VERSION
9
+ spec.authors = ["Takeshi Horiuchi"]
10
+ spec.email = ["keshihoriuchi@gmail.com"]
11
+
12
+ spec.summary = 'Communicate through WebSocket with same interface as TCPSocket.'
13
+ spec.description = 'Communicate through WebSocket with same interface as TCPSocket.'
14
+ spec.homepage = "https://github.com/keshihoriuchi/ruby-websocketio"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features|example)/})
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.9"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ spec.add_development_dependency "rspec", "~> 3.0"
27
+ spec.add_development_dependency "pry"
28
+ spec.add_development_dependency "websocket-eventmachine-server"
29
+ spec.add_development_dependency "proxifier"
30
+ spec.add_dependency "websocket"
31
+ spec.add_dependency "filter_io"
32
+ end
metadata ADDED
@@ -0,0 +1,166 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: websocketio
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Takeshi Horiuchi
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-09-23 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.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: websocket-eventmachine-server
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: proxifier
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: websocket
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: filter_io
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ description: Communicate through WebSocket with same interface as TCPSocket.
126
+ email:
127
+ - keshihoriuchi@gmail.com
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files: []
131
+ files:
132
+ - ".gitignore"
133
+ - ".travis.yml"
134
+ - Gemfile
135
+ - LICENSE.txt
136
+ - README.md
137
+ - Rakefile
138
+ - lib/websocketio.rb
139
+ - lib/websocketio/client.rb
140
+ - lib/websocketio/version.rb
141
+ - websocketio.gemspec
142
+ homepage: https://github.com/keshihoriuchi/ruby-websocketio
143
+ licenses:
144
+ - MIT
145
+ metadata: {}
146
+ post_install_message:
147
+ rdoc_options: []
148
+ require_paths:
149
+ - lib
150
+ required_ruby_version: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ version: '0'
155
+ required_rubygems_version: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ requirements: []
161
+ rubyforge_project:
162
+ rubygems_version: 2.4.5
163
+ signing_key:
164
+ specification_version: 4
165
+ summary: Communicate through WebSocket with same interface as TCPSocket.
166
+ test_files: []