]> source.dussan.org Git - sonarqube.git/blob
0d16aa179d59de3abf5984e64be38fbb66348e8e
[sonarqube.git] /
1 /*
2  * SonarQube, open source software quality management tool.
3  * Copyright (C) 2008-2013 SonarSource
4  * mailto:contact AT sonarsource DOT com
5  *
6  * SonarQube is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * SonarQube is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.plugins.core.issue;
21
22 import org.sonar.api.batch.*;
23 import org.sonar.api.component.ResourcePerspectives;
24 import org.sonar.api.issue.Issuable;
25 import org.sonar.api.issue.Issue;
26 import org.sonar.api.measures.CoreMetrics;
27 import org.sonar.api.measures.MeasureUtils;
28 import org.sonar.api.measures.Metric;
29 import org.sonar.api.resources.Project;
30 import org.sonar.api.resources.Resource;
31
32 /**
33  * Computes the number of false-positives
34  *
35  * @since 3.6
36  */
37 @DependsUpon(DecoratorBarriers.END_OF_VIOLATION_TRACKING)
38 public class CountFalsePositivesDecorator implements Decorator {
39
40   private final ResourcePerspectives perspectives;
41
42   public CountFalsePositivesDecorator(ResourcePerspectives perspectives) {
43     this.perspectives = perspectives;
44   }
45
46   public boolean shouldExecuteOnProject(Project project) {
47     return true;
48   }
49
50   @DependedUpon
51   public Metric generatesFalsePositiveMeasure() {
52     return CoreMetrics.FALSE_POSITIVE_ISSUES;
53   }
54
55   public void decorate(Resource resource, DecoratorContext context) {
56     Issuable issuable = perspectives.as(Issuable.class, resource);
57     if (issuable != null) {
58       int falsePositives = 0;
59       for (Issue issue : issuable.issues()) {
60         if (Issue.RESOLUTION_FALSE_POSITIVE.equals(issue.resolution())) {
61           falsePositives++;
62         }
63       }
64       saveMeasure(context, CoreMetrics.FALSE_POSITIVE_ISSUES, falsePositives);
65     }
66   }
67
68   private void saveMeasure(DecoratorContext context, Metric metric, int value) {
69     context.saveMeasure(metric, (double) (value + sumChildren(context, metric)));
70   }
71
72   private int sumChildren(DecoratorContext context, Metric metric) {
73     return MeasureUtils.sum(true, context.getChildrenMeasures(metric)).intValue();
74   }
75
76   @Override
77   public String toString() {
78     return getClass().getSimpleName();
79   }
80 }