Class: Bundler::Graph::GraphVizClient

Inherits:
Object
  • Object
show all
Defined in:
lib/bundler/graph.rb

Instance Method Summary collapse

Constructor Details

#initialize(graph_instance) ⇒ GraphVizClient

Returns a new instance of GraphVizClient.



113
114
115
116
117
118
119
120
121
# File 'lib/bundler/graph.rb', line 113

def initialize(graph_instance)
  @graph_name    = graph_instance.class::GRAPH_NAME
  @groups        = graph_instance.groups
  @relations     = graph_instance.relations
  @node_options  = graph_instance.node_options
  @edge_options  = graph_instance.edge_options
  @output_file   = graph_instance.output_file
  @output_format = graph_instance.output_format
end

Instance Method Details

#gObject



123
124
125
126
127
128
129
# File 'lib/bundler/graph.rb', line 123

def g
  @g ||= ::GraphViz.digraph(@graph_name, {:concentrate => true, :normalize => true, :nodesep => 0.55}) do |g|
    g.edge[:weight]   = 2
    g.edge[:fontname] = g.node[:fontname] = 'Arial, Helvetica, SansSerif'
    g.edge[:fontsize] = 12
  end
end

#runObject



131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/bundler/graph.rb', line 131

def run
  @groups.each do |group|
    g.add_nodes(
      group,
      {:style     => 'filled',
       :fillcolor => '#B9B9D5',
       :shape     => "box3d",
       :fontsize  => 16}.merge(@node_options[group])
    )
  end

  @relations.each do |parent, children|
    children.each do |child|
      if @groups.include?(parent)
        g.add_nodes(child, {:style => 'filled', :fillcolor => '#B9B9D5'}.merge(@node_options[child]))
        g.add_edges(parent, child, {:constraint => false}.merge(@edge_options["#{parent}_#{child}"]))
      else
        g.add_nodes(child, @node_options[child])
        g.add_edges(parent, child, @edge_options["#{parent}_#{child}"])
      end
    end
  end

  if @output_format.to_s == "debug"
    $stdout.puts g.output :none => String
    Bundler.ui.info "debugging bundle viz..."
  else
    begin
      g.output @output_format.to_sym => "#{@output_file}.#{@output_format}"
      Bundler.ui.info "#{@output_file}.#{@output_format}"
    rescue ArgumentError => e
      $stderr.puts "Unsupported output format. See Ruby-Graphviz/lib/graphviz/constants.rb"
      raise e
    end
  end
end