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