]> source.dussan.org Git - sonarqube.git/blob
bab325019b36d86989d06285caba4e904fd3209d
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2016 SonarSource SA
4  * mailto:contact 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.server.computation.task.projectanalysis.analysis;
21
22 import java.util.Date;
23 import java.util.Map;
24 import javax.annotation.CheckForNull;
25 import javax.annotation.Nullable;
26 import org.junit.rules.ExternalResource;
27 import org.sonar.server.computation.task.projectanalysis.qualityprofile.QualityProfile;
28 import org.sonar.server.computation.util.InitializedProperty;
29
30 import static com.google.common.base.Preconditions.checkNotNull;
31 import static com.google.common.base.Preconditions.checkState;
32
33 public class AnalysisMetadataHolderRule extends ExternalResource implements MutableAnalysisMetadataHolder {
34
35   private final InitializedProperty<String> uuid = new InitializedProperty<>();
36
37   private final InitializedProperty<Long> analysisDate = new InitializedProperty<>();
38
39   private final InitializedProperty<Analysis> baseProjectSnapshot = new InitializedProperty<>();
40
41   private final InitializedProperty<Boolean> crossProjectDuplicationEnabled = new InitializedProperty<>();
42
43   private final InitializedProperty<String> branch = new InitializedProperty<>();
44
45   private final InitializedProperty<Integer> rootComponentRef = new InitializedProperty<>();
46
47   private final InitializedProperty<Map<String, QualityProfile>> qProfilesPerLanguage = new InitializedProperty<>();
48
49   @Override
50   public String getUuid() {
51     checkState(uuid.isInitialized(), "Analysis UUID has not been set");
52     return this.uuid.getProperty();
53   }
54
55   @Override
56   public AnalysisMetadataHolderRule setUuid(String s) {
57     checkNotNull(s, "UUID must not be null");
58     this.uuid.setProperty(s);
59     return this;
60   }
61
62   public AnalysisMetadataHolderRule setAnalysisDate(Date date) {
63     checkNotNull(date, "Date must not be null");
64     this.analysisDate.setProperty(date.getTime());
65     return this;
66   }
67
68   @Override
69   public AnalysisMetadataHolderRule setAnalysisDate(long date) {
70     checkNotNull(date, "Date must not be null");
71     this.analysisDate.setProperty(date);
72     return this;
73   }
74
75   @Override
76   public long getAnalysisDate() {
77     checkState(analysisDate.isInitialized(), "Analysis date has not been set");
78     return this.analysisDate.getProperty();
79   }
80
81   @Override
82   public boolean isFirstAnalysis() {
83     return getBaseProjectSnapshot() == null;
84   }
85
86   @Override
87   public AnalysisMetadataHolderRule setBaseProjectSnapshot(@Nullable Analysis baseProjectAnalysis) {
88     this.baseProjectSnapshot.setProperty(baseProjectAnalysis);
89     return this;
90   }
91
92   @Override
93   @CheckForNull
94   public Analysis getBaseProjectSnapshot() {
95     checkState(baseProjectSnapshot.isInitialized(), "Base project snapshot has not been set");
96     return baseProjectSnapshot.getProperty();
97   }
98
99   @Override
100   public AnalysisMetadataHolderRule setCrossProjectDuplicationEnabled(boolean isCrossProjectDuplicationEnabled) {
101     this.crossProjectDuplicationEnabled.setProperty(isCrossProjectDuplicationEnabled);
102     return this;
103   }
104
105   @Override
106   public boolean isCrossProjectDuplicationEnabled() {
107     checkState(crossProjectDuplicationEnabled.isInitialized(), "Cross project duplication flag has not been set");
108     return crossProjectDuplicationEnabled.getProperty();
109   }
110
111   @Override
112   public AnalysisMetadataHolderRule setBranch(@Nullable String branch) {
113     this.branch.setProperty(branch);
114     return this;
115   }
116
117   @Override
118   public String getBranch() {
119     checkState(branch.isInitialized(), "Branch has not been set");
120     return branch.getProperty();
121   }
122
123   @Override
124   public AnalysisMetadataHolderRule setRootComponentRef(int rootComponentRef) {
125     this.rootComponentRef.setProperty(rootComponentRef);
126     return this;
127   }
128
129   @Override
130   public int getRootComponentRef() {
131     checkState(rootComponentRef.isInitialized(), "Root component ref has not been set");
132     return rootComponentRef.getProperty();
133   }
134
135   @Override
136   public AnalysisMetadataHolderRule setQProfilesByLanguage(Map<String, QualityProfile> qProfilesPerLanguage) {
137     this.qProfilesPerLanguage.setProperty(qProfilesPerLanguage);
138     return this;
139   }
140
141   @Override
142   public Map<String, QualityProfile> getQProfilesByLanguage() {
143     checkState(qProfilesPerLanguage.isInitialized(), "QProfile per language has not been set");
144     return qProfilesPerLanguage.getProperty();
145   }
146 }