Skip to content

Commit 1c65560

Browse files
committed
Initial commit
1 parent b69281e commit 1c65560

14 files changed

+247
-1
lines changed

Diff for: .gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/.bundle/
2+
/.yardoc
3+
/Gemfile.lock
4+
/_yardoc/
5+
/coverage/
6+
/doc/
7+
/pkg/
8+
/spec/reports/
9+
/tmp/
10+
*.swp
11+
*.swo

Diff for: CODE_OF_CONDUCT.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Contributor Code of Conduct
2+
3+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4+
5+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
6+
7+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8+
9+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10+
11+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12+
13+
This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)

Diff for: Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source 'https://rubygems.org'
2+
3+
# Specify your gem's dependencies in pigato.gemspec
4+
gemspec

Diff for: LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Paolo Ardoino
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.

Diff for: README.md

+39-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,39 @@
1-
# pigato-ruby
1+
# Pigato
2+
3+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/pigato`. To experiment with that code, run `bin/console` for an interactive prompt.
4+
5+
TODO: Delete this and the text above, and describe your gem
6+
7+
## Installation
8+
9+
Add this line to your application's Gemfile:
10+
11+
```ruby
12+
gem 'pigato'
13+
```
14+
15+
And then execute:
16+
17+
$ bundle
18+
19+
Or install it yourself as:
20+
21+
$ gem install pigato
22+
23+
## Usage
24+
25+
TODO: Write usage instructions here
26+
27+
## Development
28+
29+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
30+
31+
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` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32+
33+
## Contributing
34+
35+
1. Fork it ( https://github.com/[my-github-username]/pigato/fork )
36+
2. Create your feature branch (`git checkout -b my-new-feature`)
37+
3. Commit your changes (`git commit -am 'Add some feature'`)
38+
4. Push to the branch (`git push origin my-new-feature`)
39+
5. Create a new Pull Request

Diff for: Rakefile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
require "bundler/gem_tasks"
2+

Diff for: bin/console

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env ruby
2+
3+
require "bundler/setup"
4+
require "pigato"
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 "irb"
14+
IRB.start

Diff for: bin/setup

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
set -euo pipefail
3+
IFS=$'\n\t'
4+
5+
bundle install
6+
7+
# Do any other automated setup that you need to do here

Diff for: examples/client.rb

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env ruby
2+
3+
require "rubygems"
4+
require "pigato"
5+
6+
client = PigatoClient.new('tcp://localhost:55555')
7+
requests = 10
8+
requests.times do |i|
9+
begin
10+
puts client.send('echo', 'Hello world')
11+
end
12+
end
13+
14+
puts "#{requests} requests/replies processed"

Diff for: lib/pigato.rb

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
require "json"
2+
require "ffi-rzmq"
3+
require "pigato/version"
4+
require "pigato/proto.rb"
5+
6+
module Pigato
7+
end

Diff for: lib/pigato/client.rb

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
module Pigato
2+
class Client
3+
include MDP
4+
5+
attr_accessor :timeout
6+
7+
def initialize broker
8+
@broker = broker
9+
@context = ZMQ::Context.new(1)
10+
@client = nil
11+
@poller = ZMQ::Poller.new
12+
@timeout = 2500
13+
14+
reconnect_to_broker
15+
end
16+
17+
def send service, request, timeout = 2500
18+
request = [request.to_json]
19+
20+
rid = 'RID' + (rand() * 1000000).to_s
21+
# Prefix request with protocol frames
22+
# Frame 0: empty (REQ emulation)
23+
# Frame 1: "MDPCxy" (six bytes, MDP/Client x.y)
24+
# Frame 2: Service name (printable string)
25+
request = [MDP::C_CLIENT, MDP::W_REQUEST, service, rid].concat(request)
26+
@client.send_strings request
27+
28+
res = Array.new
29+
res << rid
30+
31+
data = Array.new
32+
while 1 do
33+
chunk = _recv(timeout)
34+
data << chunk[4]
35+
break if chunk[0] == MDP::W_REPLY
36+
end
37+
38+
res << data
39+
res
40+
end
41+
42+
def _recv timeout
43+
items = @poller.poll(timeout)
44+
if items
45+
messages = []
46+
@client.recv_strings messages
47+
48+
# header
49+
if messages.shift != MDP::C_CLIENT
50+
raise RuntimeError, "Not a valid MDP message"
51+
end
52+
53+
return messages
54+
end
55+
56+
nil
57+
end
58+
59+
def reconnect_to_broker
60+
if @client
61+
@poller.deregister @client, ZMQ::DEALER
62+
end
63+
64+
@client = @context.socket ZMQ::DEALER
65+
@client.setsockopt ZMQ::LINGER, 0
66+
@client.setsockopt ZMQ::IDENTITY, "C" + (rand() * 10).to_s
67+
@client.connect @broker
68+
@poller.register @client, ZMQ::POLLIN
69+
end
70+
end
71+
end

Diff for: lib/pigato/proto.rb

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module PIGATO
2+
module PROTO
3+
# This is the version of MDP/Client we implement
4+
C_CLIENT = "C"
5+
6+
# This is the version of MDP/Worker we implement
7+
W_WORKER = "W"
8+
9+
# MDP/Server commands, as strings
10+
W_READY = "1"
11+
W_REQUEST = "2"
12+
W_REPLY = "3"
13+
W_HEARTBEAT = "4"
14+
W_DISCONNECT = "5"
15+
W_REPLY_PARTIAL = "6"
16+
end
17+
end

Diff for: lib/pigato/version.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module Pigato
2+
VERSION = "0.1.0"
3+
end

Diff for: pigato.gemspec

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# coding: utf-8
2+
lib = File.expand_path('../lib', __FILE__)
3+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4+
require 'pigato/version'
5+
6+
Gem::Specification.new do |spec|
7+
spec.name = "pigato"
8+
spec.version = Pigato::VERSION
9+
spec.authors = ["Paolo Ardoino"]
10+
spec.email = ["[email protected]"]
11+
12+
spec.summary = %q{PIGATO-RUBY}
13+
spec.description = %q{PIGATO-RUBY}
14+
spec.homepage = "https://github.com/prdn/pigato"
15+
spec.license = "MIT"
16+
17+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18+
spec.bindir = "exe"
19+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20+
spec.require_paths = ["lib"]
21+
22+
spec.add_development_dependency "bundler", "~> 1.8"
23+
spec.add_development_dependency "rake", "~> 10.0"
24+
end

0 commit comments

Comments
 (0)