]> source.dussan.org Git - sonarqube.git/blob
e18d97a589bd0a765e7c4db8ad4c752cf321c8c9
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2023 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.ce.task.projectexport.taskprocessor;
21
22 import java.util.Set;
23 import org.sonar.ce.task.CeTask;
24 import org.sonar.ce.task.CeTaskResult;
25 import org.sonar.ce.task.container.TaskContainer;
26 import org.sonar.ce.task.container.TaskContainerImpl;
27 import org.sonar.ce.task.projectexport.ProjectExportContainerPopulator;
28 import org.sonar.ce.task.projectexport.ProjectExportProcessor;
29 import org.sonar.ce.task.taskprocessor.CeTaskProcessor;
30 import org.sonar.core.platform.SpringComponentContainer;
31
32 import static org.sonar.db.ce.CeTaskTypes.PROJECT_EXPORT;
33
34 public class ProjectExportTaskProcessor implements CeTaskProcessor {
35
36   private final SpringComponentContainer componentContainer;
37
38   public ProjectExportTaskProcessor(SpringComponentContainer componentContainer) {
39     this.componentContainer = componentContainer;
40   }
41
42   @Override
43   public Set<String> getHandledCeTaskTypes() {
44     return Set.of(PROJECT_EXPORT);
45   }
46
47   @Override
48   public CeTaskResult process(CeTask task) {
49     processProjectExport(task);
50     return null;
51   }
52
53   private void processProjectExport(CeTask task) {
54     CeTask.Component exportComponent = mandatoryComponent(task, PROJECT_EXPORT);
55     ProjectDescriptor projectExportDescriptor = new ProjectDescriptor(task.getEntity().get().getUuid(),
56       mandatoryKey(exportComponent), mandatoryName(exportComponent));
57
58     try (TaskContainer taskContainer = new TaskContainerImpl(componentContainer,
59       new ProjectExportContainerPopulator(projectExportDescriptor))) {
60       taskContainer.bootup();
61       taskContainer.getComponentByType(ProjectExportProcessor.class).process();
62     }
63
64   }
65
66   private static CeTask.Component mandatoryComponent(CeTask task, String type) {
67     return task.getComponent().orElseThrow(() -> new IllegalStateException(String.format("Task with type %s must have a component", type)));
68   }
69
70   private static String mandatoryKey(CeTask.Component component) {
71     return component.getKey().orElseThrow(() -> new IllegalStateException("Task component must have a key"));
72   }
73
74   private static String mandatoryName(CeTask.Component component) {
75     return component.getName().orElseThrow(() -> new IllegalStateException("Task component must have a name"));
76   }
77 }