]> source.dussan.org Git - sonarqube.git/blob
0888b1d387978f851fef557fb488a208e5dfac0a
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2019 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.ce.task.projectanalysis.step;
21
22 import java.util.ArrayList;
23 import java.util.List;
24 import org.sonar.ce.task.projectanalysis.analysis.AnalysisMetadataHolder;
25 import org.sonar.ce.task.projectanalysis.batch.BatchReportReader;
26 import org.sonar.ce.task.step.ComputationStep;
27 import org.sonar.core.util.UuidFactory;
28 import org.sonar.db.DbClient;
29 import org.sonar.db.DbSession;
30 import org.sonar.db.component.AnalysisPropertyDto;
31
32 import static org.sonar.core.config.CorePropertyDefinitions.SONAR_ANALYSIS;
33
34 /**
35  * Persist analysis properties
36  * Only properties starting with "sonar.analysis" or "sonar.pullrequest" will be persisted in database
37  */
38 public class PersistAnalysisPropertiesStep implements ComputationStep {
39
40   private static final String SONAR_PULL_REQUEST = "sonar.pullrequest.";
41
42   private final DbClient dbClient;
43   private final AnalysisMetadataHolder analysisMetadataHolder;
44   private final BatchReportReader reportReader;
45   private final UuidFactory uuidFactory;
46
47   public PersistAnalysisPropertiesStep(DbClient dbClient, AnalysisMetadataHolder analysisMetadataHolder,
48     BatchReportReader reportReader, UuidFactory uuidFactory) {
49     this.dbClient = dbClient;
50     this.analysisMetadataHolder = analysisMetadataHolder;
51     this.reportReader = reportReader;
52     this.uuidFactory = uuidFactory;
53   }
54
55   @Override
56   public void execute(ComputationStep.Context context) {
57     final List<AnalysisPropertyDto> analysisPropertyDtos = new ArrayList<>();
58     reportReader.readContextProperties().forEachRemaining(
59       contextProperty -> {
60         String propertyKey = contextProperty.getKey();
61         if (propertyKey.startsWith(SONAR_ANALYSIS) || propertyKey.startsWith(SONAR_PULL_REQUEST)) {
62           analysisPropertyDtos.add(new AnalysisPropertyDto()
63             .setUuid(uuidFactory.create())
64             .setKey(propertyKey)
65             .setValue(contextProperty.getValue())
66             .setSnapshotUuid(analysisMetadataHolder.getUuid()));
67         }
68       });
69
70     if (analysisPropertyDtos.isEmpty()) {
71       return;
72     }
73
74     try (DbSession dbSession = dbClient.openSession(false)) {
75       dbClient.analysisPropertiesDao().insert(dbSession, analysisPropertyDtos);
76       dbSession.commit();
77     }
78   }
79
80   @Override
81   public String getDescription() {
82     return "Persist analysis properties";
83   }
84 }