]> source.dussan.org Git - sonarqube.git/blob
b9fbf9890251ce269d415c2f230917d351b95642
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 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.server.computation.task.projectanalysis.component;
21
22 import com.google.common.collect.ImmutableList;
23 import java.util.ArrayList;
24 import java.util.List;
25 import java.util.Objects;
26 import javax.annotation.CheckForNull;
27 import javax.annotation.Nullable;
28
29 import static com.google.common.base.Preconditions.checkArgument;
30 import static com.google.common.base.Preconditions.checkState;
31 import static java.util.Arrays.asList;
32 import static java.util.Objects.requireNonNull;
33
34 /**
35  * Implementation of {@link Component} to unit test views components.
36  */
37 public class ViewsComponent implements Component {
38   private final Type type;
39   private final String key;
40   private final String uuid;
41   private final String name;
42   private final String description;
43   private final List<Component> children;
44   private final ProjectViewAttributes projectViewAttributes;
45   private final SubViewAttributes subViewAttributes;
46   private final ViewAttributes viewAttributes;
47
48   private ViewsComponent(Type type, String key, @Nullable String uuid, @Nullable String name, @Nullable String description,
49     List<Component> children,
50     @Nullable ProjectViewAttributes projectViewAttributes, @Nullable SubViewAttributes subViewAttributes, @Nullable ViewAttributes viewAttributes) {
51     checkArgument(type.isViewsType(), "Component type must be a Views type");
52     this.type = type;
53     this.key = requireNonNull(key);
54     this.uuid = uuid;
55     this.name = name;
56     this.description = description;
57     this.children = ImmutableList.copyOf(children);
58     this.projectViewAttributes = projectViewAttributes;
59     this.subViewAttributes = subViewAttributes;
60     this.viewAttributes = viewAttributes;
61   }
62
63   public static Builder builder(Type type, String key) {
64     return new Builder(type, key);
65   }
66
67   public static Builder builder(Type type, int key) {
68     return new Builder(type, String.valueOf(key));
69   }
70
71   public static final class Builder {
72     private final Type type;
73     private final String key;
74     private String uuid;
75     private String name;
76     private String description;
77     private List<Component> children = new ArrayList<>();
78     private ProjectViewAttributes projectViewAttributes;
79     private SubViewAttributes subViewAttributes;
80     private ViewAttributes viewAttributes;
81
82     private Builder(Type type, String key) {
83       this.type = type;
84       this.key = key;
85     }
86
87     public Builder setUuid(@Nullable String uuid) {
88       this.uuid = uuid;
89       return this;
90     }
91
92     public Builder setName(@Nullable String name) {
93       this.name = name;
94       return this;
95     }
96
97     public Builder setDescription(String description) {
98       this.description = description;
99       return this;
100     }
101
102     public Builder setChildren(List<Component> children) {
103       this.children = children;
104       return this;
105     }
106
107     public Builder setProjectViewAttributes(@Nullable ProjectViewAttributes projectViewAttributes) {
108       this.projectViewAttributes = projectViewAttributes;
109       return this;
110     }
111
112     public Builder setSubViewAttributes(@Nullable SubViewAttributes subViewAttributes) {
113       this.subViewAttributes = subViewAttributes;
114       return this;
115     }
116
117     public Builder setViewAttributes(@Nullable ViewAttributes viewAttributes) {
118       this.viewAttributes = viewAttributes;
119       return this;
120     }
121
122     public Builder addChildren(Component... c) {
123       for (Component viewsComponent : c) {
124         checkArgument(viewsComponent.getType().isViewsType());
125       }
126       this.children.addAll(asList(c));
127       return this;
128     }
129
130     public ViewsComponent build() {
131       return new ViewsComponent(type, key, uuid, name, description, children, projectViewAttributes, subViewAttributes, viewAttributes);
132     }
133   }
134
135   @Override
136   public Type getType() {
137     return type;
138   }
139   
140   @Override
141   public Status getStatus() {
142     return Status.UNAVAILABLE;
143   }
144
145   @Override
146   public String getUuid() {
147     return uuid;
148   }
149
150   @Override
151   public String getKey() {
152     return key;
153   }
154
155   @Override
156   public String getName() {
157     checkState(this.name != null, "No name has been set");
158     return this.name;
159   }
160
161   @Override
162   @CheckForNull
163   public String getDescription() {
164     return this.description;
165   }
166
167   @Override
168   public List<Component> getChildren() {
169     return children;
170   }
171
172   @Override
173   public ReportAttributes getReportAttributes() {
174     throw new IllegalStateException("A component of type " + type + " does not have report attributes");
175   }
176
177   @Override
178   public FileAttributes getFileAttributes() {
179     throw new IllegalStateException("A component of type " + type + " does not have file attributes");
180   }
181
182   @Override
183   public ProjectViewAttributes getProjectViewAttributes() {
184     checkState(this.type != Type.PROJECT_VIEW || this.projectViewAttributes != null, "A ProjectViewAttribute object should have been set");
185     return this.projectViewAttributes;
186   }
187
188   @Override
189   public SubViewAttributes getSubViewAttributes() {
190     checkState(this.type != Type.SUBVIEW || this.subViewAttributes != null, "A SubViewAttributes object should have been set");
191     return this.subViewAttributes;
192   }
193
194   @Override
195   public ViewAttributes getViewAttributes() {
196     checkState(this.type != Type.VIEW || this.viewAttributes != null, "A ViewAttributes object should have been set");
197     return viewAttributes;
198   }
199
200   @Override
201   public String toString() {
202     return "ViewsComponent{" +
203       "type=" + type +
204       ", key='" + key + '\'' +
205       ", uuid='" + uuid + '\'' +
206       ", name='" + name + '\'' +
207       ", children=" + children +
208       ", projectViewAttributes=" + projectViewAttributes +
209       ", subViewAttributes=" + subViewAttributes +
210       ", viewAttributes=" + viewAttributes +
211       '}';
212   }
213
214   @Override
215   public boolean equals(@Nullable Object o) {
216     if (this == o) {
217       return true;
218     }
219     if (o == null || getClass() != o.getClass()) {
220       return false;
221     }
222     ViewsComponent that = (ViewsComponent) o;
223     return key.equals(that.key);
224   }
225
226   @Override
227   public int hashCode() {
228     return Objects.hash(key);
229   }
230 }