]> source.dussan.org Git - sonarqube.git/blob
b4700d501573817f088a54214c779834967fc56e
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2017 SonarSource SA
4  * mailto:info 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.projectanalysis.step;
21
22 import com.google.common.annotations.VisibleForTesting;
23 import java.util.List;
24 import org.apache.commons.lang.math.NumberUtils;
25 import org.sonar.db.DbClient;
26 import org.sonar.db.DbSession;
27 import org.sonar.db.measure.custom.CustomMeasureDto;
28 import org.sonar.server.computation.task.projectanalysis.component.Component;
29 import org.sonar.server.computation.task.projectanalysis.component.ComponentVisitor;
30 import org.sonar.server.computation.task.projectanalysis.component.CrawlerDepthLimit;
31 import org.sonar.server.computation.task.projectanalysis.component.DepthTraversalTypeAwareCrawler;
32 import org.sonar.server.computation.task.projectanalysis.component.TreeRootHolder;
33 import org.sonar.server.computation.task.projectanalysis.component.TypeAwareVisitorAdapter;
34 import org.sonar.server.computation.task.projectanalysis.measure.Measure;
35 import org.sonar.server.computation.task.projectanalysis.measure.MeasureRepository;
36 import org.sonar.server.computation.task.projectanalysis.metric.Metric;
37 import org.sonar.server.computation.task.projectanalysis.metric.MetricRepository;
38 import org.sonar.server.computation.task.step.ComputationStep;
39
40 public class CustomMeasuresCopyStep implements ComputationStep {
41
42   private final TreeRootHolder treeRootHolder;
43   private final DbClient dbClient;
44   private final MetricRepository metricRepository;
45   private final MeasureRepository measureRepository;
46
47   public CustomMeasuresCopyStep(TreeRootHolder treeRootHolder, DbClient dbClient,
48     MetricRepository metricRepository, MeasureRepository measureRepository) {
49     this.treeRootHolder = treeRootHolder;
50     this.dbClient = dbClient;
51     this.metricRepository = metricRepository;
52     this.measureRepository = measureRepository;
53   }
54
55   @Override
56   public void execute() {
57     new DepthTraversalTypeAwareCrawler(
58       new TypeAwareVisitorAdapter(CrawlerDepthLimit.LEAVES, ComponentVisitor.Order.PRE_ORDER) {
59         @Override
60         public void visitAny(Component component) {
61           copy(component);
62         }
63       }).visit(treeRootHolder.getRoot());
64   }
65
66   private void copy(Component component) {
67     for (CustomMeasureDto dto : loadCustomMeasures(component)) {
68       Metric metric = metricRepository.getById(dto.getMetricId());
69       // else metric is not found and an exception is raised
70       Measure measure = dtoToMeasure(dto, metric);
71       measureRepository.add(component, metric, measure);
72     }
73   }
74
75   private List<CustomMeasureDto> loadCustomMeasures(Component component) {
76     try (DbSession session = dbClient.openSession(false)) {
77       return dbClient.customMeasureDao().selectByComponentUuid(session, component.getUuid());
78     }
79   }
80
81   @VisibleForTesting
82   static Measure dtoToMeasure(CustomMeasureDto dto, Metric metric) {
83     switch (metric.getType()) {
84       case INT:
85       case RATING:
86         return Measure.newMeasureBuilder().create((int) dto.getValue());
87       case MILLISEC:
88       case WORK_DUR:
89         return Measure.newMeasureBuilder().create((long) dto.getValue());
90       case FLOAT:
91       case PERCENT:
92         return Measure.newMeasureBuilder().create(dto.getValue(), metric.getDecimalScale());
93       case BOOL:
94         return Measure.newMeasureBuilder().create(NumberUtils.compare(dto.getValue(), 1.0) == 0);
95       case LEVEL:
96         return Measure.newMeasureBuilder().create(Measure.Level.valueOf(dto.getTextValue()));
97       case STRING:
98       case DISTRIB:
99       case DATA:
100         return Measure.newMeasureBuilder().create(dto.getTextValue());
101       default:
102         throw new IllegalArgumentException(String.format("Custom measures do not support the metric type [%s]", metric.getType()));
103     }
104   }
105
106   @Override
107   public String getDescription() {
108     return "Copy custom measures";
109   }
110 }