]> source.dussan.org Git - sonarqube.git/blob
ea12670158bccadd4fe92964ed98877d9b6191b7
[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.ImmutableMap;
23 import java.util.Map;
24 import javax.annotation.CheckForNull;
25
26 import static com.google.common.base.Preconditions.checkArgument;
27 import static com.google.common.base.Preconditions.checkState;
28 import static java.util.Objects.requireNonNull;
29 import static org.sonar.server.computation.task.projectanalysis.component.ComponentVisitor.Order.POST_ORDER;
30
31 /**
32  * Holds the reference to the root of the {@link Component} tree for the current CE run.
33  */
34 public class TreeRootHolderImpl implements MutableTreeRootHolder {
35   @CheckForNull
36   private Map<Integer, Component> componentsByRef;
37
38   private Component root;
39
40   @Override
41   public MutableTreeRootHolder setRoot(Component root) {
42     checkState(this.root == null, "root can not be set twice in holder");
43     this.root = requireNonNull(root, "root can not be null");
44     return this;
45   }
46
47   @Override
48   public Component getRoot() {
49     checkInitialized();
50     return this.root;
51   }
52
53   @Override
54   public Component getComponentByRef(int ref) {
55     checkInitialized();
56     ensureComponentByRefIsPopulated();
57     Component component = componentsByRef.get(ref);
58     checkArgument(component != null, "Component with ref '%s' can't be found", ref);
59     return component;
60   }
61
62   private void ensureComponentByRefIsPopulated() {
63     if (componentsByRef != null) {
64       return;
65     }
66
67     final ImmutableMap.Builder<Integer, Component> builder = ImmutableMap.builder();
68     new DepthTraversalTypeAwareCrawler(
69       new TypeAwareVisitorAdapter(CrawlerDepthLimit.FILE, POST_ORDER) {
70         @Override
71         public void visitAny(Component component) {
72           builder.put(component.getReportAttributes().getRef(), component);
73         }
74       }).visit(this.root);
75     this.componentsByRef = builder.build();
76   }
77
78   private void checkInitialized() {
79     checkState(this.root != null, "Holder has not been initialized yet");
80   }
81 }