Class: RSMP::ComponentBase

Inherits:
Object
  • Object
show all
Includes:
Inspect
Defined in:
lib/rsmp/component_base.rb

Overview

RSMP component base class.

Direct Known Subclasses

Component, ComponentProxy

Constant Summary collapse

AGGREGATED_STATUS_KEYS =
[ :local_control,
:communication_distruption,
:high_priority_alarm,
:medium_priority_alarm,
:low_priority_alarm,
:normal,
:rest,
:not_connected ]

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Inspect

#inspect, #inspector

Constructor Details

#initialize(node:, id:, grouped: false) ⇒ ComponentBase

Returns a new instance of ComponentBase.



19
20
21
22
23
24
25
# File 'lib/rsmp/component_base.rb', line 19

def initialize node:, id:, grouped: false
  @c_id = id
  @node = node
  @grouped = grouped
  clear_aggregated_status
  @alarms = {}
end

Instance Attribute Details

#aggregated_statusObject (readonly)

Returns the value of attribute aggregated_status.



8
9
10
# File 'lib/rsmp/component_base.rb', line 8

def aggregated_status
  @aggregated_status
end

#aggregated_status_boolsObject (readonly)

Returns the value of attribute aggregated_status_bools.



8
9
10
# File 'lib/rsmp/component_base.rb', line 8

def aggregated_status_bools
  @aggregated_status_bools
end

#alarmsObject (readonly)

Returns the value of attribute alarms.



8
9
10
# File 'lib/rsmp/component_base.rb', line 8

def alarms
  @alarms
end

#c_idObject (readonly)

Returns the value of attribute c_id.



8
9
10
# File 'lib/rsmp/component_base.rb', line 8

def c_id
  @c_id
end

#groupedObject (readonly)

Returns the value of attribute grouped.



8
9
10
# File 'lib/rsmp/component_base.rb', line 8

def grouped
  @grouped
end

#nodeObject (readonly)

Returns the value of attribute node.



8
9
10
# File 'lib/rsmp/component_base.rb', line 8

def node
  @node
end

#statusesObject (readonly)

Returns the value of attribute statuses.



8
9
10
# File 'lib/rsmp/component_base.rb', line 8

def statuses
  @statuses
end

Instance Method Details

#aggregated_status_changed(options = {}) ⇒ Object



68
69
70
# File 'lib/rsmp/component_base.rb', line 68

def aggregated_status_changed options={}
  @node.aggregated_status_changed self, options
end

#clear_aggregated_statusObject



31
32
33
34
35
# File 'lib/rsmp/component_base.rb', line 31

def clear_aggregated_status
  @aggregated_status = []
  @aggregated_status_bools = Array.new(8,false)
  @aggregated_status_bools[5] = true
end

#get_alarm_state(alarm_code) ⇒ Object



27
28
29
# File 'lib/rsmp/component_base.rb', line 27

def get_alarm_state alarm_code
  alarm = @alarms[alarm_code] ||= RSMP::AlarmState.new component: self, code: alarm_code
end

#log(str, options) ⇒ Object



37
38
39
40
# File 'lib/rsmp/component_base.rb', line 37

def log str, options
  default = { component: c_id}
  @node.log str, default.merge(options)
end

#set_aggregated_status(status, options = {}) ⇒ Object

Raises:

  • (InvalidArgument)


42
43
44
45
46
47
48
49
50
51
52
# File 'lib/rsmp/component_base.rb', line 42

def set_aggregated_status status, options={}
  status = [status] if status.is_a? Symbol
  raise InvalidArgument unless status.is_a? Array
  input = status & AGGREGATED_STATUS_KEYS
  if input != @aggregated_status
    AGGREGATED_STATUS_KEYS.each_with_index do |key,index|
      @aggregated_status_bools[index] = status.include?(key)
    end
    aggregated_status_changed options
  end
end

#set_aggregated_status_bools(status) ⇒ Object

Raises:

  • (InvalidArgument)


54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/rsmp/component_base.rb', line 54

def set_aggregated_status_bools status
  raise InvalidArgument unless status.is_a? Array
  raise InvalidArgument unless status.size == 8
  if status != @aggregated_status_bools
    @aggregated_status = []
    AGGREGATED_STATUS_KEYS.each_with_index do |key,index|
      on = status[index] == true
      @aggregated_status_bools[index] = on
      @aggregated_status << key if on
    end
    aggregated_status_changed
  end
end