Class: DOT::DOTNode
Overview
Instance Attribute Summary
Attributes inherited from DOTElement
#name, #options
#name
Instance Method Summary
collapse
Methods inherited from DOTElement
#each_option, #each_option_pair
Constructor Details
#initialize(params = {}, option_list = NODE_OPTS) ⇒ DOTNode
Returns a new instance of DOTNode.
187
188
189
190
|
# File 'lib/puppet/external/dot.rb', line 187
def initialize (params = {}, option_list = NODE_OPTS)
super(params, option_list)
@ports = params['ports'] ? params['ports'] : []
end
|
Instance Method Details
#<<(thing) ⇒ Object
196
197
198
|
# File 'lib/puppet/external/dot.rb', line 196
def << (thing)
@ports << thing
end
|
#each_port ⇒ Object
192
193
194
|
# File 'lib/puppet/external/dot.rb', line 192
def each_port
@ports.each { |i| yield i }
end
|
204
205
206
|
# File 'lib/puppet/external/dot.rb', line 204
def pop
@ports.pop
end
|
#push(thing) ⇒ Object
200
201
202
|
# File 'lib/puppet/external/dot.rb', line 200
def push (thing)
@ports.push(thing)
end
|
#to_s(t = '') ⇒ Object
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
# File 'lib/puppet/external/dot.rb', line 208
def to_s (t = '')
label = @options['shape'] != 'record' && @ports.length == 0 ?
@options['label'] ?
t + $tab + "label = \"#{@options['label']}\"\n" :
'' :
t + $tab + 'label = "' + " \\\n" +
t + $tab2 + "#{@options['label']}| \\\n" +
@ports.collect{ |i|
t + $tab2 + i.to_s
}.join( "| \\\n" ) + " \\\n" +
t + $tab + '"' + "\n"
t + "#{@name} [\n" +
@options.to_a.collect{ |i|
i[1] && i[0] != 'label' ?
t + $tab + "#{i[0]} = #{i[1]}" : nil
}.compact.join( ",\n" ) + ( label != '' ? ",\n" : "\n" ) +
label +
t + "]\n"
end
|