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.



95
96
97
98
99
100
101
102
103
# File 'lib/bundler/graph.rb', line 95

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



105
106
107
108
109
110
111
# File 'lib/bundler/graph.rb', line 105

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



113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# File 'lib/bundler/graph.rb', line 113

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
      warn "Unsupported output format. See Ruby-Graphviz/lib/graphviz/constants.rb"
      raise e
    end
  end
end