]> source.dussan.org Git - sonarqube.git/blob
7b0ad5f558da996d725e98b57df76e641735ff5f
[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.taskprocessor;
21
22 import com.google.common.base.Optional;
23 import org.sonar.api.utils.log.Logger;
24 import org.sonar.api.utils.log.Loggers;
25 import org.sonar.ce.log.CeLogging;
26 import org.sonar.ce.queue.CeTask;
27 import org.sonar.ce.queue.CeTaskResult;
28 import org.sonar.ce.taskprocessor.CeTaskProcessor;
29 import org.sonar.core.util.logs.Profiler;
30 import org.sonar.db.ce.CeActivityDto;
31 import org.sonar.server.computation.queue.InternalCeQueue;
32
33 import static java.lang.String.format;
34
35 public class CeWorkerCallableImpl implements CeWorkerCallable {
36
37   private static final Logger LOG = Loggers.get(CeWorkerCallableImpl.class);
38
39   private final InternalCeQueue queue;
40   private final CeLogging ceLogging;
41   private final CeTaskProcessorRepository taskProcessorRepository;
42
43   public CeWorkerCallableImpl(InternalCeQueue queue, CeLogging ceLogging, CeTaskProcessorRepository taskProcessorRepository) {
44     this.queue = queue;
45     this.ceLogging = ceLogging;
46     this.taskProcessorRepository = taskProcessorRepository;
47   }
48
49   @Override
50   public Boolean call() throws Exception {
51     Optional<CeTask> ceTask = tryAndFindTaskToExecute();
52     if (!ceTask.isPresent()) {
53       return false;
54     }
55
56     try {
57       executeTask(ceTask.get());
58     } catch (Exception e) {
59       LOG.error("An error occurred while managing task " + ceTask.get().getUuid(), e);
60     }
61     return true;
62   }
63
64   private Optional<CeTask> tryAndFindTaskToExecute() {
65     try {
66       return queue.peek();
67     } catch (Exception e) {
68       LOG.error("Failed to pop the queue of analysis reports", e);
69     }
70     return Optional.absent();
71   }
72
73   private void executeTask(CeTask task) {
74     ceLogging.initForTask(task);
75     Profiler ceProfiler = startActivityProfiler(task);
76
77     CeActivityDto.Status status = CeActivityDto.Status.FAILED;
78     CeTaskResult process = null;
79     try {
80       // TODO delegate the message to the related task processor, according to task type
81       Optional<CeTaskProcessor> taskProcessor = taskProcessorRepository.getForCeTask(task);
82       if (taskProcessor.isPresent()) {
83         process = taskProcessor.get().process(task);
84         status = CeActivityDto.Status.SUCCESS;
85       } else {
86         LOG.error("No CeTaskProcessor is defined for task of type {}. Plugin configuration may have changed", task.getType());
87         status = CeActivityDto.Status.FAILED;
88       }
89     } catch (Throwable e) {
90       LOG.error(format("Failed to execute task %s", task.getUuid()), e);
91     } finally {
92       queue.remove(task, status, process);
93       stopActivityProfiler(ceProfiler, task, status);
94       ceLogging.clearForTask();
95     }
96   }
97
98   private Profiler startActivityProfiler(CeTask task) {
99     Profiler profiler = Profiler.create(LOG);
100     addContext(profiler, task);
101     return ceLogging.logCeActivity(LOG, () -> profiler.startInfo("Execute task"));
102   }
103
104   private void stopActivityProfiler(Profiler profiler, CeTask task, CeActivityDto.Status status) {
105     addContext(profiler, task);
106     if (status == CeActivityDto.Status.FAILED) {
107       ceLogging.logCeActivity(LOG, () -> profiler.stopError("Executed task"));
108     } else {
109       ceLogging.logCeActivity(LOG, () -> profiler.stopInfo("Executed task"));
110     }
111   }
112
113   private static void addContext(Profiler profiler, CeTask task) {
114     profiler
115       .logTimeLast(true)
116       .addContext("project", task.getComponentKey())
117       .addContext("type", task.getType())
118       .addContext("id", task.getUuid());
119     String submitterLogin = task.getSubmitterLogin();
120     if (submitterLogin != null) {
121       profiler.addContext("submitter", submitterLogin);
122     }
123   }
124
125 }