如何通过自定义规则检测FxCop中SPECIFIC方法的调用 - 在Check方法中放入什么

时间:2012-05-03 15:48:12

标签: c# .net visual-studio code-analysis fxcop

我想通过自定义FxCop规则禁止调用特定方法(MessageBox.Show)。我知道如何获得自定义实现的FxCop规则的机制(XML文件,继承自BaseIntrospectionRule等)我的问题是我在“检查”方法中的内容。

以下是基于在网络上进行了大量探索的初步草案,但我对于在 ?????标记的两个字段中实际填充的内容感到非常困惑。 在下面。

我不确定即使这个解决方案存在也会起作用。什么是傻瓜证明我正在做我想做的事 - 这是捕捉所有对MessageBox.Show的调用?

public override ProblemCollection Check(Member member)
{
    Method method = member as Method;
    if (method == null)
    {
        return null;
    }
    MetadataCollection<Instruction>.Enumerator enumerator = method.Instructions.GetEnumerator();
    while (enumerator.MoveNext())
    {
        Instruction current = enumerator.Current;
        switch (current.OpCode)
        {
            case OpCode.Call:
            case OpCode.Callvirt:
            {
                Method method3 = current.Value as Method;
                if (method3 == **?????**)
                {
                    Problem item = new Problem(base.GetResolution(**?????**), current);
                    base.Problems.Add(item);
                }
                break;
            }
        }
    }
    return base.Problems;
}

2 个答案:

答案 0 :(得分:1)

您可能想看看如何使用像Reflector这样的反编译器构建内置的SpecifyMessageBoxOptions规则。还有其他可能的方法,但名称比较通常很好,除非你有理由相信它会导致过多的误报。

答案 1 :(得分:1)

这样的事情怎么样?

   public override ProblemCollection Check(Member member)
    {
        Method method = member as Method;
        if (method != null) 
        {
            this.Visit(method.Body);
        }
        return this.Problems;
    }

    public override void VisitMethodCall(MethodCall call)
    {
        base.VisitMethodCall(call);
        Method targetMethod = (Method)((MemberBinding)call.Callee).BoundMember;
        if (targetMethod.Name.Name.Contains("MessageBox.Show"))
           this.Problems.Add(new Problem(this.GetResolution(), call));
    }