Class: CodeAnalyzer::CheckingVisitor::Default
- Defined in:
- lib/code_analyzer/checking_visitor/default.rb
Overview
This is the default checking visitor to check ruby sexp nodes.
Instance Method Summary collapse
-
#after_check ⇒ Object
trigger all after_check callbacks defined in all checkers.
-
#check(filename, content) ⇒ Object
check the ruby sexp nodes for the ruby file.
-
#check_node(node) ⇒ Object
recursively check ruby sexp node.
-
#initialize(options = {}) ⇒ Default
constructor
A new instance of Default.
-
#parse(filename, content) ⇒ Object
parse ruby code.
Methods inherited from Base
Constructor Details
#initialize(options = {}) ⇒ Default
Returns a new instance of Default.
6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/code_analyzer/checking_visitor/default.rb', line 6 def initialize( = {}) super @checks = {} @checkers.each do |checker| checker.interesting_nodes.each do |node| @checks[node] ||= [] @checks[node] << checker @checks[node].uniq! end end end |
Instance Method Details
#after_check ⇒ Object
trigger all after_check callbacks defined in all checkers.
29 30 31 32 33 34 |
# File 'lib/code_analyzer/checking_visitor/default.rb', line 29 def after_check @checkers.each do |checker| after_check_callbacks = checker.class.get_callbacks(:after_check) after_check_callbacks.each { |block| checker.instance_exec &block } end end |
#check(filename, content) ⇒ Object
check the ruby sexp nodes for the ruby file.
22 23 24 25 26 |
# File 'lib/code_analyzer/checking_visitor/default.rb', line 22 def check(filename, content) node = parse(filename, content) node.file = filename check_node(node) end |
#check_node(node) ⇒ Object
recursively check ruby sexp node.
-
it triggers the interesting checkers’ start callbacks.
-
recursively check the sexp children.
-
it triggers the interesting checkers’ end callbacks.
51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/code_analyzer/checking_visitor/default.rb', line 51 def check_node(node) checkers = @checks[node.sexp_type] checkers.each { |checker| checker.node_start(node) if checker.parse_file?(node.file) } if checkers node.children.each do |child_node| child_node.file = node.file check_node(child_node) end checkers.each { |checker| checker.node_end(node) if checker.parse_file?(node.file) } if checkers end |
#parse(filename, content) ⇒ Object
parse ruby code.
40 41 42 43 44 |
# File 'lib/code_analyzer/checking_visitor/default.rb', line 40 def parse(filename, content) Sexp.from_array(Ripper::SexpBuilder.new(content).parse) rescue Exception raise AnalyzerException.new("#{filename} looks like it's not a valid Ruby file. Skipping...") end |