class Orchestrator::Device::Manager

Attributes

connection[R]
processor[R]

Public Class Methods

new(*args) click to toggle source
Calls superclass method Orchestrator::Core::ModuleManager::new
# File lib/orchestrator/device/manager.rb, line 4
def initialize(*args)
    super(*args)

    # Do we want to start here?
    # Should be ok.
    @thread.next_tick method(:start)
end

Public Instance Methods

notify_connected() click to toggle source
# File lib/orchestrator/device/manager.rb, line 41
def notify_connected
    if @instance.respond_to? :connected, true
        begin
            @instance.__send__(:connected)
        rescue => e
            @logger.print_error(e, 'error in module connected callback')
        end
    end

    update_connected_status(true)
end
notify_disconnected() click to toggle source
# File lib/orchestrator/device/manager.rb, line 53
def notify_disconnected
    if @instance.respond_to? :disconnected, true
        begin
            @instance.__send__(:disconnected)
        rescue => e
            @logger.print_error(e, 'error in module disconnected callback')
        end
    end

    update_connected_status(false)
end
notify_received(data, resolve, command = nil) click to toggle source
# File lib/orchestrator/device/manager.rb, line 65
def notify_received(data, resolve, command = nil)
    begin
        blk = command.nil? ? nil : command[:on_receive]
        if blk.respond_to? :call
            blk.call(data, resolve, command)
        elsif @instance.respond_to? :received, true
            @instance.__send__(:received, data, resolve, command)
        else
            @logger.warn('no received function provided')
            :abort
        end
    rescue => e
        @logger.print_error(e, 'error in received callback')
        return :abort
    end
end
start() click to toggle source
Calls superclass method Orchestrator::Core::ModuleManager#start
# File lib/orchestrator/device/manager.rb, line 14
def start
    return true unless @processor.nil?
    @processor = Processor.new(self)

    super # Calls on load (allows setting of tls certs)

    # Load UV-Rays abstraction here
    @connection = if @settings.udp
        UdpConnection.new(self, @processor)
    elsif @settings.makebreak
        ::UV.connect(@settings.ip, @settings.port, MakebreakConnection, self, @processor, @settings.tls)
    else
        ::UV.connect(@settings.ip, @settings.port, TcpConnection, self, @processor, @settings.tls)
    end

    @processor.transport = @connection
    true # for REST API
end
stop() click to toggle source
Calls superclass method Orchestrator::Core::ModuleManager#stop
# File lib/orchestrator/device/manager.rb, line 33
def stop
    super
    @processor.terminate unless @processor.nil?
    @processor = nil
    @connection.terminate unless @connection.nil?
    @connection = nil
end