]> source.dussan.org Git - sonarqube.git/blob
0581d636b865bfae4e39bdeadcbee47ccd521186
[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 java.util.List;
23 import java.util.function.Function;
24 import java.util.stream.Collectors;
25 import javax.annotation.CheckForNull;
26 import javax.annotation.Nullable;
27 import org.sonar.db.component.SnapshotDto;
28 import org.sonar.scanner.protocol.output.ScannerReport;
29 import org.sonar.scanner.protocol.output.ScannerReport.Component.FileStatus;
30 import org.sonar.server.computation.task.projectanalysis.analysis.Project;
31
32 import static com.google.common.base.MoreObjects.firstNonNull;
33 import static com.google.common.base.Preconditions.checkArgument;
34 import static java.lang.String.format;
35 import static org.apache.commons.lang.StringUtils.trimToNull;
36
37 public class ComponentTreeBuilder {
38
39   private static final String DEFAULT_PROJECT_VERSION = "not provided";
40
41   private final ComponentKeyGenerator keyGenerator;
42   private final ComponentKeyGenerator publicKeyGenerator;
43   /**
44    * Will supply the UUID for any component in the tree, given it's key.
45    * <p>
46    * The String argument of the {@link Function#apply(Object)} method is the component's key.
47    * </p>
48    */
49   private final Function<String, String> uuidSupplier;
50
51   /**
52    * Will supply the {@link ScannerReport.Component} of all the components in the component tree as we crawl it from the
53    * root.
54    * <p>
55    * The Integer argument of the {@link Function#apply(Object)} method is the component's ref.
56    * </p>
57    */
58   private final Function<Integer, ScannerReport.Component> scannerComponentSupplier;
59
60   private final Project project;
61
62   @Nullable
63   private final SnapshotDto baseAnalysis;
64
65   public ComponentTreeBuilder(
66     ComponentKeyGenerator keyGenerator,
67     ComponentKeyGenerator publicKeyGenerator,
68     Function<String, String> uuidSupplier,
69     Function<Integer, ScannerReport.Component> scannerComponentSupplier,
70     Project project,
71     @Nullable SnapshotDto baseAnalysis) {
72
73     this.keyGenerator = keyGenerator;
74     this.publicKeyGenerator = publicKeyGenerator;
75     this.uuidSupplier = uuidSupplier;
76     this.scannerComponentSupplier = scannerComponentSupplier;
77     this.project = project;
78     this.baseAnalysis = baseAnalysis;
79   }
80
81   public Component buildProject(ScannerReport.Component project) {
82     return buildComponent(project, project);
83   }
84
85   private List<Component> buildChildren(ScannerReport.Component component, ScannerReport.Component parentModule) {
86     return component.getChildRefList()
87       .stream()
88       .map(scannerComponentSupplier::apply)
89       .map(c -> buildComponent(c, parentModule))
90       .collect(Collectors.toList());
91   }
92
93   private ComponentImpl buildComponent(ScannerReport.Component component, ScannerReport.Component closestModule) {
94     switch (component.getType()) {
95       case PROJECT:
96         String projectKey = keyGenerator.generateKey(component, null);
97         String uuid = uuidSupplier.apply(projectKey);
98         String projectPublicKey = publicKeyGenerator.generateKey(component, null);
99         return ComponentImpl.builder(Component.Type.PROJECT)
100           .setUuid(uuid)
101           .setKey(projectKey)
102           .setPublicKey(projectPublicKey)
103           .setName(nameOfProject(component))
104           .setStatus(convertStatus(component.getStatus()))
105           .setDescription(trimToNull(component.getDescription()))
106           .setReportAttributes(createAttributesBuilder(component)
107             .setVersion(createProjectVersion(component))
108             .build())
109           .addChildren(buildChildren(component, component))
110           .build();
111
112       case MODULE:
113         String moduleKey = keyGenerator.generateKey(component, null);
114         String modulePublicKey = publicKeyGenerator.generateKey(component, null);
115         return ComponentImpl.builder(Component.Type.MODULE)
116           .setUuid(uuidSupplier.apply(moduleKey))
117           .setKey(moduleKey)
118           .setPublicKey(modulePublicKey)
119           .setName(nameOfOthers(component, modulePublicKey))
120           .setStatus(convertStatus(component.getStatus()))
121           .setDescription(trimToNull(component.getDescription()))
122           .setReportAttributes(createAttributesBuilder(component).build())
123           .addChildren(buildChildren(component, component))
124           .build();
125
126       case DIRECTORY:
127       case FILE:
128         String key = keyGenerator.generateKey(closestModule, component);
129         String publicKey = publicKeyGenerator.generateKey(closestModule, component);
130         return ComponentImpl.builder(convertDirOrFileType(component.getType()))
131           .setUuid(uuidSupplier.apply(key))
132           .setKey(key)
133           .setPublicKey(publicKey)
134           .setName(nameOfOthers(component, publicKey))
135           .setStatus(convertStatus(component.getStatus()))
136           .setDescription(trimToNull(component.getDescription()))
137           .setReportAttributes(createAttributesBuilder(component).build())
138           .setFileAttributes(createFileAttributes(component))
139           .addChildren(buildChildren(component, closestModule))
140           .build();
141
142       default:
143         throw new IllegalArgumentException(format("Unsupported component type '%s'", component.getType()));
144     }
145   }
146
147   private static Component.Status convertStatus(FileStatus status) {
148     switch(status) {
149       case ADDED:
150         return Component.Status.ADDED;
151       case SAME:
152         return Component.Status.SAME;
153       case CHANGED:
154         return Component.Status.CHANGED;
155       case UNAVAILABLE:
156         return Component.Status.UNAVAILABLE;
157       case UNRECOGNIZED:
158       default:
159         throw new IllegalArgumentException("Unsupported ComponentType value " + status);
160     }
161   }
162
163   private String nameOfProject(ScannerReport.Component component) {
164     String name = trimToNull(component.getName());
165     if (name != null) {
166       return name;
167     }
168     return project.getName();
169   }
170
171   private static String nameOfOthers(ScannerReport.Component reportComponent, String defaultName) {
172     String name = trimToNull(reportComponent.getName());
173     return name == null ? defaultName : name;
174   }
175
176   private String createProjectVersion(ScannerReport.Component component) {
177     String version = trimToNull(component.getVersion());
178     if (version != null) {
179       return version;
180     }
181     if (baseAnalysis != null) {
182       return firstNonNull(baseAnalysis.getVersion(), DEFAULT_PROJECT_VERSION);
183     }
184     return DEFAULT_PROJECT_VERSION;
185   }
186
187   private static ReportAttributes.Builder createAttributesBuilder(ScannerReport.Component component) {
188     return ReportAttributes.newBuilder(component.getRef())
189       .setVersion(trimToNull(component.getVersion()))
190       .setPath(trimToNull(component.getPath()));
191   }
192
193   @CheckForNull
194   private static FileAttributes createFileAttributes(ScannerReport.Component component) {
195     if (component.getType() != ScannerReport.Component.ComponentType.FILE) {
196       return null;
197     }
198
199     checkArgument(component.getLines() > 0, "File '%s' has no line", component.getPath());
200     return new FileAttributes(
201       component.getIsTest(),
202       trimToNull(component.getLanguage()),
203       component.getLines());
204   }
205
206   private static Component.Type convertDirOrFileType(ScannerReport.Component.ComponentType type) {
207     switch (type) {
208       case DIRECTORY:
209         return Component.Type.DIRECTORY;
210       case FILE:
211         return Component.Type.FILE;
212       default:
213         throw new IllegalArgumentException("Unsupported ComponentType value " + type);
214     }
215   }
216 }