]> source.dussan.org Git - sonarqube.git/blob
27888a6f9be44dcc4d4a0d4129793f2a02b0837f
[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.container;
21
22 import java.util.List;
23 import org.picocontainer.ComponentAdapter;
24 import org.picocontainer.ComponentMonitor;
25 import org.picocontainer.DefaultPicoContainer;
26 import org.picocontainer.MutablePicoContainer;
27 import org.picocontainer.behaviors.OptInCaching;
28 import org.picocontainer.lifecycle.ReflectionLifecycleStrategy;
29 import org.picocontainer.monitors.NullComponentMonitor;
30 import org.sonar.api.config.PropertyDefinitions;
31 import org.sonar.api.utils.log.Loggers;
32 import org.sonar.core.platform.ComponentContainer;
33 import org.sonar.core.platform.ContainerPopulator;
34 import org.sonar.core.platform.Module;
35 import org.sonar.core.platform.StopSafeReflectionLifecycleStrategy;
36
37 import static java.util.Objects.requireNonNull;
38
39 public class TaskContainerImpl extends ComponentContainer implements TaskContainer {
40
41   public TaskContainerImpl(ComponentContainer parent, ContainerPopulator<TaskContainer> populator) {
42     super(createContainer(requireNonNull(parent)), parent.getComponentByType(PropertyDefinitions.class));
43
44     populateContainer(requireNonNull(populator));
45     startComponents();
46   }
47
48   private void populateContainer(ContainerPopulator<TaskContainer> populator) {
49     populator.populateContainer(this);
50     populateFromModules();
51   }
52
53   private void populateFromModules() {
54     List<Module> modules = getComponentsByType(Module.class);
55     for (Module module : modules) {
56       module.configure(this);
57     }
58   }
59
60   /**
61    * Creates a PicContainer which extends the specified ComponentContainer <strong>but is not referenced in return</strong>
62    * and lazily starts its components.
63    */
64   private static MutablePicoContainer createContainer(ComponentContainer parent) {
65     ComponentMonitor componentMonitor = new NullComponentMonitor();
66     ReflectionLifecycleStrategy lifecycleStrategy = new StopSafeReflectionLifecycleStrategy(componentMonitor) {
67       @Override
68       public boolean isLazy(ComponentAdapter<?> adapter) {
69         return adapter.getComponentImplementation().getAnnotation(EagerStart.class) == null;
70       }
71     };
72
73     return new DefaultPicoContainer(new OptInCaching(), lifecycleStrategy, parent.getPicoContainer(), componentMonitor);
74   }
75
76   @Override
77   public void cleanup() {
78     try {
79       stopComponents();
80     } catch (Throwable t) {
81       Loggers.get(TaskContainerImpl.class).error("Cleanup of container failed", t);
82     }
83   }
84
85   @Override
86   public String toString() {
87     return "TaskContainerImpl";
88   }
89 }