gpt4 book ai didi

android - 构造函数中注入(inject)次数的 lint 规则

转载 作者:行者123 更新时间:2023-11-29 19:04:46 25 4
gpt4 key购买 nike

我正在尝试在我的 Android 代码中创建一个 Lint 规则来检查构造函数中的注入(inject)次数,因此如果我超过某个 View 模型的特定次数,例如,我将发出 lint 警告。

我知道我必须在我的 Lint 检测器中实现 UastScanner,但我迷路了,因为我找不到好的文档。有没有其他人做过这样的事情?或者我在哪里可以找到关于它的良好说明?

谢谢!

最佳答案

* 注意 - 阅读已编辑解决方案的完整答案。 *

我能够像这样编写 UAST 转换:

public class NumberOfDependenciesInjectedDetector extends Detector implements Detector.UastScanner {

private static final int NUMBER_OF_INJECTIONS_ALLOWED = 5;
private static final Class<? extends Detector> DETECTOR = NumberOfDependenciesInjectedDetector.class;
private static final EnumSet<Scope> SCOPE = Scope.JAVA_FILE_SCOPE;
private static final Implementation IMPLEMENTATION = new Implementation(DETECTOR, SCOPE);

public static final Issue ISSUE = Issue.create(
"NumberOfDependenciesInjected",
"Limit number of injections in a class via constructor",
"A longer description here",
Category.CORRECTNESS,
10,
Severity.ERROR,
IMPLEMENTATION
);

@Override
public List<Class<? extends UElement>> getApplicableUastTypes() {
return Collections.<Class<? extends UElement>>singletonList(UClass.class);
}

@Override
public UElementHandler createUastHandler(JavaContext context) {
return new ConstructorVisitor(context);
}

private static class ConstructorVisitor extends UElementHandler {

private JavaContext javaContext;

private ConstructorVisitor(JavaContext javaContext) {
this.javaContext = javaContext;
}

@Override
public void visitClass(UClass clazz){
UMethod[] methods = clazz.getMethods();

for(UMethod method : methods){
if(!method.isConstructor()) continue;

if (method.getParameterList().getParametersCount() > NUMBER_OF_INJECTIONS_ALLOWED) {
javaContext.report(ISSUE, method, javaContext.getLocation(method), "Injections exceed allowed value of " + NUMBER_OF_INJECTIONS_ALLOWED);
}
}
}
}
}

但是,这似乎仍然没有提取 Kotlin 源文件……非常困惑。

编辑:12/19/17 - 已修复

问题有两个:

1) 确实有一个 Psi 方法的隐藏用法阻止了检查工作。 visitClass 方法不应使用 getParameterList(),而应使用 getUastParameters()。将上面的 visitclass 替换为:

@Override
public void visitClass(UClass clazz){
UMethod[] methods = clazz.getMethods();

for(UMethod method : methods){
if(!method.isConstructor()) continue;

if (method.getUastParameters().size() > NUMBER_OF_INJECTIONS_ALLOWED) {
javaContext.report(ISSUE, clazz, javaContext.getLocation(method), "Injections exceed allowed value of " + NUMBER_OF_INJECTIONS_ALLOWED);
}
}
}

2) 在 lint-dev 组直接与 Tor Norbye 交谈后,他指出 Android Studio 3.0 实际上 lint 不能在外部与 kotlin 一起工作,因此预计不会像这里描述的那样工作。升级到 Android Studio 3.1 Canary 并运行 linter 生成了预期的报告。

关于android - 构造函数中注入(inject)次数的 lint 规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47704372/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com