]> source.dussan.org Git - sonarqube.git/blob
8ee946eb63bb4035c6fd4a499a6ca31ac949251e
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2019 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.qualitygate;
21
22 import com.google.common.base.MoreObjects;
23 import javax.annotation.CheckForNull;
24 import javax.annotation.Nullable;
25 import javax.annotation.concurrent.Immutable;
26 import org.sonar.ce.task.projectanalysis.metric.Metric;
27
28 import static java.util.Objects.hash;
29 import static java.util.Objects.requireNonNull;
30
31 @Immutable
32 public class Condition {
33
34   public enum Operator {
35     EQUALS("EQ"), NOT_EQUALS("NE"), GREATER_THAN("GT"), LESS_THAN("LT");
36
37     private final String dbValue;
38
39     Operator(String dbValue) {
40       this.dbValue = dbValue;
41     }
42
43     public String getDbValue() {
44       return dbValue;
45     }
46   }
47
48   private final Metric metric;
49   private final Operator operator;
50   @CheckForNull
51   private final String warningThreshold;
52   @CheckForNull
53   private final String errorThreshold;
54   private final boolean useVariation;
55
56   public Condition(Metric metric, String operator,
57     @Nullable String errorThreshold, @Nullable String warningThreshold) {
58     this.metric = requireNonNull(metric);
59     this.operator = parseFromDbValue(requireNonNull(operator));
60     this.useVariation = metric.getKey().startsWith("new_");
61     this.errorThreshold = errorThreshold;
62     this.warningThreshold = warningThreshold;
63   }
64
65   private static Operator parseFromDbValue(String str) {
66     for (Operator operator : Operator.values()) {
67       if (operator.dbValue.equals(str)) {
68         return operator;
69       }
70     }
71     throw new IllegalArgumentException(String.format("Unsupported operator value: '%s'", str));
72   }
73
74   public Metric getMetric() {
75     return metric;
76   }
77
78   public boolean useVariation() {
79     return useVariation;
80   }
81
82   public Operator getOperator() {
83     return operator;
84   }
85
86   @CheckForNull
87   public String getWarningThreshold() {
88     return warningThreshold;
89   }
90
91   @CheckForNull
92   public String getErrorThreshold() {
93     return errorThreshold;
94   }
95
96   @Override
97   public boolean equals(@Nullable Object o) {
98     if (this == o) {
99       return true;
100     }
101     if (o == null || getClass() != o.getClass()) {
102       return false;
103     }
104     Condition that = (Condition) o;
105     return java.util.Objects.equals(metric, that.metric);
106   }
107
108   @Override
109   public int hashCode() {
110     return hash(metric);
111   }
112
113   @Override
114   public String toString() {
115     return MoreObjects.toStringHelper(this)
116       .add("metric", metric)
117       .add("operator", operator)
118       .add("warningThreshold", warningThreshold)
119       .add("errorThreshold", errorThreshold)
120       .toString();
121   }
122 }