Sha256: 425a9d1ad9e88f0ffdf06cb489be24fc4b7b8780a4c7062fa674c1aa69521eed

Contents?: true

Size: 981 Bytes

Versions: 8

Compression:

Stored size: 981 Bytes

Contents

require 'rundock'

module Rundock
  class Node
    attr_reader :name
    attr_reader :operations
    attr_reader :backend
    attr_accessor :hooks

    def initialize(name, backend)
      @name = name
      @backend = backend
      @operations = []
      @hooks = []
    end

    def add_operation(ope)
      @operations ||= []
      @operations << ope
    end

    def run
      Logger.formatter.on_rec
      Logger.debug("run node: #{@name}")
      Logger.warn("no operation running: #{@name}") if @operations.blank?

      node_attributes = []

      @operations.each do |ope|
        Logger.debug("run operation: #{ope.class}")
        node_attributes << ope.attributes
        ope.run(@backend, ope.attributes)
      end

      log_buffer = Logger.formatter.flush unless Logger.formatter.buffer.empty?

      @hooks.each do |h|
        Logger.debug("run hook: #{h.name}")
        h.hook(node_attributes, log_buffer)
      end

      Logger.formatter.off_rec
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rundock-1.1.5 lib/rundock/node.rb
rundock-1.1.4 lib/rundock/node.rb
rundock-1.1.3 lib/rundock/node.rb
rundock-1.1.2 lib/rundock/node.rb
rundock-1.1.1 lib/rundock/node.rb
rundock-1.1.0 lib/rundock/node.rb
rundock-1.0.8 lib/rundock/node.rb
rundock-1.0.7 lib/rundock/node.rb