text_protocols 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 70d262665ebb2658807110ebedc931e50421c8f4
4
+ data.tar.gz: e188cbe2cc873758eb6537d042cacacf66f07f2c
5
+ SHA512:
6
+ metadata.gz: 31563e76caf1a14e8d8f8c55f5221905fda8b02472ded217df8a8330ed94571adb865e967aa766f60eb1d0bfe52de7cbf3d321f5af9240a1eefb9ca0ab710640
7
+ data.tar.gz: 216e864124b42610b2cd1103965a37cc5530661e1d1d60581b9ad4f5fa5ebfb7192297d6ff3369bae373140ff22bca699b7294ca75a11049648406a9326d1202
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ text_protocols
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.0
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in text_protocols.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 TODO: Write your name
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,58 @@
1
+ # TextProtocols
2
+
3
+ DSL to create basic text protocols
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'text_protocols'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install text_protocols
18
+
19
+ ## Usage
20
+
21
+ Create a file
22
+
23
+ # my_server.rb
24
+ require 'text_protocols'
25
+
26
+ TextProtocols.start do
27
+ cmd "say-hello" do
28
+ "Hello #{params[:name]}"
29
+ end
30
+ end
31
+
32
+ Run the server
33
+
34
+ $ ruby my_server.rb
35
+ Text Protocols 0.0.1 - PID: 7331, Port: 5000
36
+
37
+ And telnet the port
38
+
39
+ $ telnet localhost 5000
40
+ Trying 127.0.0.1...
41
+ Connected to localhost.
42
+ Escape character is '^]'.
43
+ say-hello name=Jorge
44
+ Hello Jorge
45
+
46
+ If you prefer different port or bind...
47
+
48
+ TextProtocols.start '4000', '192.168.1.123' do
49
+ # Your commands
50
+ end
51
+
52
+ ## Contributing
53
+
54
+ 1. Fork it
55
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
56
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
57
+ 4. Push to the branch (`git push origin my-new-feature`)
58
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,3 @@
1
+ module TextProtocols
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,101 @@
1
+ require 'text_protocols/version'
2
+ require 'gserver'
3
+
4
+ module TextProtocols
5
+
6
+ def self.start port='5000', bind='127.0.0.1', &block
7
+ set_signals_hooks
8
+ start_server port, bind, block
9
+ end
10
+
11
+ def self.set_signals_hooks
12
+ ['SIGINT', 'SIGTERM'].each do |signal|
13
+ Signal.trap signal do
14
+ log "Bye!"
15
+ exit
16
+ end
17
+ end
18
+ end
19
+
20
+ def self.start_server port, bind, block
21
+ server = Server.config port, bind, &block
22
+ server.start
23
+ sleep
24
+ rescue Interrupt
25
+ log "Server was interrupted..."
26
+ end
27
+
28
+ def self.log string
29
+ puts string
30
+ $stdout.flush
31
+ end
32
+
33
+ class Server < GServer
34
+ attr_reader :bind, :port, :protocol
35
+
36
+ def self.config port, bind, &block
37
+ server = self.new bind, port, block
38
+ end
39
+
40
+ def initialize bind, port, block
41
+ @bind = bind
42
+ @port = port
43
+ @protocol = Protocol.new
44
+ @protocol.instance_eval &block
45
+ super(port, bind)
46
+
47
+ puts "Text Protocols #{TextProtocols::VERSION} - PID: #{Process.pid.to_s}, Port: #{port}"
48
+ $stdout.flush
49
+ end
50
+
51
+ def serve io
52
+ loop do
53
+ request = io.readline
54
+
55
+ if request
56
+ command, params = parse_request request
57
+ io.puts @protocol.handle command, params
58
+ else
59
+ io.close
60
+ break
61
+ end
62
+ end
63
+ end
64
+
65
+ def parse_request request
66
+ parts = request.split
67
+ params = {}
68
+ parts[1..-1].each do |e|
69
+ k, v = e.split '='
70
+ params[k.to_sym] = v
71
+ end
72
+ [parts[0], params]
73
+ end
74
+ end
75
+
76
+ class Protocol
77
+ attr_reader :commands, :params
78
+
79
+ def initialize
80
+ @commands = {}
81
+ end
82
+
83
+ def cmd name, &block
84
+ commands[name.upcase] = block
85
+ end
86
+
87
+ def handle command, params
88
+ block = commands[command.chomp.upcase]
89
+ return "UNKNOW" if block.nil?
90
+
91
+ if params
92
+ @params = params
93
+ else
94
+ @params = {}
95
+ end
96
+
97
+ block.call
98
+ end
99
+ end
100
+
101
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'text_protocols/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "text_protocols"
8
+ spec.version = TextProtocols::VERSION
9
+ spec.authors = ["Jorge Luis Pérez"]
10
+ spec.email = ["jolisper@gmail.com"]
11
+ spec.description = %q{DSL to create text protocols}
12
+ spec.summary = %q{DSL to create text protocols and start a server that responds to the commands (telnet style)}
13
+ spec.homepage = "https://github.com/jolisper/text_protocols"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ end
metadata ADDED
@@ -0,0 +1,83 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: text_protocols
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jorge Luis Pérez
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-08-14 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.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: DSL to create text protocols
42
+ email:
43
+ - jolisper@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - .ruby-gemset
50
+ - .ruby-version
51
+ - Gemfile
52
+ - LICENSE.txt
53
+ - README.md
54
+ - Rakefile
55
+ - lib/text_protocols.rb
56
+ - lib/text_protocols/version.rb
57
+ - text_protocols.gemspec
58
+ homepage: https://github.com/jolisper/text_protocols
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - '>='
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.0.6
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: DSL to create text protocols and start a server that responds to the commands
82
+ (telnet style)
83
+ test_files: []