]> source.dussan.org Git - sonarqube.git/blob
02932ed07b2e4a99fd382eab5f33c85fa5b3c1ec
[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;
21
22 import com.google.common.base.Optional;
23 import java.util.HashMap;
24 import java.util.Map;
25 import java.util.Set;
26 import org.junit.rules.ExternalResource;
27 import org.sonar.server.computation.queue.CeTask;
28
29 import static com.google.common.base.Preconditions.checkState;
30 import static java.util.Objects.requireNonNull;
31
32 /**
33  * A {@link org.junit.Rule} that implements the {@link CeTaskProcessorRepository} interface and
34  * requires consumer to explicitly define if a specific Task type has an associated {@link CeTaskProcessor} or not.
35  */
36 public class CeTaskProcessorRepositoryRule extends ExternalResource implements CeTaskProcessorRepository {
37
38   private final Map<String, CeTaskProcessor> index = new HashMap<>();
39
40   @Override
41   protected void after() {
42     index.clear();
43   }
44
45   public CeTaskProcessorRepositoryRule setNoProcessorForTask(String taskType) {
46     index.put(requireNonNull(taskType), NoCeTaskProcessor.INSTANCE);
47     return this;
48   }
49
50   public CeTaskProcessorRepositoryRule setProcessorForTask(String taskType, CeTaskProcessor taskProcessor) {
51     index.put(requireNonNull(taskType), requireNonNull(taskProcessor));
52     return this;
53   }
54
55   @Override
56   public Optional<CeTaskProcessor> getForCeTask(CeTask ceTask) {
57     CeTaskProcessor taskProcessor = index.get(ceTask.getType());
58     checkState(taskProcessor != null, "CeTaskProcessor was not set in rule for task %s", ceTask);
59     return taskProcessor instanceof NoCeTaskProcessor ? Optional.<CeTaskProcessor>absent() : Optional.of(taskProcessor);
60   }
61
62   private enum NoCeTaskProcessor implements CeTaskProcessor {
63     INSTANCE;
64
65     private static final String UOE_MESSAGE = "NoCeTaskProcessor does not implement any method since it not supposed to be ever used";
66
67     @Override
68     public Set<String> getHandledCeTaskTypes() {
69       throw new UnsupportedOperationException(UOE_MESSAGE);
70     }
71
72     @Override
73     public void process(CeTask task) {
74       throw new UnsupportedOperationException(UOE_MESSAGE);
75     }
76   }
77 }