Class: Puppet::Relationship

Inherits:
Object show all
Includes:
Network::FormatSupport, Util::PsychSupport
Defined in:
lib/puppet/relationship.rb

Overview

This is Puppet’s class for modeling edges in its configuration graph. It used to be a subclass of GRATR::Edge, but that class has weird hash overrides that dramatically slow down the graphing.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Util::PsychSupport

#encode_with, #init_with

Methods included from Network::FormatSupport

included, #mime, #render, #support_format?, #to_json, #to_msgpack, #to_pson

Constructor Details

#initialize(source, target, options = {}) ⇒ Relationship

Returns a new instance of Relationship.



38
39
40
41
42
43
44
45
46
47
# File 'lib/puppet/relationship.rb', line 38

def initialize(source, target, options = {})
  @source, @target = source, target

  options = (options || {}).inject({}) { |h,a| h[a[0].to_sym] = a[1]; h }
  [:callback, :event].each do |option|
    if value = options[option]
      send(option.to_s + "=", value)
    end
  end
end

Instance Attribute Details

#callbackObject

Returns the value of attribute callback.



13
14
15
# File 'lib/puppet/relationship.rb', line 13

def callback
  @callback
end

#eventObject

Returns the value of attribute event.



15
16
17
# File 'lib/puppet/relationship.rb', line 15

def event
  @event
end

#sourceObject

Returns the value of attribute source.



13
14
15
# File 'lib/puppet/relationship.rb', line 13

def source
  @source
end

#targetObject

Returns the value of attribute target.



13
14
15
# File 'lib/puppet/relationship.rb', line 13

def target
  @target
end

Class Method Details

.from_data_hash(data) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/puppet/relationship.rb', line 17

def self.from_data_hash(data)
  source = data['source']
  target = data['target']

  args = {}
  if event = data["event"]
    args[:event] = :"#{event}"
  end
  if callback = data["callback"]
    args[:callback] = :"#{callback}"
  end

  new(source, target, args)
end

Instance Method Details

#inspectObject



72
73
74
# File 'lib/puppet/relationship.rb', line 72

def inspect
  "{ #{source} => #{target} }"
end

#labelObject



61
62
63
64
65
66
# File 'lib/puppet/relationship.rb', line 61

def label
  result = {}
  result[:callback] = callback if callback
  result[:event] = event if event
  result
end

#match?(event) ⇒ Boolean

Does the passed event match our event? This is where the meaning of :NONE comes from.

Returns:

  • (Boolean)


51
52
53
54
55
56
57
58
59
# File 'lib/puppet/relationship.rb', line 51

def match?(event)
  if self.event.nil? or event == :NONE or self.event == :NONE
    return false
  elsif self.event == :ALL_EVENTS or event == self.event
    return true
  else
    return false
  end
end

#refObject



68
69
70
# File 'lib/puppet/relationship.rb', line 68

def ref
  "#{source} => #{target}"
end

#to_data_hashObject



76
77
78
79
80
81
82
83
84
# File 'lib/puppet/relationship.rb', line 76

def to_data_hash
  data = {
    'source' => source.to_s,
    'target' => target.to_s
  }
  data['event'] = event.to_s unless event.nil?
  data['callback'] = callback.to_s unless callback.nil?
  data
end

#to_sObject



86
87
88
# File 'lib/puppet/relationship.rb', line 86

def to_s
  ref
end