1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 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 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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
require 'ripper'
module PowerAssert
class Parser
Ident = Struct.new(:type, :name, :column)
attr_reader :line, :path, :lineno, :binding
def initialize(line, path, lineno, binding, assertion_method_name = nil, assertion_proc = nil)
@line = line
@line_for_parsing = (valid_syntax?(line) ? line : slice_expression(line)).b
@path = path
@lineno = lineno
@binding = binding
@proc_local_variables = binding.eval('local_variables').map(&:to_s)
@assertion_method_name = assertion_method_name
@assertion_proc = assertion_proc
end
def idents
@idents ||= extract_idents(Ripper.sexp(@line_for_parsing))
end
def call_paths
collect_paths(idents).uniq
end
def method_id_set
methods = idents.flatten.find_all {|i| i.type == :method }
@method_id_set ||= methods.map(&:name).map(&:to_sym).each_with_object({}) {|i, h| h[i] = true }
end
private
def valid_syntax?(str)
return true unless defined?(RubyVM)
begin
verbose, $VERBOSE = $VERBOSE, nil
RubyVM::InstructionSequence.compile(str)
true
rescue SyntaxError
false
ensure
$VERBOSE = verbose
end
end
def slice_expression(str)
str = str.chomp
str.sub!(/\A\s*(?:if|unless|elsif|case|while|until) /) {|i| ' ' * i.length }
str.sub!(/\A\s*(?:\}|\]|end)?\./) {|i| ' ' * i.length }
str.sub!(/[\{\.\\]\z/, '')
str.sub!(/(?:&&|\|\|)\z/, '')
str.sub!(/ (?:do|and|or)\z/, '')
str
end
class Branch < Array
end
AND_OR_OPS = %i(and or && ||)
#
# Returns idents as graph structure.
#
# +--c--b--+
# extract_idents(Ripper.sexp('a&.b(c).d')) #=> a--+ +--d
# +--------+
#
def extract_idents(sexp)
tag, * = sexp
case tag
when :arg_paren, :assoc_splat, :fcall, :hash, :method_add_block, :string_literal, :return
extract_idents(sexp[1])
when :assign, :massign
extract_idents(sexp[2])
when :opassign
_, _, (_, op_name, (_, op_column)), s0 = sexp
extract_idents(s0) + [Ident[:method, op_name.sub(/=\z/, ''), op_column]]
when :dyna_symbol
if sexp[1][0].kind_of?(Symbol)
# sexp[1] can be [:string_content, [..]] while parsing { "a": 1 }
extract_idents(sexp[1])
else
sexp[1].flat_map {|s| extract_idents(s) }
end
when :assoclist_from_args, :bare_assoc_hash, :paren, :string_embexpr,
:regexp_literal, :xstring_literal
sexp[1].flat_map {|s| extract_idents(s) }
when :command
[sexp[2], sexp[1]].flat_map {|s| extract_idents(s) }
when :assoc_new, :dot2, :dot3, :string_content
sexp[1..-1].flat_map {|s| extract_idents(s) }
when :unary
handle_columnless_ident([], sexp[1], extract_idents(sexp[2]))
when :binary
op = sexp[2]
if AND_OR_OPS.include?(op)
extract_idents(sexp[1]) + [Branch[extract_idents(sexp[3]), []]]
else
handle_columnless_ident(extract_idents(sexp[1]), op, extract_idents(sexp[3]))
end
when :call
_, recv, (op_sym, op_name, _), method = sexp
with_safe_op = ((op_sym == :@op and op_name == '&.') or op_sym == :"&.")
if method == :call
handle_columnless_ident(extract_idents(recv), :call, [], with_safe_op)
else
extract_idents(recv) + (with_safe_op ? [Branch[extract_idents(method), []]] : extract_idents(method))
end
when :array
sexp[1] ? sexp[1].flat_map {|s| extract_idents(s) } : []
when :command_call
[sexp[1], sexp[4], sexp[3]].flat_map {|s| extract_idents(s) }
when :aref
handle_columnless_ident(extract_idents(sexp[1]), :[], extract_idents(sexp[2]))
when :method_add_arg
idents = extract_idents(sexp[1])
if idents.empty?
# idents may be empty(e.g. ->{}.())
extract_idents(sexp[2])
else
if idents[-1].kind_of?(Branch) and idents[-1][1].empty?
# Safe navigation operator is used. See :call clause also.
idents[0..-2] + [Branch[extract_idents(sexp[2]) + idents[-1][0], []]]
else
idents[0..-2] + extract_idents(sexp[2]) + [idents[-1]]
end
end
when :args_add_block
_, (tag, ss0, *ss1), _ = sexp
if tag == :args_add_star
(ss0 + ss1).flat_map {|s| extract_idents(s) }
else
sexp[1].flat_map {|s| extract_idents(s) }
end
when :vcall
_, (tag, name, (_, column)) = sexp
if tag == :@ident
[Ident[@proc_local_variables.include?(name) ? :ref : :method, name, column]]
else
[]
end
when :program
_, ((tag0, (tag1, (tag2, (tag3, mname, _)), _), (tag4, _, ss))) = sexp
if tag0 == :method_add_block and tag1 == :method_add_arg and tag2 == :fcall and
(tag3 == :@ident or tag3 == :@const) and mname == @assertion_method_name and (tag4 == :brace_block or tag4 == :do_block)
ss.flat_map {|s| extract_idents(s) }
else
_, (s0, *) = sexp
extract_idents(s0)
end
when :ifop
_, s0, s1, s2 = sexp
[*extract_idents(s0), Branch[extract_idents(s1), extract_idents(s2)]]
when :if, :unless
_, s0, ss0, (_, ss1) = sexp
[*extract_idents(s0), Branch[ss0.flat_map {|s| extract_idents(s) }, ss1 ? ss1.flat_map {|s| extract_idents(s) } : []]]
when :if_mod, :unless_mod
_, s0, s1 = sexp
[*extract_idents(s0), Branch[extract_idents(s1), []]]
when :var_ref, :var_field
_, (tag, ref_name, (_, column)) = sexp
case tag
when :@kw
if ref_name == 'self'
[Ident[:ref, 'self', column]]
else
[]
end
when :@ident, :@const, :@cvar, :@ivar, :@gvar
[Ident[:ref, ref_name, column]]
else
[]
end
when :@ident, :@const, :@op
_, method_name, (_, column) = sexp
[Ident[:method, method_name, column]]
else
[]
end
end
def str_indices(str, re, offset, limit)
idx = str.index(re, offset)
if idx and idx <= limit
[idx, *str_indices(str, re, idx + 1, limit)]
else
[]
end
end
MID2SRCTXT = {
:[] => '[',
:+@ => '+',
:-@ => '-',
:call => '('
}
def handle_columnless_ident(left_idents, mid, right_idents, with_safe_op = false)
left_max = left_idents.flatten.max_by(&:column)
right_min = right_idents.flatten.min_by(&:column)
bg = left_max ? left_max.column + left_max.name.length : 0
ed = right_min ? right_min.column - 1 : @line_for_parsing.length - 1
mname = mid.to_s
srctxt = MID2SRCTXT[mid] || mname
re = /
#{'\b' if /\A\w/ =~ srctxt}
#{Regexp.escape(srctxt)}
#{'\b' if /\w\z/ =~ srctxt}
/x
indices = str_indices(@line_for_parsing, re, bg, ed)
if indices.length == 1 or !(right_idents.empty? and left_idents.empty?)
ident = Ident[:method, mname, right_idents.empty? ? indices.first : indices.last]
left_idents + right_idents + (with_safe_op ? [Branch[[ident], []]] : [ident])
else
left_idents + right_idents
end
end
def collect_paths(idents, prefixes = [[]], index = 0)
if index < idents.length
node = idents[index]
if node.kind_of?(Branch)
prefixes = node.flat_map {|n| collect_paths(n, prefixes, 0) }
else
prefixes = prefixes.map {|prefix| prefix + [node] }
end
collect_paths(idents, prefixes, index + 1)
else
prefixes
end
end
class DummyParser < Parser
def initialize
super('', nil, nil, TOPLEVEL_BINDING)
end
def idents
[]
end
def call_paths
[]
end
end
DUMMY = DummyParser.new
end
private_constant :Parser
end
|