Class: DOT::DOTSubgraph

Inherits:
DOTElement show all
Defined in:
lib/puppet/external/dot.rb

Overview

A subgraph element is the same to graph, but has another header in dot notation.

Direct Known Subclasses

DOTDigraph

Instance Attribute Summary

Attributes inherited from DOTElement

#name, #options

Attributes inherited from DOTSimpleElement

#name

Instance Method Summary collapse

Methods inherited from DOTElement

#each_option, #each_option_pair

Constructor Details

#initialize(params = {}, option_list = GRAPH_OPTS) ⇒ DOTSubgraph

Returns a new instance of DOTSubgraph.



241
242
243
244
245
# File 'lib/puppet/external/dot.rb', line 241

def initialize(params = {}, option_list = GRAPH_OPTS)
  super(params, option_list)
  @nodes      = params['nodes'] ? params['nodes'] : []
  @dot_string = 'graph'
end

Instance Method Details

#<<(thing) ⇒ Object



251
252
253
# File 'lib/puppet/external/dot.rb', line 251

def <<(thing)
  @nodes << thing
end

#each_nodeObject



247
248
249
# File 'lib/puppet/external/dot.rb', line 247

def each_node
  @nodes.each{ |i| yield i }
end

#popObject



259
260
261
# File 'lib/puppet/external/dot.rb', line 259

def pop
  @nodes.pop
end

#push(thing) ⇒ Object



255
256
257
# File 'lib/puppet/external/dot.rb', line 255

def push(thing)
  @nodes.push( thing )
end

#to_s(t = '') ⇒ Object



263
264
265
266
267
268
269
270
271
272
273
274
275
276
# File 'lib/puppet/external/dot.rb', line 263

def to_s(t = '')
  hdr = t + "#{@dot_string} #{@name} {\n"

  options = @options.to_a.collect{ |name, val|
    val && name != 'label' ?
      t + $tab + "#{name} = #{val}" :
      name ? t + $tab + "#{name} = \"#{val}\"" : nil
  }.compact.join( "\n" ) + "\n"

  nodes = @nodes.collect{ |i|
    i.to_s( t + $tab )
  }.join( "\n" ) + "\n"
  hdr + options + nodes + t + "}\n"
end