Class: Zold::RemoteNode
- Inherits:
-
Object
- Object
- Zold::RemoteNode
- Defined in:
- lib/zold/remotes.rb
Overview
One remote.
Defined Under Namespace
Classes: CantAssert
Instance Attribute Summary collapse
-
#idx ⇒ Object
readonly
Returns the value of attribute idx.
-
#touched ⇒ Object
readonly
Returns the value of attribute touched.
Instance Method Summary collapse
- #assert_code(code, response) ⇒ Object
- #assert_score_ownership(score) ⇒ Object
- #assert_score_strength(score) ⇒ Object
- #assert_score_value(score, min) ⇒ Object
- #assert_valid_score(score) ⇒ Object
- #http(path = '/') ⇒ Object
-
#initialize(host:, port:, score:, idx:, master:, network: 'test', log: Log::NULL) ⇒ RemoteNode
constructor
A new instance of RemoteNode.
- #master? ⇒ Boolean
- #to_mnemo ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(host:, port:, score:, idx:, master:, network: 'test', log: Log::NULL) ⇒ RemoteNode
Returns a new instance of RemoteNode.
51 52 53 54 55 56 57 58 59 60 |
# File 'lib/zold/remotes.rb', line 51 def initialize(host:, port:, score:, idx:, master:, network: 'test', log: Log::NULL) @host = host @port = port @score = score @idx = idx @master = master @network = network @log = log @touched = false end |
Instance Attribute Details
#idx ⇒ Object (readonly)
Returns the value of attribute idx.
49 50 51 |
# File 'lib/zold/remotes.rb', line 49 def idx @idx end |
#touched ⇒ Object (readonly)
Returns the value of attribute touched.
49 50 51 |
# File 'lib/zold/remotes.rb', line 49 def touched @touched end |
Instance Method Details
#assert_code(code, response) ⇒ Object
79 80 81 82 83 84 85 86 87 88 |
# File 'lib/zold/remotes.rb', line 79 def assert_code(code, response) msg = response.status_line.strip return if response.status.to_i == code if response.headers && response.headers['X-Zold-Error'] raise CantAssert, "Error ##{response.status} \"#{response.headers['X-Zold-Error']}\" \ at #{response.headers['X-Zold-Path']}" end raise CantAssert, "Unexpected HTTP code #{response.status}, instead of #{code}" if msg.empty? raise CantAssert, "#{msg} (HTTP code #{response.status}, instead of #{code})" end |
#assert_score_ownership(score) ⇒ Object
95 96 97 98 |
# File 'lib/zold/remotes.rb', line 95 def assert_score_ownership(score) raise CantAssert, "Masqueraded host #{@host} as #{score.host}: #{score.reduced(4)}" if @host != score.host raise CantAssert, "Masqueraded port #{@port} as #{score.port}: #{score.reduced(4)}" if @port != score.port end |
#assert_score_strength(score) ⇒ Object
100 101 102 103 |
# File 'lib/zold/remotes.rb', line 100 def assert_score_strength(score) return if score.strength >= Score::STRENGTH raise CantAssert, "Score #{score.strength} is too weak (<#{Score::STRENGTH}): #{score.reduced(4)}" end |
#assert_score_value(score, min) ⇒ Object
105 106 107 |
# File 'lib/zold/remotes.rb', line 105 def assert_score_value(score, min) raise CantAssert, "Score #{score.value} is too small (<#{min}): #{score.reduced(4)}" if score.value < min end |
#assert_valid_score(score) ⇒ Object
90 91 92 93 |
# File 'lib/zold/remotes.rb', line 90 def assert_valid_score(score) raise CantAssert, "Invalid score #{score.reduced(4)}" unless score.valid? raise CantAssert, "Expired score (#{Age.new(score.time)}) #{score.reduced(4)}" if score.expired? end |
#http(path = '/') ⇒ Object
62 63 64 65 |
# File 'lib/zold/remotes.rb', line 62 def http(path = '/') @touched = true Http.new(uri: "http://#{@host}:#{@port}#{path}", score: @score, network: @network) end |
#master? ⇒ Boolean
67 68 69 |
# File 'lib/zold/remotes.rb', line 67 def master? @master end |
#to_mnemo ⇒ Object
75 76 77 |
# File 'lib/zold/remotes.rb', line 75 def to_mnemo "#{@host}:#{@port}" end |
#to_s ⇒ Object
71 72 73 |
# File 'lib/zold/remotes.rb', line 71 def to_s "#{@host}:#{@port}/#{@idx}" end |