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