]> source.dussan.org Git - sonarqube.git/blob
bdc66eae8dfe362dfc94380d83e9a7df10b932a7
[sonarqube.git] /
1 /*
2  * Sonar, open source software quality management tool.
3  * Copyright (C) 2008-2012 SonarSource
4  * mailto:contact AT sonarsource DOT com
5  *
6  * Sonar 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  * Sonar 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
17  * License along with Sonar; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
19  */
20 package org.sonar.plugins.core.sensors;
21
22 import com.google.common.collect.ImmutableList;
23 import org.sonar.api.batch.DecoratorContext;
24 import org.sonar.api.batch.DependsUpon;
25 import org.sonar.api.measures.CoreMetrics;
26 import org.sonar.api.measures.MeasureUtils;
27 import org.sonar.api.measures.Metric;
28
29 import java.util.List;
30
31 public final class AllTestsBranchCoverageDecorator extends AbstractCoverageDecorator {
32   @DependsUpon
33   public List<Metric> dependsUponMetrics() {
34     return ImmutableList.of(CoreMetrics.MERGED_UNCOVERED_CONDITIONS, CoreMetrics.MERGED_CONDITIONS_TO_COVER,
35         CoreMetrics.NEW_MERGED_UNCOVERED_CONDITIONS, CoreMetrics.NEW_MERGED_CONDITIONS_TO_COVER);
36   }
37
38   @Override
39   protected Metric getGeneratedMetric() {
40     return CoreMetrics.MERGED_BRANCH_COVERAGE;
41   }
42
43   @Override
44   protected Long countElements(DecoratorContext context) {
45     return MeasureUtils.getValueAsLong(context.getMeasure(CoreMetrics.MERGED_CONDITIONS_TO_COVER), 0L);
46   }
47
48   @Override
49   protected long countCoveredElements(DecoratorContext context) {
50     long uncoveredConditions = MeasureUtils.getValueAsLong(context.getMeasure(CoreMetrics.MERGED_UNCOVERED_CONDITIONS), 0L);
51     long conditions = MeasureUtils.getValueAsLong(context.getMeasure(CoreMetrics.MERGED_CONDITIONS_TO_COVER), 0L);
52
53     return conditions - uncoveredConditions;
54   }
55
56   @Override
57   protected Metric getGeneratedMetricForNewCode() {
58     return CoreMetrics.NEW_MERGED_BRANCH_COVERAGE;
59   }
60
61   @Override
62   protected Long countElementsForNewCode(DecoratorContext context, int periodIndex) {
63     return MeasureUtils.getVariationAsLong(context.getMeasure(CoreMetrics.NEW_MERGED_CONDITIONS_TO_COVER), periodIndex);
64   }
65
66   @Override
67   protected long countCoveredElementsForNewCode(DecoratorContext context, int periodIndex) {
68     long uncoveredConditions = MeasureUtils.getVariationAsLong(context.getMeasure(CoreMetrics.NEW_MERGED_UNCOVERED_CONDITIONS), periodIndex, 0L);
69     long conditions = MeasureUtils.getVariationAsLong(context.getMeasure(CoreMetrics.NEW_MERGED_CONDITIONS_TO_COVER), periodIndex, 0L);
70
71     return conditions - uncoveredConditions;
72   }
73 }