]> source.dussan.org Git - sonarqube.git/blob
ae1e53d72472c6cfa7ccbf2f7d7116b5e733dd2e
[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 LongSumCounter implements SumCounter<Long, LongSumCounter> {
34
35   private final String metricKey;
36   @CheckForNull
37   private final Long defaultInputValue;
38
39   private long value = 0;
40   private boolean initialized = false;
41
42   public LongSumCounter(String metricKey) {
43     this(metricKey, null);
44   }
45
46   public LongSumCounter(String metricKey, @Nullable Long defaultInputValue) {
47     this.metricKey = requireNonNull(metricKey, "metricKey can not be null");
48     this.defaultInputValue = defaultInputValue;
49   }
50
51   @Override
52   public void aggregate(LongSumCounter 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().getLongValue());
63     } else if (defaultInputValue != null) {
64       addValue(defaultInputValue);
65     }
66   }
67
68   private void addValue(long newValue) {
69     initialized = true;
70     value += newValue;
71   }
72
73   @Override
74   public Optional<Long> getValue() {
75     if (initialized) {
76       return Optional.of(value);
77     }
78     return Optional.empty();
79   }
80 }