给出了一个包含某些模块的python软件包,我想查找该软件包中定义的方法和函数的所有用法,我在考虑像pycharms find usages这样的东西,在其中给定了函数或方法显示了调用此方法/函数的所有行。
让我的软件包中保留许多模块,我想寻找module_x
中定义的函数和方法的用法。
使用inspect
和dir
,我可以找到module_x
import inspect
callables = [method_name for method_name in dir(module)
if callable(getattr(module, method_name))]
module_inspected = inspect.getmodule(module)
module_file = module_inspected.__file__
module_x_callables = []
for name, member in inspect.getmembers(module):
# to see if the definitions are defined/imported in the member_file that we are looking
if name in callables:
module_x_callables.append(member)
member_file = inspect.getmodule(member).__file__
# print('{}: {},{}'.format(name, member, callable(member)))
print('{}'.format(name))
print('{}'.format(member))
# print('parent: {}'.format(inspect.getmodule(member)))
print('member_file: {}'.format(member_file))
if member_file == module_file:
source, line_no = inspect.findsource(member)
print(line_no)
print('\n')
注意:我这样说,类内的方法不会被这种方法捕获,但是没关系。假设我想查找module_x
中定义的函数的所有用法。
我的问题是:如何扫描程序包中的其他模块,查看它们是否正在使用module_x
中的任何def,如果是,则返回行号。
我尝试使用ast
,在树上行走并尝试找到所有ast.Call
。实际上,这会重拨所有电话,但我不知道如何检查此返回是否在module_x
中定义。甚至,我还在考虑使用正则表达式,但是例如可以在两个不同的模块中使用名为test_func
的函数。使用这种方法,我怎么知道我要打给谁?
string_code = open(file,'r').read()
tree = ast.parse(string_code)
for node in ast.walk(tree):
#print(node)
if isinstance(node, ast.Call):
print('call')
print(ast.dump(node))
print(inspect.getmodule(node))
print(func.value)
print(func.attr)
print('\n')
因此,最后,我的问题是:如何浏览文件或模块,并找到module_x
中定义的所有用法以及函数和方法的行数。
谢谢;)
答案 0 :(得分:1)
您只需要关心实际导入到当前正在检查的模块中的名称。请注意,这里的并发症很少:
import foo
模块中的bar
使bar.foo
可以从外部使用。因此from bar import foo
与import foo
确实是同一回事。任何对象都可以存储在列表,元组中,成为另一个对象的属性,存储在字典中,分配给备用名称并可以动态引用。例如。存储在列表中的导入属性,由索引引用:
import foo
spam = [foo.bar]
spam[0]()
调用foo.bar
对象。可以通过AST分析来跟踪其中的某些用途,但是Python是一种高度动态的语言,您很快就会遇到限制。例如,您无法肯定spam[0] = random.choice([foo.bar, foo.baz])
会产生什么。
使用global
和nonlocal
语句,嵌套函数作用域可以更改父作用域中的名称。像这样的人为功能:
def bar():
global foo
import foo
将导入模块foo
并将其添加到全局名称空间,但仅在调用bar()
时才可以。跟踪这很困难,因为您需要跟踪实际调用bar()
的时间。这甚至可能发生在当前模块(import weirdmodule; weirdmodule.bar()
)之外。
如果您忽略了这些复杂性,仅关注import
语句中使用的名称,则需要跟踪Import
和ImportFrom
节点,并跟踪作用域(因此您知道本地名称是否掩盖全局名称,或者是否将导入的名称导入本地范围)。然后,您寻找引用导入名称的Name(..., Load)
节点。
我之前已经介绍了跟踪范围,请参见Getting all the nodes from Python AST that correspond to a particular variable with a given name。对于此操作,我们可以将其简化为一堆字典(封装在collections.ChainMap()
instance中),并添加导入:
import ast
from collections import ChainMap
from types import MappingProxyType as readonlydict
class ModuleUseCollector(ast.NodeVisitor):
def __init__(self, modulename, package=''):
self.modulename = modulename
# used to resolve from ... import ... references
self.package = package
self.modulepackage, _, self.modulestem = modulename.rpartition('.')
# track scope namespaces, with a mapping of imported names (bound name to original)
# If a name references None it is used for a different purpose in that scope
# and so masks a name in the global namespace.
self.scopes = ChainMap()
self.used_at = [] # list of (name, alias, line) entries
def visit_FunctionDef(self, node):
self.scopes = self.scopes.new_child()
self.generic_visit(node)
self.scopes = self.scopes.parents
def visit_Lambda(self, node):
# lambdas are just functions, albeit with no statements
self.visit_Function(node)
def visit_ClassDef(self, node):
# class scope is a special local scope that is re-purposed to form
# the class attributes. By using a read-only dict proxy here this code
# we can expect an exception when a class body contains an import
# statement or uses names that'd mask an imported name.
self.scopes = self.scopes.new_child(readonlydict({}))
self.generic_visit(node)
self.scopes = self.scopes.parents
def visit_Import(self, node):
self.scopes.update({
a.asname or a.name: a.name
for a in node.names
if a.name == self.modulename
})
def visit_ImportFrom(self, node):
# resolve relative imports; from . import <name>, from ..<name> import <name>
source = node.module # can be None
if node.level:
package = self.package
if node.level > 1:
# go up levels as needed
package = '.'.join(self.package.split('.')[:-(node.level - 1)])
source = f'{package}.{source}' if source else package
if self.modulename == source:
# names imported from our target module
self.scopes.update({
a.asname or a.name: f'{self.modulename}.{a.name}'
for a in node.names
})
elif self.modulepackage and self.modulepackage == source:
# from package import module import, where package.module is what we want
self.scopes.update({
a.asname or a.name: self.modulename
for a in node.names
if a.name == self.modulestem
})
def visit_Name(self, node):
if not isinstance(node.ctx, ast.Load):
# store or del operation, must the name is masked in the current scope
try:
self.scopes[node.id] = None
except TypeError:
# class scope, which we made read-only. These names can't mask
# anything so just ignore these.
pass
return
# find scope this name was defined in, starting at the current scope
imported_name = self.scopes.get(node.id)
if imported_name is None:
return
self.used_at.append((imported_name, node.id, node.lineno))
现在,给定模块名称foo.bar
和foo
包中某个模块的以下源代码文件:
from .bar import name1 as namealias1
from foo import bar as modalias1
def loremipsum(dolor):
return namealias1(dolor)
def sitamet():
from foo.bar import consectetur
modalias1 = 'something else'
consectetur(modalias1)
class Adipiscing:
def elit_nam(self):
return modalias1.name2(self)
您可以解析以上内容,并使用以下命令提取所有foo.bar
引用:
>>> collector = ModuleUseCollector('foo.bar', 'foo')
>>> collector.visit(ast.parse(source))
>>> for name, alias, line in collector.used_at:
... print(f'{name} ({alias}) used on line {line}')
...
foo.bar.name1 (namealias1) used on line 5
foo.bar.consectetur (consectetur) used on line 11
foo.bar (modalias1) used on line 15
请注意,modalias1
范围内的sitamet
名称不会被视为对导入模块的实际引用,因为它已被用作本地名称。