forked from VimPlug/jedi
basic implementation of the new evaluate.finder module, moved the whole find_name procedure there
This commit is contained in:
+7
-306
@@ -73,7 +73,7 @@ from __future__ import with_statement
|
|||||||
import sys
|
import sys
|
||||||
import itertools
|
import itertools
|
||||||
|
|
||||||
from jedi._compatibility import next, hasattr, unicode, reraise, u
|
from jedi._compatibility import next, hasattr, unicode, reraise
|
||||||
from jedi import common
|
from jedi import common
|
||||||
from jedi.parser import representation as pr
|
from jedi.parser import representation as pr
|
||||||
from jedi import debug
|
from jedi import debug
|
||||||
@@ -83,38 +83,8 @@ from jedi.evaluate import imports
|
|||||||
from jedi.evaluate import recursion
|
from jedi.evaluate import recursion
|
||||||
from jedi.evaluate import iterable
|
from jedi.evaluate import iterable
|
||||||
from jedi.evaluate.cache import memoize_default
|
from jedi.evaluate.cache import memoize_default
|
||||||
from jedi.evaluate import docstrings
|
|
||||||
from jedi.evaluate import dynamic
|
|
||||||
from jedi.evaluate import stdlib
|
from jedi.evaluate import stdlib
|
||||||
|
from jedi.evaluate import finder
|
||||||
|
|
||||||
def _get_defined_names_for_position(scope, position=None, start_scope=None):
|
|
||||||
"""
|
|
||||||
Return filtered version of ``scope.get_defined_names()``.
|
|
||||||
|
|
||||||
This function basically does what :meth:`scope.get_defined_names
|
|
||||||
<parsing_representation.Scope.get_defined_names>` does.
|
|
||||||
|
|
||||||
- If `position` is given, delete all names defined after `position`.
|
|
||||||
- For special objects like instances, `position` is ignored and all
|
|
||||||
names are returned.
|
|
||||||
|
|
||||||
:type scope: :class:`parsing_representation.IsScope`
|
|
||||||
:param scope: Scope in which names are searched.
|
|
||||||
:param position: The position as a line/column tuple, default is infinity.
|
|
||||||
"""
|
|
||||||
names = scope.get_defined_names()
|
|
||||||
# Instances have special rules, always return all the possible completions,
|
|
||||||
# because class variables are always valid and the `self.` variables, too.
|
|
||||||
if (not position or isinstance(scope, (iterable.Array, er.Instance))
|
|
||||||
or start_scope != scope
|
|
||||||
and isinstance(start_scope, (pr.Function, er.FunctionExecution))):
|
|
||||||
return names
|
|
||||||
names_new = []
|
|
||||||
for n in names:
|
|
||||||
if n.start_pos[0] is not None and n.start_pos < position:
|
|
||||||
names_new.append(n)
|
|
||||||
return names_new
|
|
||||||
|
|
||||||
|
|
||||||
class Evaluator(object):
|
class Evaluator(object):
|
||||||
@@ -184,8 +154,7 @@ class Evaluator(object):
|
|||||||
for g in scope.scope_generator():
|
for g in scope.scope_generator():
|
||||||
yield g
|
yield g
|
||||||
else:
|
else:
|
||||||
yield scope, _get_defined_names_for_position(scope,
|
yield scope, finder._get_defined_names_for_position(scope, position, in_func_scope)
|
||||||
position, in_func_scope)
|
|
||||||
except StopIteration:
|
except StopIteration:
|
||||||
reraise(common.MultiLevelStopIteration, sys.exc_info()[2])
|
reraise(common.MultiLevelStopIteration, sys.exc_info()[2])
|
||||||
if scope.isinstance(pr.ForFlow) and scope.is_list_comp:
|
if scope.isinstance(pr.ForFlow) and scope.is_list_comp:
|
||||||
@@ -220,261 +189,11 @@ class Evaluator(object):
|
|||||||
:return: List of Names. Their parents are the scopes, they are defined in.
|
:return: List of Names. Their parents are the scopes, they are defined in.
|
||||||
:rtype: list
|
:rtype: list
|
||||||
"""
|
"""
|
||||||
def remove_statements(result):
|
f = finder.NameFinder(self, scope, name_str, position, is_goto)
|
||||||
"""
|
scopes = f.scopes(search_global)
|
||||||
This is the part where statements are being stripped.
|
|
||||||
|
|
||||||
Due to lazy evaluation, statements like a = func; b = a; b() have to be
|
|
||||||
evaluated.
|
|
||||||
"""
|
|
||||||
res_new = []
|
|
||||||
for r in result:
|
|
||||||
add = []
|
|
||||||
if r.isinstance(pr.Statement):
|
|
||||||
check_instance = None
|
|
||||||
if isinstance(r, er.InstanceElement) and r.is_class_var:
|
|
||||||
check_instance = r.instance
|
|
||||||
r = r.var
|
|
||||||
|
|
||||||
# Global variables handling.
|
|
||||||
if r.is_global():
|
|
||||||
for token_name in r.token_list[1:]:
|
|
||||||
if isinstance(token_name, pr.Name):
|
|
||||||
add = self.find_name(r.parent, str(token_name))
|
|
||||||
else:
|
|
||||||
# generated objects are used within executions, but these
|
|
||||||
# objects are in functions, and we have to dynamically
|
|
||||||
# execute first.
|
|
||||||
if isinstance(r, pr.Param):
|
|
||||||
func = r.parent
|
|
||||||
# Instances are typically faked, if the instance is not
|
|
||||||
# called from outside. Here we check it for __init__
|
|
||||||
# functions and return.
|
|
||||||
if isinstance(func, er.InstanceElement) \
|
|
||||||
and func.instance.is_generated \
|
|
||||||
and hasattr(func, 'name') \
|
|
||||||
and str(func.name) == '__init__' \
|
|
||||||
and r.position_nr > 0: # 0 would be self
|
|
||||||
r = func.var.params[r.position_nr]
|
|
||||||
|
|
||||||
# add docstring knowledge
|
|
||||||
doc_params = docstrings.follow_param(self, r)
|
|
||||||
if doc_params:
|
|
||||||
res_new += doc_params
|
|
||||||
continue
|
|
||||||
|
|
||||||
if not r.is_generated:
|
|
||||||
res_new += dynamic.search_params(self, r)
|
|
||||||
if not res_new:
|
|
||||||
c = r.expression_list()[0]
|
|
||||||
if c in ('*', '**'):
|
|
||||||
t = 'tuple' if c == '*' else 'dict'
|
|
||||||
res_new = self.execute(self.find_name(builtin.Builtin.scope, t)[0])
|
|
||||||
if not r.assignment_details:
|
|
||||||
# this means that there are no default params,
|
|
||||||
# so just ignore it.
|
|
||||||
continue
|
|
||||||
|
|
||||||
# Remove the statement docstr stuff for now, that has to be
|
|
||||||
# implemented with the evaluator class.
|
|
||||||
#if r.docstr:
|
|
||||||
#res_new.append(r)
|
|
||||||
|
|
||||||
scopes = self.eval_statement(r, seek_name=name_str)
|
|
||||||
add += remove_statements(scopes)
|
|
||||||
|
|
||||||
if check_instance is not None:
|
|
||||||
# class renames
|
|
||||||
add = [er.InstanceElement(self, check_instance, a, True)
|
|
||||||
if isinstance(a, (er.Function, pr.Function))
|
|
||||||
else a for a in add]
|
|
||||||
res_new += add
|
|
||||||
else:
|
|
||||||
if isinstance(r, pr.Class):
|
|
||||||
r = er.Class(self, r)
|
|
||||||
elif isinstance(r, pr.Function):
|
|
||||||
r = er.Function(self, r)
|
|
||||||
if r.isinstance(er.Function) and resolve_decorator:
|
|
||||||
r = r.get_decorated_func()
|
|
||||||
res_new.append(r)
|
|
||||||
debug.dbg('sfn remove, new: %s, old: %s' % (res_new, result))
|
|
||||||
return res_new
|
|
||||||
|
|
||||||
def filter_name(scope_generator):
|
|
||||||
"""
|
|
||||||
Filters all variables of a scope (which are defined in the
|
|
||||||
`scope_generator`), until the name fits.
|
|
||||||
"""
|
|
||||||
def handle_for_loops(loop):
|
|
||||||
# Take the first statement (for has always only
|
|
||||||
# one, remember `in`). And follow it.
|
|
||||||
if not loop.inputs:
|
|
||||||
return []
|
|
||||||
result = iterable.get_iterator_types(self.eval_statement(loop.inputs[0]))
|
|
||||||
if len(loop.set_vars) > 1:
|
|
||||||
expression_list = loop.set_stmt.expression_list()
|
|
||||||
# loops with loop.set_vars > 0 only have one command
|
|
||||||
result = _assign_tuples(expression_list[0], result, name_str)
|
|
||||||
return result
|
|
||||||
|
|
||||||
def process(name):
|
|
||||||
"""
|
|
||||||
Returns the parent of a name, which means the element which stands
|
|
||||||
behind a name.
|
|
||||||
"""
|
|
||||||
result = []
|
|
||||||
no_break_scope = False
|
|
||||||
par = name.parent
|
|
||||||
exc = pr.Class, pr.Function
|
|
||||||
until = lambda: par.parent.parent.get_parent_until(exc)
|
|
||||||
is_array_assignment = False
|
|
||||||
|
|
||||||
if par is None:
|
|
||||||
pass
|
|
||||||
elif par.isinstance(pr.Flow):
|
|
||||||
if par.command == 'for':
|
|
||||||
result += handle_for_loops(par)
|
|
||||||
else:
|
|
||||||
debug.warning('Flow: Why are you here? %s' % par.command)
|
|
||||||
elif par.isinstance(pr.Param) \
|
|
||||||
and par.parent is not None \
|
|
||||||
and isinstance(until(), pr.Class) \
|
|
||||||
and par.position_nr == 0:
|
|
||||||
# This is where self gets added - this happens at another
|
|
||||||
# place, if the var_args are clear. But sometimes the class is
|
|
||||||
# not known. Therefore add a new instance for self. Otherwise
|
|
||||||
# take the existing.
|
|
||||||
if isinstance(scope, er.InstanceElement):
|
|
||||||
result.append(scope.instance)
|
|
||||||
else:
|
|
||||||
for inst in self.execute(er.Class(self, until())):
|
|
||||||
inst.is_generated = True
|
|
||||||
result.append(inst)
|
|
||||||
elif par.isinstance(pr.Statement):
|
|
||||||
def is_execution(calls):
|
|
||||||
for c in calls:
|
|
||||||
if isinstance(c, (unicode, str)):
|
|
||||||
continue
|
|
||||||
if c.isinstance(pr.Array):
|
|
||||||
if is_execution(c):
|
|
||||||
return True
|
|
||||||
elif c.isinstance(pr.Call):
|
|
||||||
# Compare start_pos, because names may be different
|
|
||||||
# because of executions.
|
|
||||||
if c.name.start_pos == name.start_pos \
|
|
||||||
and c.execution:
|
|
||||||
return True
|
|
||||||
return False
|
|
||||||
|
|
||||||
is_exe = False
|
|
||||||
for assignee, op in par.assignment_details:
|
|
||||||
is_exe |= is_execution(assignee)
|
|
||||||
|
|
||||||
if is_exe:
|
|
||||||
# filter array[3] = ...
|
|
||||||
# TODO check executions for dict contents
|
|
||||||
is_array_assignment = True
|
|
||||||
else:
|
|
||||||
details = par.assignment_details
|
|
||||||
if details and details[0][1] != '=':
|
|
||||||
no_break_scope = True
|
|
||||||
|
|
||||||
# TODO this makes self variables non-breakable. wanted?
|
|
||||||
if isinstance(name, er.InstanceElement) \
|
|
||||||
and not name.is_class_var:
|
|
||||||
no_break_scope = True
|
|
||||||
|
|
||||||
result.append(par)
|
|
||||||
else:
|
|
||||||
# TODO multi-level import non-breakable
|
|
||||||
if isinstance(par, pr.Import) and len(par.namespace) > 1:
|
|
||||||
no_break_scope = True
|
|
||||||
result.append(par)
|
|
||||||
return result, no_break_scope, is_array_assignment
|
|
||||||
|
|
||||||
flow_scope = scope
|
|
||||||
result = []
|
|
||||||
# compare func uses the tuple of line/indent = line/column
|
|
||||||
comparison_func = lambda name: (name.start_pos)
|
|
||||||
|
|
||||||
for nscope, name_list in scope_generator:
|
|
||||||
break_scopes = []
|
|
||||||
# here is the position stuff happening (sorting of variables)
|
|
||||||
for name in sorted(name_list, key=comparison_func, reverse=True):
|
|
||||||
p = name.parent.parent if name.parent else None
|
|
||||||
if isinstance(p, er.InstanceElement) \
|
|
||||||
and isinstance(p.var, pr.Class):
|
|
||||||
p = p.var
|
|
||||||
if name_str == name.get_code() and p not in break_scopes:
|
|
||||||
r, no_break_scope, is_array_assignment = process(name)
|
|
||||||
if is_goto:
|
|
||||||
if not is_array_assignment: # shouldn't goto arr[1] =
|
|
||||||
result.append(name)
|
|
||||||
else:
|
|
||||||
result += r
|
|
||||||
# for comparison we need the raw class
|
|
||||||
s = nscope.base if isinstance(nscope, er.Class) else nscope
|
|
||||||
# this means that a definition was found and is not e.g.
|
|
||||||
# in if/else.
|
|
||||||
if result and not no_break_scope:
|
|
||||||
if not name.parent or p == s:
|
|
||||||
break
|
|
||||||
break_scopes.append(p)
|
|
||||||
|
|
||||||
while flow_scope:
|
|
||||||
# TODO check if result is in scope -> no evaluation necessary
|
|
||||||
n = dynamic.check_flow_information(self, flow_scope,
|
|
||||||
name_str, position)
|
|
||||||
if n:
|
|
||||||
result = n
|
|
||||||
break
|
|
||||||
|
|
||||||
if result:
|
|
||||||
break
|
|
||||||
if flow_scope == nscope:
|
|
||||||
break
|
|
||||||
flow_scope = flow_scope.parent
|
|
||||||
flow_scope = nscope
|
|
||||||
if result:
|
|
||||||
break
|
|
||||||
|
|
||||||
if not result and isinstance(nscope, er.Instance):
|
|
||||||
# __getattr__ / __getattribute__
|
|
||||||
result += _check_getattr(nscope, name_str)
|
|
||||||
debug.dbg('sfn filter "%s" in (%s-%s): %s@%s'
|
|
||||||
% (name_str, scope, nscope, u(result), position))
|
|
||||||
return result
|
|
||||||
|
|
||||||
def descriptor_check(result):
|
|
||||||
"""Processes descriptors"""
|
|
||||||
res_new = []
|
|
||||||
for r in result:
|
|
||||||
if isinstance(scope, (er.Instance, er.Class)) \
|
|
||||||
and hasattr(r, 'get_descriptor_return'):
|
|
||||||
# handle descriptors
|
|
||||||
with common.ignored(KeyError):
|
|
||||||
res_new += r.get_descriptor_return(scope)
|
|
||||||
continue
|
|
||||||
res_new.append(r)
|
|
||||||
return res_new
|
|
||||||
|
|
||||||
if search_global:
|
|
||||||
scope_generator = self.get_names_of_scope(scope, position=position)
|
|
||||||
else:
|
|
||||||
if isinstance(scope, er.Instance):
|
|
||||||
scope_generator = scope.scope_generator()
|
|
||||||
else:
|
|
||||||
if isinstance(scope, (er.Class, pr.Module)):
|
|
||||||
# classes are only available directly via chaining?
|
|
||||||
# strange stuff...
|
|
||||||
names = scope.get_defined_names()
|
|
||||||
else:
|
|
||||||
names = _get_defined_names_for_position(scope, position)
|
|
||||||
scope_generator = iter([(scope, names)])
|
|
||||||
|
|
||||||
if is_goto:
|
if is_goto:
|
||||||
return filter_name(scope_generator)
|
return f.filter_name(scopes, is_goto=is_goto)
|
||||||
return descriptor_check(remove_statements(filter_name(scope_generator)))
|
return f.find(scopes, resolve_decorator)
|
||||||
|
|
||||||
@memoize_default(default=(), evaluator_is_first_arg=True)
|
@memoize_default(default=(), evaluator_is_first_arg=True)
|
||||||
@recursion.recursion_decorator
|
@recursion.recursion_decorator
|
||||||
@@ -740,24 +459,6 @@ def filter_private_variable(scope, call_scope, var_name):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
def _check_getattr(inst, name_str):
|
|
||||||
"""Checks for both __getattr__ and __getattribute__ methods"""
|
|
||||||
result = []
|
|
||||||
# str is important to lose the NamePart!
|
|
||||||
module = builtin.Builtin.scope
|
|
||||||
name = pr.String(module, "'%s'" % name_str, (0, 0), (0, 0), inst)
|
|
||||||
with common.ignored(KeyError):
|
|
||||||
result = inst.execute_subscope_by_name('__getattr__', [name])
|
|
||||||
if not result:
|
|
||||||
# this is a little bit special. `__getattribute__` is executed
|
|
||||||
# before anything else. But: I know no use case, where this
|
|
||||||
# could be practical and the jedi would return wrong types. If
|
|
||||||
# you ever have something, let me know!
|
|
||||||
with common.ignored(KeyError):
|
|
||||||
result = inst.execute_subscope_by_name('__getattribute__', [name])
|
|
||||||
return result
|
|
||||||
|
|
||||||
|
|
||||||
def _assign_tuples(tup, results, seek_name):
|
def _assign_tuples(tup, results, seek_name):
|
||||||
"""
|
"""
|
||||||
This is a normal assignment checker. In python functions and other things
|
This is a normal assignment checker. In python functions and other things
|
||||||
|
|||||||
@@ -0,0 +1,323 @@
|
|||||||
|
from jedi._compatibility import hasattr, unicode, u
|
||||||
|
from jedi.parser import representation as pr
|
||||||
|
from jedi import debug
|
||||||
|
from jedi import common
|
||||||
|
from jedi.evaluate import representation as er
|
||||||
|
from jedi.evaluate import dynamic
|
||||||
|
from jedi.evaluate import builtin
|
||||||
|
from jedi.evaluate import docstrings
|
||||||
|
from jedi.evaluate import iterable
|
||||||
|
|
||||||
|
|
||||||
|
class NameFinder(object):
|
||||||
|
def __init__(self, evaluator, scope, name_str, position=None):
|
||||||
|
self._evaluator = evaluator
|
||||||
|
self.scope = scope
|
||||||
|
self.name_str = name_str
|
||||||
|
self.position = position
|
||||||
|
|
||||||
|
def _resolve_descriptors(self, types):
|
||||||
|
"""Processes descriptors"""
|
||||||
|
result = []
|
||||||
|
for r in types:
|
||||||
|
if isinstance(self.scope, (er.Instance, er.Class)) \
|
||||||
|
and hasattr(r, 'get_descriptor_return'):
|
||||||
|
# handle descriptors
|
||||||
|
with common.ignored(KeyError):
|
||||||
|
result += r.get_descriptor_return(self.scope)
|
||||||
|
continue
|
||||||
|
result.append(r)
|
||||||
|
return result
|
||||||
|
|
||||||
|
def _remove_statements(self, result, resolve_decorator=True):
|
||||||
|
"""
|
||||||
|
This is the part where statements are being stripped.
|
||||||
|
|
||||||
|
Due to lazy evaluation, statements like a = func; b = a; b() have to be
|
||||||
|
evaluated.
|
||||||
|
"""
|
||||||
|
evaluator = self._evaluator
|
||||||
|
res_new = []
|
||||||
|
for r in result:
|
||||||
|
add = []
|
||||||
|
if r.isinstance(pr.Statement):
|
||||||
|
check_instance = None
|
||||||
|
if isinstance(r, er.InstanceElement) and r.is_class_var:
|
||||||
|
check_instance = r.instance
|
||||||
|
r = r.var
|
||||||
|
|
||||||
|
# Global variables handling.
|
||||||
|
if r.is_global():
|
||||||
|
for token_name in r.token_list[1:]:
|
||||||
|
if isinstance(token_name, pr.Name):
|
||||||
|
add = evaluator.find_name(r.parent, str(token_name))
|
||||||
|
else:
|
||||||
|
# generated objects are used within executions, but these
|
||||||
|
# objects are in functions, and we have to dynamically
|
||||||
|
# execute first.
|
||||||
|
if isinstance(r, pr.Param):
|
||||||
|
func = r.parent
|
||||||
|
# Instances are typically faked, if the instance is not
|
||||||
|
# called from outside. Here we check it for __init__
|
||||||
|
# functions and return.
|
||||||
|
if isinstance(func, er.InstanceElement) \
|
||||||
|
and func.instance.is_generated \
|
||||||
|
and hasattr(func, 'name') \
|
||||||
|
and str(func.name) == '__init__' \
|
||||||
|
and r.position_nr > 0: # 0 would be self
|
||||||
|
r = func.var.params[r.position_nr]
|
||||||
|
|
||||||
|
# add docstring knowledge
|
||||||
|
doc_params = docstrings.follow_param(evaluator, r)
|
||||||
|
if doc_params:
|
||||||
|
res_new += doc_params
|
||||||
|
continue
|
||||||
|
|
||||||
|
if not r.is_generated:
|
||||||
|
res_new += dynamic.search_params(evaluator, r)
|
||||||
|
if not res_new:
|
||||||
|
c = r.expression_list()[0]
|
||||||
|
if c in ('*', '**'):
|
||||||
|
t = 'tuple' if c == '*' else 'dict'
|
||||||
|
res_new = evaluator.execute(self.find_name(builtin.Builtin.scope, t)[0])
|
||||||
|
if not r.assignment_details:
|
||||||
|
# this means that there are no default params,
|
||||||
|
# so just ignore it.
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Remove the statement docstr stuff for now, that has to be
|
||||||
|
# implemented with the evaluator class.
|
||||||
|
#if r.docstr:
|
||||||
|
#res_new.append(r)
|
||||||
|
|
||||||
|
scopes = evaluator.eval_statement(r, seek_name=self.name_str)
|
||||||
|
add += self._remove_statements(scopes)
|
||||||
|
|
||||||
|
if check_instance is not None:
|
||||||
|
# class renames
|
||||||
|
add = [er.InstanceElement(evaluator, check_instance, a, True)
|
||||||
|
if isinstance(a, (er.Function, pr.Function))
|
||||||
|
else a for a in add]
|
||||||
|
res_new += add
|
||||||
|
else:
|
||||||
|
if isinstance(r, pr.Class):
|
||||||
|
r = er.Class(evaluator, r)
|
||||||
|
elif isinstance(r, pr.Function):
|
||||||
|
r = er.Function(evaluator, r)
|
||||||
|
if r.isinstance(er.Function) and resolve_decorator:
|
||||||
|
r = r.get_decorated_func()
|
||||||
|
res_new.append(r)
|
||||||
|
debug.dbg('sfn remove, new: %s, old: %s' % (res_new, result))
|
||||||
|
return res_new
|
||||||
|
|
||||||
|
def filter_name(self, scope_generator, is_goto=False):
|
||||||
|
"""
|
||||||
|
Filters all variables of a scope (which are defined in the
|
||||||
|
`scope_generator`), until the name fits.
|
||||||
|
"""
|
||||||
|
def handle_for_loops(loop):
|
||||||
|
# Take the first statement (for has always only
|
||||||
|
# one, remember `in`). And follow it.
|
||||||
|
if not loop.inputs:
|
||||||
|
return []
|
||||||
|
result = iterable.get_iterator_types(self._evaluator.eval_statement(loop.inputs[0]))
|
||||||
|
if len(loop.set_vars) > 1:
|
||||||
|
expression_list = loop.set_stmt.expression_list()
|
||||||
|
# loops with loop.set_vars > 0 only have one command
|
||||||
|
from jedi import evaluate
|
||||||
|
result = evaluate._assign_tuples(expression_list[0], result, self.name_str)
|
||||||
|
return result
|
||||||
|
|
||||||
|
def process(name):
|
||||||
|
"""
|
||||||
|
Returns the parent of a name, which means the element which stands
|
||||||
|
behind a name.
|
||||||
|
"""
|
||||||
|
result = []
|
||||||
|
no_break_scope = False
|
||||||
|
par = name.parent
|
||||||
|
exc = pr.Class, pr.Function
|
||||||
|
until = lambda: par.parent.parent.get_parent_until(exc)
|
||||||
|
is_array_assignment = False
|
||||||
|
|
||||||
|
if par is None:
|
||||||
|
pass
|
||||||
|
elif par.isinstance(pr.Flow):
|
||||||
|
if par.command == 'for':
|
||||||
|
result += handle_for_loops(par)
|
||||||
|
else:
|
||||||
|
debug.warning('Flow: Why are you here? %s' % par.command)
|
||||||
|
elif par.isinstance(pr.Param) \
|
||||||
|
and par.parent is not None \
|
||||||
|
and isinstance(until(), pr.Class) \
|
||||||
|
and par.position_nr == 0:
|
||||||
|
# This is where self gets added - this happens at another
|
||||||
|
# place, if the var_args are clear. But sometimes the class is
|
||||||
|
# not known. Therefore add a new instance for self. Otherwise
|
||||||
|
# take the existing.
|
||||||
|
if isinstance(self.scope, er.InstanceElement):
|
||||||
|
result.append(self.scope.instance)
|
||||||
|
else:
|
||||||
|
for inst in self._evaluator.execute(er.Class(self._evaluator, until())):
|
||||||
|
inst.is_generated = True
|
||||||
|
result.append(inst)
|
||||||
|
elif par.isinstance(pr.Statement):
|
||||||
|
def is_execution(calls):
|
||||||
|
for c in calls:
|
||||||
|
if isinstance(c, (unicode, str)):
|
||||||
|
continue
|
||||||
|
if c.isinstance(pr.Array):
|
||||||
|
if is_execution(c):
|
||||||
|
return True
|
||||||
|
elif c.isinstance(pr.Call):
|
||||||
|
# Compare start_pos, because names may be different
|
||||||
|
# because of executions.
|
||||||
|
if c.name.start_pos == name.start_pos \
|
||||||
|
and c.execution:
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
is_exe = False
|
||||||
|
for assignee, op in par.assignment_details:
|
||||||
|
is_exe |= is_execution(assignee)
|
||||||
|
|
||||||
|
if is_exe:
|
||||||
|
# filter array[3] = ...
|
||||||
|
# TODO check executions for dict contents
|
||||||
|
is_array_assignment = True
|
||||||
|
else:
|
||||||
|
details = par.assignment_details
|
||||||
|
if details and details[0][1] != '=':
|
||||||
|
no_break_scope = True
|
||||||
|
|
||||||
|
# TODO this makes self variables non-breakable. wanted?
|
||||||
|
if isinstance(name, er.InstanceElement) \
|
||||||
|
and not name.is_class_var:
|
||||||
|
no_break_scope = True
|
||||||
|
|
||||||
|
result.append(par)
|
||||||
|
else:
|
||||||
|
# TODO multi-level import non-breakable
|
||||||
|
if isinstance(par, pr.Import) and len(par.namespace) > 1:
|
||||||
|
no_break_scope = True
|
||||||
|
result.append(par)
|
||||||
|
return result, no_break_scope, is_array_assignment
|
||||||
|
|
||||||
|
flow_scope = self.scope
|
||||||
|
result = []
|
||||||
|
# compare func uses the tuple of line/indent = line/column
|
||||||
|
comparison_func = lambda name: (name.start_pos)
|
||||||
|
|
||||||
|
for nscope, name_list in scope_generator:
|
||||||
|
break_scopes = []
|
||||||
|
# here is the position stuff happening (sorting of variables)
|
||||||
|
for name in sorted(name_list, key=comparison_func, reverse=True):
|
||||||
|
p = name.parent.parent if name.parent else None
|
||||||
|
if isinstance(p, er.InstanceElement) \
|
||||||
|
and isinstance(p.var, pr.Class):
|
||||||
|
p = p.var
|
||||||
|
if self.name_str == name.get_code() and p not in break_scopes:
|
||||||
|
r, no_break_scope, is_array_assignment = process(name)
|
||||||
|
if is_goto:
|
||||||
|
if not is_array_assignment: # shouldn't goto arr[1] =
|
||||||
|
result.append(name)
|
||||||
|
else:
|
||||||
|
result += r
|
||||||
|
# for comparison we need the raw class
|
||||||
|
s = nscope.base if isinstance(nscope, er.Class) else nscope
|
||||||
|
# this means that a definition was found and is not e.g.
|
||||||
|
# in if/else.
|
||||||
|
if result and not no_break_scope:
|
||||||
|
if not name.parent or p == s:
|
||||||
|
break
|
||||||
|
break_scopes.append(p)
|
||||||
|
|
||||||
|
while flow_scope:
|
||||||
|
# TODO check if result is in scope -> no evaluation necessary
|
||||||
|
n = dynamic.check_flow_information(self._evaluator, flow_scope,
|
||||||
|
self.name_str, self.position)
|
||||||
|
if n:
|
||||||
|
result = n
|
||||||
|
break
|
||||||
|
|
||||||
|
if result:
|
||||||
|
break
|
||||||
|
if flow_scope == nscope:
|
||||||
|
break
|
||||||
|
flow_scope = flow_scope.parent
|
||||||
|
flow_scope = nscope
|
||||||
|
if result:
|
||||||
|
break
|
||||||
|
|
||||||
|
if not result and isinstance(nscope, er.Instance):
|
||||||
|
# __getattr__ / __getattribute__
|
||||||
|
result += self._check_getattr(nscope)
|
||||||
|
debug.dbg('sfn filter "%s" in (%s-%s): %s@%s'
|
||||||
|
% (self.name_str, self.scope, nscope, u(result), self.position))
|
||||||
|
return result
|
||||||
|
|
||||||
|
def find(self, scopes, resolve_decorator=True):
|
||||||
|
filtered = self.filter_name(scopes)
|
||||||
|
return self._descriptor_check(self._remove_statements(filtered,
|
||||||
|
resolve_decorator))
|
||||||
|
|
||||||
|
def _check_getattr(self, inst):
|
||||||
|
"""Checks for both __getattr__ and __getattribute__ methods"""
|
||||||
|
result = []
|
||||||
|
# str is important to lose the NamePart!
|
||||||
|
module = builtin.Builtin.scope
|
||||||
|
name = pr.String(module, "'%s'" % self.name_str, (0, 0), (0, 0), inst)
|
||||||
|
with common.ignored(KeyError):
|
||||||
|
result = inst.execute_subscope_by_name('__getattr__', [name])
|
||||||
|
if not result:
|
||||||
|
# this is a little bit special. `__getattribute__` is executed
|
||||||
|
# before anything else. But: I know no use case, where this
|
||||||
|
# could be practical and the jedi would return wrong types. If
|
||||||
|
# you ever have something, let me know!
|
||||||
|
with common.ignored(KeyError):
|
||||||
|
result = inst.execute_subscope_by_name('__getattribute__', [name])
|
||||||
|
return result
|
||||||
|
|
||||||
|
def scopes(self, search_global=False):
|
||||||
|
if search_global:
|
||||||
|
return self._evaluator.get_names_of_scope(self.scope, self.position)
|
||||||
|
else:
|
||||||
|
if isinstance(self.scope, er.Instance):
|
||||||
|
return self.scope.scope_generator()
|
||||||
|
else:
|
||||||
|
if isinstance(self.scope, (er.Class, pr.Module)):
|
||||||
|
# classes are only available directly via chaining?
|
||||||
|
# strange stuff...
|
||||||
|
names = self.scope.get_defined_names()
|
||||||
|
else:
|
||||||
|
names = _get_defined_names_for_position(self.scope, self.position)
|
||||||
|
return iter([(self.scope, names)])
|
||||||
|
|
||||||
|
|
||||||
|
def _get_defined_names_for_position(scope, position=None, start_scope=None):
|
||||||
|
"""
|
||||||
|
Return filtered version of ``scope.get_defined_names()``.
|
||||||
|
|
||||||
|
This function basically does what :meth:`scope.get_defined_names
|
||||||
|
<parsing_representation.Scope.get_defined_names>` does.
|
||||||
|
|
||||||
|
- If `position` is given, delete all names defined after `position`.
|
||||||
|
- For special objects like instances, `position` is ignored and all
|
||||||
|
names are returned.
|
||||||
|
|
||||||
|
:type scope: :class:`parsing_representation.IsScope`
|
||||||
|
:param scope: Scope in which names are searched.
|
||||||
|
:param position: The position as a line/column tuple, default is infinity.
|
||||||
|
"""
|
||||||
|
names = scope.get_defined_names()
|
||||||
|
# Instances have special rules, always return all the possible completions,
|
||||||
|
# because class variables are always valid and the `self.` variables, too.
|
||||||
|
if (not position or isinstance(scope, (iterable.Array, er.Instance))
|
||||||
|
or start_scope != scope
|
||||||
|
and isinstance(start_scope, (pr.Function, er.FunctionExecution))):
|
||||||
|
return names
|
||||||
|
names_new = []
|
||||||
|
for n in names:
|
||||||
|
if n.start_pos[0] is not None and n.start_pos < position:
|
||||||
|
names_new.append(n)
|
||||||
|
return names_new
|
||||||
Reference in New Issue
Block a user