Class: Mosca::Client

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/mosca/client.rb

Constant Summary collapse

KEEP_ALIVE_MARGIN =
5

Class Attribute Summary collapse

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ Client

Returns a new instance of Client.



22
23
24
25
26
# File 'lib/mosca/client.rb', line 22

def initialize args = {}
  default_attributes.merge(args).each do |k,v|
    self.send("#{k}=", v)
  end
end

Class Attribute Details

.default_brokerObject

Returns the value of attribute default_broker.



14
15
16
# File 'lib/mosca/client.rb', line 14

def default_broker
  @default_broker
end

.default_timeoutObject

Returns the value of attribute default_timeout.



14
15
16
# File 'lib/mosca/client.rb', line 14

def default_timeout
  @default_timeout
end

Instance Attribute Details

#brokerObject

Returns the value of attribute broker.



17
18
19
# File 'lib/mosca/client.rb', line 17

def broker
  @broker
end

#clientObject

Returns the value of attribute client.



17
18
19
# File 'lib/mosca/client.rb', line 17

def client
  @client
end

#keep_aliveObject

Returns the value of attribute keep_alive.



17
18
19
# File 'lib/mosca/client.rb', line 17

def keep_alive
  @keep_alive
end

#passObject

Returns the value of attribute pass.



17
18
19
# File 'lib/mosca/client.rb', line 17

def pass
  @pass
end

#portObject

Returns the value of attribute port.



17
18
19
# File 'lib/mosca/client.rb', line 17

def port
  @port
end

#time_outObject

Returns the value of attribute time_out.



17
18
19
# File 'lib/mosca/client.rb', line 17

def time_out
  @time_out
end

#topic_baseObject

Returns the value of attribute topic_base.



17
18
19
# File 'lib/mosca/client.rb', line 17

def topic_base
  @topic_base
end

#topic_inObject

Returns the value of attribute topic_in.



17
18
19
# File 'lib/mosca/client.rb', line 17

def topic_in
  @topic_in
end

#topic_outObject

Returns the value of attribute topic_out.



17
18
19
# File 'lib/mosca/client.rb', line 17

def topic_out
  @topic_out
end

#userObject

Returns the value of attribute user.



17
18
19
# File 'lib/mosca/client.rb', line 17

def user
  @user
end

Instance Method Details

#connected?Boolean

Returns:

  • (Boolean)


79
80
81
# File 'lib/mosca/client.rb', line 79

def connected?
  @connection and @connection.connected? and is_alive?
end

#default_attributesObject



28
29
30
31
32
33
34
35
36
37
38
# File 'lib/mosca/client.rb', line 28

def default_attributes
  { user: ENV["MOSCA_USER"],
    pass: ENV["MOSCA_PASS"],
    topic_base: "",
    broker: ENV["MOSCA_BROKER"] || self.class.default_broker || "test.mosquitto.org",
    client: MQTT::Client,
    keep_alive: 10,
    time_out: (ENV["MOSCA_TIMEOUT"] || self.class.default_timeout || 5).to_i,
    port: (ENV["MOSCA_PORT"] || 1883).to_i
  }
end

#full_topic(topic_name) ⇒ Object



71
72
73
# File 'lib/mosca/client.rb', line 71

def full_topic topic_name
  topic_base + topic_name
end

#get(params = {}) ⇒ Object



65
66
67
68
69
# File 'lib/mosca/client.rb', line 65

def get params = {}
  get! params
rescue Timeout::Error
  nil
end

#get!(params = {}) ⇒ Object



56
57
58
59
60
61
62
63
# File 'lib/mosca/client.rb', line 56

def get! params = {}
  timeout(params) do
    topic = params[:topic_in] || params[:topic] || @topic_in || Exceptions.raise_missing_topic
    connection.get(full_topic topic) do |topic, message|
      return parse_response message
    end
  end
end

#publish(message, params = {}) ⇒ Object



50
51
52
53
54
# File 'lib/mosca/client.rb', line 50

def publish message, params = {}
  publish! message, params
rescue Timeout::Error
  nil
end

#publish!(message, params = {}) ⇒ Object



40
41
42
43
44
45
46
47
48
# File 'lib/mosca/client.rb', line 40

def publish! message, params = {}
  timeout(params) do
    topic_out = params[:topic_out] || params[:topic] || @topic_out || Exceptions.raise_missing_topic
    topic_in = params[:topic_in] || @topic_in
    connection.subscribe full_topic(topic_in) if params[:response]
    connection.publish full_topic(topic_out), message
    params[:response] ? get(params) : message
  end
end

#refresh_connectionObject



75
76
77
# File 'lib/mosca/client.rb', line 75

def refresh_connection
  connection
end