]> source.dussan.org Git - sonarqube.git/blob
e552b052b853d0cfd0257b32032d2fbcb4f33257
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2024 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program 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  * This program 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.ce.task.projectanalysis.formula.counter;
21
22 import java.util.Optional;
23 import javax.annotation.CheckForNull;
24 import javax.annotation.Nullable;
25 import org.sonar.ce.task.projectanalysis.formula.CounterInitializationContext;
26 import org.sonar.ce.task.projectanalysis.measure.Measure;
27
28 import static java.util.Objects.requireNonNull;
29
30 /**
31  * Simple counter that do the sum of an integer measure
32  */
33 public class IntSumCounter implements SumCounter<Integer, IntSumCounter> {
34
35   private final String metricKey;
36   @CheckForNull
37   private final Integer defaultInputValue;
38
39   private int value = 0;
40   private boolean initialized = false;
41
42   public IntSumCounter(String metricKey) {
43     this(metricKey, null);
44   }
45
46   public IntSumCounter(String metricKey, @Nullable Integer defaultInputValue) {
47     this.metricKey = requireNonNull(metricKey, "metricKey can not be null");
48     this.defaultInputValue = defaultInputValue;
49   }
50
51   @Override
52   public void aggregate(IntSumCounter counter) {
53     if (counter.getValue().isPresent()) {
54       addValue(counter.getValue().get());
55     }
56   }
57
58   @Override
59   public void initialize(CounterInitializationContext context) {
60     Optional<Measure> measureOptional = context.getMeasure(metricKey);
61     if (measureOptional.isPresent()) {
62       addValue(measureOptional.get().getIntValue());
63     } else if (defaultInputValue != null) {
64       addValue(defaultInputValue);
65     }
66   }
67
68   private void addValue(int newValue) {
69     initialized = true;
70     value += newValue;
71   }
72
73   @Override
74   public Optional<Integer> getValue() {
75     if (initialized) {
76       return Optional.of(value);
77     }
78     return Optional.empty();
79   }
80 }