]> source.dussan.org Git - sonarqube.git/blob
8bb705871085435c98a3c8c43441b8287d66399a
[sonarqube.git] /
1 /*
2  * SonarQube, open source software quality management tool.
3  * Copyright (C) 2008-2014 SonarSource
4  * mailto:contact AT sonarsource DOT com
5  *
6  * SonarQube 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  * SonarQube 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.taskprocessor.report;
21
22 import java.util.Collections;
23 import java.util.Set;
24 import javax.annotation.CheckForNull;
25 import org.sonar.core.platform.ComponentContainer;
26 import org.sonar.db.ce.CeTaskTypes;
27 import org.sonar.server.computation.container.ComputeEngineContainer;
28 import org.sonar.server.computation.container.ContainerFactory;
29 import org.sonar.server.computation.queue.CeTask;
30 import org.sonar.server.computation.step.ComputationStepExecutor;
31 import org.sonar.server.computation.taskprocessor.CeTaskProcessor;
32 import org.sonar.server.devcockpit.DevCockpitBridge;
33
34 public class ReportTaskProcessor implements CeTaskProcessor {
35
36   private static final Set<String> HANDLED_TYPES = Collections.singleton(CeTaskTypes.REPORT);
37
38   private final ContainerFactory containerFactory;
39   private final ComponentContainer serverContainer;
40   @CheckForNull
41   private final DevCockpitBridge devCockpitBridge;
42
43   /**
44    * Used when Developer Cockpit plugin is installed
45    */
46   public ReportTaskProcessor(ContainerFactory containerFactory, ComponentContainer serverContainer, DevCockpitBridge devCockpitBridge) {
47     this.containerFactory = containerFactory;
48     this.serverContainer = serverContainer;
49     this.devCockpitBridge = devCockpitBridge;
50   }
51
52   /**
53    * Used when Developer Cockpit plugin is not installed
54    */
55   public ReportTaskProcessor(ContainerFactory containerFactory, ComponentContainer serverContainer) {
56     this.containerFactory = containerFactory;
57     this.serverContainer = serverContainer;
58     this.devCockpitBridge = null;
59   }
60
61   @Override
62   public Set<String> getHandledCeTaskTypes() {
63     return HANDLED_TYPES;
64   }
65
66   @Override
67   public void process(CeTask task) {
68     ComputeEngineContainer ceContainer = containerFactory.create(serverContainer, task, devCockpitBridge);
69     try {
70       ceContainer.getComponentByType(ComputationStepExecutor.class).execute();
71     } finally {
72       ceContainer.cleanup();
73     }
74   }
75 }