Class: DepCheck::DepChecker
- Inherits:
-
CLAide::Command
- Object
- CLAide::Command
- DepCheck::DepChecker
- Defined in:
- lib/dep_check/DepChecker.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#dep_graph_build(repo, spec, builded, nodes) ⇒ Object
构建依赖关系图.
-
#dep_resolve(node, resolved, unresolved) ⇒ Object
循环依赖检测算法实现.
-
#graph_dot_output(graph, output_file_basename) ⇒ Object
以.gv格式输出一个依赖关系图.
-
#graph_image_out(graph, output_file_basename) ⇒ Object
以.png格式输出一个依赖关系图.
-
#graphviz_data(builded, output_file_basename) ⇒ Object
利用 GraphViz 构建可视化图数据.
-
#initialize(argv) ⇒ DepChecker
constructor
A new instance of DepChecker.
-
#podspec_with_name(repo, name) ⇒ Object
通过模块名称或者模块podspec文件路径 得到一个spec对象.
- #run ⇒ Object
-
#unique_node(name, nodes) ⇒ Object
通过节点名称获得一个唯一的节点.
- #validate! ⇒ Object
Constructor Details
#initialize(argv) ⇒ DepChecker
Returns a new instance of DepChecker.
36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/dep_check/DepChecker.rb', line 36 def initialize(argv) @podspec_name = argv.shift_argument @repo_name = argv.shift_argument @repo_update = argv.flag?('repo-update', false) @produce_graphviz_output = argv.flag?('graphviz', false) @produce_image_output = argv.flag?('image', false) if @repo_name @repo = Pod::Config.instance.sources_manager.sources([@repo_name]).first else @repo = Pod::Config.instance.sources_manager.sources(['master']).first end super end |
Class Method Details
.arguments ⇒ Object
29 30 31 32 33 34 |
# File 'lib/dep_check/DepChecker.rb', line 29 def self.arguments [ CLAide::Argument.new('PODSPEC_NAME', true), CLAide::Argument.new('REPO_NAME', false) ].concat(super) end |
.options ⇒ Object
21 22 23 24 25 26 27 |
# File 'lib/dep_check/DepChecker.rb', line 21 def self. [ ['--repo-update', 'Fetch external podspecs and run `pod repo update` before calculating the dependency graph'], ['--graphviz', 'Outputs the dependency graph in Graphviz format to <podspec name>.gv or Podfile.gv'], ['--image', 'Outputs the dependency graph as an image to <podsepc name>.png or Podfile.png'], ].concat(super) end |
Instance Method Details
#dep_graph_build(repo, spec, builded, nodes) ⇒ Object
构建依赖关系图
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'lib/dep_check/DepChecker.rb', line 135 def dep_graph_build(repo,spec,builded,nodes) node = unique_node(spec.attributes_hash['name'],nodes) # puts "resolving " + node.name builded.push(node) tunples = spec.all_dependencies.map { |dep| {:node => unique_node(dep.name,nodes),:dep => dep} } tunples.each { |t| node.addEdge(t[:node]) } tunples.each { |t| dep_spec = podspec_with_name(repo,t[:dep].name) if builded.count(t[:node]) == 0 dep_graph_build(repo,dep_spec,builded,nodes) end } return builded end |
#dep_resolve(node, resolved, unresolved) ⇒ Object
循环依赖检测算法实现
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
# File 'lib/dep_check/DepChecker.rb', line 159 def dep_resolve(node, resolved, unresolved) unresolved.push(node) node.edges.each { |edge| if resolved.count(edge) == 0 #if edge not in resolved if unresolved.count(edge) != 0 #if edge in unresolved path = [] unresolved.each { |n| path << n.name } Pod::UI.puts "ERROR: Circular dependency detected! #{node.name} <---> #{edge.name}".red raise CircularDependencyError.new(node.name,edge.name,path) end dep_resolve(edge, resolved, unresolved) end } resolved.push(node) unresolved.delete(node) end |
#graph_dot_output(graph, output_file_basename) ⇒ Object
以.gv格式输出一个依赖关系图
215 216 217 218 |
# File 'lib/dep_check/DepChecker.rb', line 215 def graph_dot_output(graph, output_file_basename) graph.output( :dot => "#{output_file_basename}.gv") Pod::UI.puts "Graph file: #{output_file_basename}.gv... \n" end |
#graph_image_out(graph, output_file_basename) ⇒ Object
以.png格式输出一个依赖关系图
208 209 210 211 |
# File 'lib/dep_check/DepChecker.rb', line 208 def graph_image_out(graph, output_file_basename) graph.output( :png => "#{output_file_basename}.png") Pod::UI.puts "Graph file: #{output_file_basename}.png... \n" end |
#graphviz_data(builded, output_file_basename) ⇒ Object
利用 GraphViz 构建可视化图数据
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
# File 'lib/dep_check/DepChecker.rb', line 190 def graphviz_data(builded, output_file_basename) @graphviz ||= begin require 'graphviz' graph = GraphViz::new(output_file_basename, :type => :digraph) builded.each { |node| graph_node_from = graph.add_node(node.name) if !node.edges.empty? node.edges.each { |subNode| graph_node_to = graph.add_node(subNode.name) graph.add_edge(graph_node_from,graph_node_to) } end } graph end end |
#podspec_with_name(repo, name) ⇒ Object
通过模块名称或者模块podspec文件路径 得到一个spec对象
119 120 121 122 123 124 125 126 127 128 |
# File 'lib/dep_check/DepChecker.rb', line 119 def podspec_with_name(repo, name) if name path = Pathname.new("#{name}.podspec") if path.exist? podspec = Pod::Specification.from_file(path) else podspec = repo.specification(name,repo.versions(name).first) end end end |
#run ⇒ Object
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
# File 'lib/dep_check/DepChecker.rb', line 72 def run builded = [] Pod::UI.puts "1. Buiding dependency graph for #{@podspec_name}... \n ".green Pod::UI.puts "All dependencies : \n".blue Pod::UI.puts dep_graph_build(@repo,@podspec,builded,[]) Pod::UI.puts "Done! \n".blue Pod::UI.puts "2. Circular dependency check #{@podspec_name}... \n".green unresolved = [] begin dep_resolve(builded.first,[],unresolved) rescue Exception => e Pod::UI.puts e.to_s.red circular_found = true circular_path = String.new e.path.each { |name| circular_path << name + '--->' } circular_path << e.to circular_from = e.from circular_to = e.to end if !circular_found Pod::UI.puts "No Circular dependency found! \n".green end Pod::UI.puts "Done! \n".blue if @produce_image_output || @produce_graphviz_output Pod::UI.puts "3. Visualizing graph for #{@podspec_name}... \n".green end graph_image_out(graphviz_data(builded,@podspec_name),@podspec_name) if @produce_image_output graph_dot_output(graphviz_data(builded,@podspec_name),@podspec_name) if @produce_graphviz_output Pod::UI.puts "Done. \n".blue {"circular" => !!circular_found , "root_spec_name" => @podspec_name, "circular_from" => circular_from ? circular_from : '' , "circular_to" => circular_to ? circular_to : '' , "circular_path" => circular_path ? circular_path : '', "memo" => 'For more infomation , try $ dep_check --help' } end |
#unique_node(name, nodes) ⇒ Object
通过节点名称获得一个唯一的节点
177 178 179 180 181 182 183 184 185 186 |
# File 'lib/dep_check/DepChecker.rb', line 177 def unique_node(name,nodes) exist_nodes = nodes.select { |n| n.name == name } if exist_nodes.empty? node = Node.new(name) nodes.push(node) else node = exist_nodes.first end node end |
#validate! ⇒ Object
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/dep_check/DepChecker.rb', line 50 def validate! super if @podspec_name require 'pathname' path = Pathname.new("#{@podspec_name}.podspec") if path.exist? @podspec = Pod::Specification.from_file(path) else @podspec = Pod::Config.instance.sources_manager.search(Pod::Dependency.new(@podspec_name)).specification.subspec_by_name(@podspec_name) end Pod::UI.puts "Analyzing #{@podspec} (in repo #{@repo})..." else raise 'Nothing to check. ' end if (@produce_image_output || @produce_graphviz_output) && Pod::Executable.which('dot').nil? raise Informative, 'GraphViz must be installed and `dot` must be in ' \ '$PATH to produce image or graphviz output.' end end |