Class: Lemon::SourceParser

Inherits:
Object
  • Object
show all
Defined in:
lib/lemon/coverage/source_parser.rb

Defined Under Namespace

Classes: Scope

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ SourceParser

Each instance of SourceParser accumulates scopes with each parse, making it easy to parse an entire project in chunks but more difficult to parse disparate files in one go. Create separate instances for separate global scopes.

Returns an instance of TomDoc::SourceParser



25
26
27
28
29
# File 'lib/lemon/coverage/source_parser.rb', line 25

def initialize(options = {})
  @options = {}
  @parser  = RubyParser.new
  @scopes  = {}
end

Instance Attribute Details

#optionsObject

Returns the value of attribute options.



17
18
19
# File 'lib/lemon/coverage/source_parser.rb', line 17

def options
  @options
end

#parserObject

Returns the value of attribute parser.



17
18
19
# File 'lib/lemon/coverage/source_parser.rb', line 17

def parser
  @parser
end

#scopesObject

Returns the value of attribute scopes.



17
18
19
# File 'lib/lemon/coverage/source_parser.rb', line 17

def scopes
  @scopes
end

Class Method Details

.parse(text) ⇒ Object

Converts Ruby code into a data structure.

text - A String of Ruby code.

Returns a Hash with each key a namespace and each value another

Hash or a TomDoc::Scope.


13
14
15
# File 'lib/lemon/coverage/source_parser.rb', line 13

def self.parse(text)
  new.parse(text)
end

Instance Method Details

#args_for_node(node) ⇒ Object

Given a method sexp, returns an array of the args.



145
146
147
# File 'lib/lemon/coverage/source_parser.rb', line 145

def args_for_node(node)
  Array(node)[1..-1].select { |arg| arg.is_a? Symbol }
end

#parse(text) ⇒ Object

Converts Ruby code into a data structure. Note that at the instance level scopes accumulate, which makes it easy to parse multiple files in a single project but harder to parse files that have no connection.

text - A String of Ruby code.

Examples

@parser = TomDoc::SourceParser.new
files.each do |file|
  @parser.parse(File.read(file))
end
pp @parser.scopes

Returns a Hash with each key a namespace and each value another

Hash or a TomDoc::Scope.


54
55
56
57
# File 'lib/lemon/coverage/source_parser.rb', line 54

def parse(text)
  process(tokenize(sexp(text)))
  @scopes
end

#process(ast, scope = nil) ⇒ Object

Converts a tokenized Array of classes, modules, and methods into Scopes and Methods, adding them to the @scopes instance variable as it works.

ast - Tokenized Array produced by calling ‘tokenize`. scope - An optional Scope object for nested classes or modules.

Returns nothing.



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
# File 'lib/lemon/coverage/source_parser.rb', line 76

def process(ast, scope = nil)
  case Array(ast)[0]
  when :module, :class
    name = ast[1]
    new_scope = Scope.new(name, ast[2])

    if scope
      scope.scopes[name] = new_scope
    elsif @scopes[name]
      new_scope = @scopes[name]
    else
      @scopes[name] = new_scope
    end

    process(ast[3], new_scope)
  when :imethod
    ast.shift
    scope.instance_methods << Method.new(*ast)
  when :cmethod
    ast.shift
    scope.class_methods << Method.new(*ast)
  when Array
    ast.map { |a| process(a, scope) }
  end
end

#resetObject

Resets the state of the parser to a pristine one. Maintains options.

Returns nothing.



34
35
36
# File 'lib/lemon/coverage/source_parser.rb', line 34

def reset
  initialize(@options)
end

#sexp(text) ⇒ Object

Converts Ruby sourcecode into an AST.

text - A String of Ruby source.

Returns a Sexp representing the AST.



64
65
66
# File 'lib/lemon/coverage/source_parser.rb', line 64

def sexp(text)
  @parser.parse(text)
end

#tokenize(node) ⇒ Object

Converts a Ruby AST-style Sexp into an Array of more useful tokens.

node - A Ruby AST Sexp or Array

Examples

[:module, :Math, "",
  [:class, :Multiplexer, "# Class Comment",
    [:cmethod,
      :multiplex, "# Class Method Comment", [:text]],
    [:imethod,
      :multiplex, "# Instance Method Comment", [:text, :count]]]]

# In others words:
# [ :type, :name, :comment, other ]

Returns an Array in the above format.



119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/lemon/coverage/source_parser.rb', line 119

def tokenize(node)
  case Array(node)[0]
  when :module
    name = node[1]
    [ :module, name, node.comments, tokenize(node[2]) ]
  when :class
    name = node[1]
    [ :class, name, node.comments, tokenize(node[3]) ]
  when :defn
    name = node[1]
    args = args_for_node(node[2])
    [ :imethod, name, node.comments, args ]
  when :defs
    name = node[2]
    args = args_for_node(node[3])
    [ :cmethod, name, node.comments, args ]
  when :block
    tokenize(node[1..-1])
  when :scope
    tokenize(node[1])
  when Array
    node.map { |n| tokenize(n) }.compact
  end
end