]> source.dussan.org Git - sonarqube.git/blob
8179270bc0c4bdba016d10d59b0da21fcb14e54a
[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.component;
21
22 import com.google.common.collect.ImmutableList;
23 import java.util.ArrayList;
24 import java.util.List;
25 import javax.annotation.CheckForNull;
26 import javax.annotation.Nullable;
27 import javax.annotation.concurrent.Immutable;
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 import static org.apache.commons.lang.StringUtils.trimToNull;
34
35 @Immutable
36 public class ComponentImpl implements Component {
37   private final Type type;
38   private final String name;
39   private final String key;
40   private final String uuid;
41
42   @CheckForNull
43   private final String description;
44   private final List<Component> children;
45   @CheckForNull
46   private final ReportAttributes reportAttributes;
47   @CheckForNull
48   private final FileAttributes fileAttributes;
49
50   private ComponentImpl(Builder builder) {
51     this.type = builder.type;
52     this.key = builder.key;
53     this.name = builder.name;
54     this.description = builder.description;
55     this.uuid = builder.uuid;
56     this.reportAttributes = builder.reportAttributes;
57     this.fileAttributes = builder.fileAttributes;
58     this.children = ImmutableList.copyOf(builder.children);
59   }
60
61   @Override
62   public Type getType() {
63     return type;
64   }
65
66   @Override
67   public String getUuid() {
68     return uuid;
69   }
70
71   @Override
72   public String getKey() {
73     return key;
74   }
75
76   @Override
77   public String getName() {
78     return this.name;
79   }
80
81   @Override
82   @CheckForNull
83   public String getDescription() {
84     return this.description;
85   }
86
87   @Override
88   public List<Component> getChildren() {
89     return children;
90   }
91
92   @Override
93   public ReportAttributes getReportAttributes() {
94     return this.reportAttributes;
95   }
96
97   @Override
98   public FileAttributes getFileAttributes() {
99     checkState(this.type == Type.FILE, "Only component of type FILE have a FileAttributes object");
100     return this.fileAttributes;
101   }
102
103   @Override
104   public ProjectViewAttributes getProjectViewAttributes() {
105     throw new IllegalStateException("Only component of type PROJECT_VIEW have a FileAttributes object");
106   }
107
108   public static Builder builder(Type type) {
109     return new Builder(type);
110   }
111
112   public static final class Builder {
113
114     private static final String KEY_CANNOT_BE_NULL = "key can't be null";
115     private static final String UUID_CANNOT_BE_NULL = "uuid can't be null";
116     private static final String REPORT_ATTRIBUTES_CANNOT_BE_NULL = "reportAttributes can't be null";
117     private static final String NAME_CANNOT_BE_NULL = "name can't be null";
118
119     private final Type type;
120     private ReportAttributes reportAttributes;
121     private String uuid;
122     private String key;
123     private String name;
124     private String description;
125     private FileAttributes fileAttributes;
126     private final List<Component> children = new ArrayList<>();
127
128     private Builder(Type type){
129       this.type = requireNonNull(type, "type can't be null");
130     }
131
132     public Builder setReportAttributes(ReportAttributes reportAttributes) {
133       this.reportAttributes = requireNonNull(reportAttributes, REPORT_ATTRIBUTES_CANNOT_BE_NULL);
134       return this;
135     }
136
137     public Builder setUuid(String s) {
138       this.uuid = requireNonNull(s, UUID_CANNOT_BE_NULL);
139       return this;
140     }
141
142     public Builder setKey(String s) {
143       this.key = requireNonNull(s, KEY_CANNOT_BE_NULL);
144       return this;
145     }
146
147     public Builder setName(String name) {
148       this.name = requireNonNull(name, NAME_CANNOT_BE_NULL);
149       return this;
150     }
151
152     public Builder setDescription(@Nullable String description) {
153       this.description = trimToNull(description);
154       return this;
155     }
156
157     public Builder setFileAttributes(@Nullable  FileAttributes fileAttributes) {
158       this.fileAttributes = fileAttributes;
159       return this;
160     }
161
162     public Builder addChildren(Component... c) {
163       for (Component component : c) {
164         checkArgument(component.getType().isReportType());
165       }
166       this.children.addAll(asList(c));
167       return this;
168     }
169
170     public ComponentImpl build() {
171       requireNonNull(reportAttributes, REPORT_ATTRIBUTES_CANNOT_BE_NULL);
172       requireNonNull(uuid, UUID_CANNOT_BE_NULL);
173       requireNonNull(key, KEY_CANNOT_BE_NULL);
174       requireNonNull(name, NAME_CANNOT_BE_NULL);
175       return new ComponentImpl(this);
176     }
177   }
178
179   @Override
180   public String toString() {
181     return "ComponentImpl{" +
182       "key='" + key + '\'' +
183       ", type=" + type +
184       ", uuid='" + uuid + '\'' +
185       ", name='" + name + '\'' +
186       ", description='" + description + '\'' +
187       ", fileAttributes=" + fileAttributes +
188       ", reportAttributes=" + reportAttributes +
189       '}';
190   }
191
192   @Override
193   public boolean equals(@Nullable Object o) {
194     if (this == o) {
195       return true;
196     }
197     if (o == null || getClass() != o.getClass()) {
198       return false;
199     }
200     ComponentImpl component = (ComponentImpl) o;
201     return uuid.equals(component.uuid);
202   }
203
204   @Override
205   public int hashCode() {
206     return uuid.hashCode();
207   }
208 }