]> source.dussan.org Git - sonarqube.git/blob
854dc1013fe4e735286bcc0b3311b1ada76e3691
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2016 SonarSource SA
4  * mailto:contact 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.step;
21
22 import javax.annotation.CheckForNull;
23 import javax.annotation.Nullable;
24 import org.sonar.api.utils.log.Logger;
25 import org.sonar.api.utils.log.Loggers;
26 import org.sonar.core.util.logs.Profiler;
27
28 public final class ComputationStepExecutor {
29   private static final Logger LOGGER = Loggers.get(ComputationStepExecutor.class);
30
31   private final ComputationSteps steps;
32   @CheckForNull
33   private final Listener listener;
34
35   /**
36    * Used when no {@link ComputationStepExecutor.Listener} is available in pico
37    * container.
38    */
39   public ComputationStepExecutor(ComputationSteps steps) {
40     this(steps, null);
41   }
42
43   public ComputationStepExecutor(ComputationSteps steps, @Nullable Listener listener) {
44     this.steps = steps;
45     this.listener = listener;
46   }
47
48   public void execute() {
49     Profiler stepProfiler = Profiler.create(LOGGER);
50     boolean allStepsExecuted = false;
51     try {
52       executeSteps(stepProfiler);
53       allStepsExecuted = true;
54     } finally {
55       if (listener != null) {
56         listener.finished(allStepsExecuted);
57       }
58     }
59   }
60
61   private void executeSteps(Profiler stepProfiler) {
62     for (ComputationStep step : steps.instances()) {
63       stepProfiler.start();
64       step.execute();
65       stepProfiler.stopDebug(step.getDescription());
66     }
67   }
68
69   @FunctionalInterface
70   public interface Listener {
71     void finished(boolean allStepsExecuted);
72   }
73 }