spurious-server 0.2.2 → 0.3.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.
- checksums.yaml +4 -4
- data/bin/spurious-server +7 -9
- data/lib/spurious/server.rb +7 -2
- data/lib/spurious/server/app.rb +4 -7
- data/lib/spurious/server/options.rb +18 -0
- data/lib/spurious/server/state/factory.rb +3 -3
- data/lib/spurious/server/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1cfbf2cf494c6d343c7d03ffd283fc256f27edc2
|
4
|
+
data.tar.gz: 4b1c7df840777138786a87e9ee3b1c850b165691
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20a74b83f99bb52d367892bd39a8436b9b1be5c4b5a70944a4e6eeeb90b1288c7cf4ecdc0875ff715affc23bf2d7920e0ce4f8ec4f065c4ac0762edcd4fa623c
|
7
|
+
data.tar.gz: dcdcd072cb3705af6408c2b80ad4cb24730d45ade571855fc830b8c4efece1280115dbd43e0249be7267c5f993ec910305f945cf6e2581269897679b0c7a27b7
|
data/bin/spurious-server
CHANGED
@@ -3,18 +3,16 @@
|
|
3
3
|
$: << File.join(File.dirname(__FILE__), '..', 'lib')
|
4
4
|
|
5
5
|
require 'spurious/server'
|
6
|
-
require
|
6
|
+
require 'spurious/server/version'
|
7
7
|
require 'daemons'
|
8
|
-
require
|
8
|
+
require 'eventmachine'
|
9
|
+
require 'spurious/server/options'
|
9
10
|
|
10
|
-
|
11
|
-
ip = ENV.fetch('SPURIOUS_SERVER_IP', '0.0.0.0')
|
12
|
-
port = ENV.fetch('SPURIOUS_SERVER_PORT', 4590)
|
13
|
-
Docker.url = docker_host
|
11
|
+
options = Spurious::Server::Options.new(ENV)
|
14
12
|
|
15
|
-
Excon.defaults[:write_timeout]
|
16
|
-
Excon.defaults[:read_timeout]
|
13
|
+
Excon.defaults[:write_timeout] = options.write_timeout
|
14
|
+
Excon.defaults[:read_timeout] = options.read_timeout
|
17
15
|
|
18
16
|
Daemons.run_proc('Spurious Server', :dir => '/tmp', :log_output => true) do
|
19
|
-
EventMachine.run Spurious::Server.handle(
|
17
|
+
EventMachine.run Spurious::Server.handle(options)
|
20
18
|
end
|
data/lib/spurious/server.rb
CHANGED
@@ -5,9 +5,14 @@ require "spurious/server/app"
|
|
5
5
|
module Spurious
|
6
6
|
module Server
|
7
7
|
|
8
|
-
def self.handle(
|
8
|
+
def self.handle(options)
|
9
9
|
Proc.new do
|
10
|
-
EventMachine.start_server
|
10
|
+
EventMachine.start_server(
|
11
|
+
options.server_ip,
|
12
|
+
options.server_port,
|
13
|
+
Spurious::Server::App,
|
14
|
+
options
|
15
|
+
)
|
11
16
|
end
|
12
17
|
end
|
13
18
|
|
data/lib/spurious/server/app.rb
CHANGED
@@ -7,13 +7,10 @@ require "json"
|
|
7
7
|
module Spurious
|
8
8
|
module Server
|
9
9
|
class App < EventMachine::Connection
|
10
|
+
attr_accessor :options
|
10
11
|
|
11
|
-
def initialize(
|
12
|
-
@
|
13
|
-
end
|
14
|
-
|
15
|
-
def docker_host_ip
|
16
|
-
@docker_host[/\/\/([0-9\.]+):/,1]
|
12
|
+
def initialize(options)
|
13
|
+
@options = options
|
17
14
|
end
|
18
15
|
|
19
16
|
def receive_data data
|
@@ -27,7 +24,7 @@ module Spurious
|
|
27
24
|
protected
|
28
25
|
|
29
26
|
def state(type)
|
30
|
-
Spurious::Server::State::Factory.create(type, self, config,
|
27
|
+
Spurious::Server::State::Factory.create(type, self, config, options)
|
31
28
|
end
|
32
29
|
|
33
30
|
def config
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Spurious
|
2
|
+
module Server
|
3
|
+
class Options
|
4
|
+
attr_reader :docker_full_path, :docker_host, :docker_port, :docker_api, :server_port, :server_ip, :write_timeout, :read_timeout
|
5
|
+
|
6
|
+
def initialize(env)
|
7
|
+
@docker_host = env['DOCKER_HOST'].nil? ? 'localhost' : env['DOCKER_HOST'][/\/\/([0-9a-z\.]+):/,1]
|
8
|
+
@docker_port = env['DOCKER_HOST'].nil? ? nil : env['DOCKER_HOST'][/:([0-9]+)/,1]
|
9
|
+
@docker_api = !env['DOCKER_HOST'].nil?
|
10
|
+
@server_port = env.fetch('SPURIOUS_SERVER_PORT', 4590)
|
11
|
+
@server_ip = env.fetch('SPURIOUS_SERVER_IP', '0.0.0.0')
|
12
|
+
@write_timeout = env.fetch('EXCON_WRITE_TIMEOUT', 30000)
|
13
|
+
@read_timeout = env.fetch('EXCON_READ_TIMEOUT', 30000)
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -11,16 +11,16 @@ module Spurious
|
|
11
11
|
module State
|
12
12
|
module Factory
|
13
13
|
|
14
|
-
def self.create(type, connection, config,
|
14
|
+
def self.create(type, connection, config, options)
|
15
15
|
case type.to_sym
|
16
16
|
when :init
|
17
17
|
Init.new(connection, config)
|
18
18
|
when :start
|
19
|
-
Start.new(connection, config,
|
19
|
+
Start.new(connection, config, options.docker_host)
|
20
20
|
when :stop
|
21
21
|
Stop.new(connection, config)
|
22
22
|
when :ports
|
23
|
-
Ports.new(connection, config,
|
23
|
+
Ports.new(connection, config, options.docker_host)
|
24
24
|
when :delete
|
25
25
|
Delete.new(connection, config)
|
26
26
|
when :update
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spurious-server
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Jack
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -127,6 +127,7 @@ files:
|
|
127
127
|
- lib/spurious/server.rb
|
128
128
|
- lib/spurious/server/app.rb
|
129
129
|
- lib/spurious/server/config.rb
|
130
|
+
- lib/spurious/server/options.rb
|
130
131
|
- lib/spurious/server/state/base.rb
|
131
132
|
- lib/spurious/server/state/delete.rb
|
132
133
|
- lib/spurious/server/state/error.rb
|
@@ -167,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
167
168
|
version: '0'
|
168
169
|
requirements: []
|
169
170
|
rubyforge_project:
|
170
|
-
rubygems_version: 2.
|
171
|
+
rubygems_version: 2.0.3
|
171
172
|
signing_key:
|
172
173
|
specification_version: 4
|
173
174
|
summary: The server component that the spurious cli client connects to
|