]> source.dussan.org Git - sonarqube.git/blob
ed2ee7a06beaa0fa1e2e115c12548fe26db51033
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2023 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.projectexport.steps;
21
22 import com.sonarsource.governance.projectdump.protobuf.ProjectDump;
23 import java.util.List;
24 import org.slf4j.LoggerFactory;
25 import org.sonar.ce.task.step.ComputationStep;
26 import org.sonar.db.DbClient;
27 import org.sonar.db.DbSession;
28 import org.sonar.db.newcodeperiod.NewCodePeriodDto;
29 import org.sonar.db.project.ProjectExportMapper;
30
31 import static java.lang.String.format;
32
33 public class ExportNewCodePeriodsStep implements ComputationStep {
34
35   private final DbClient dbClient;
36   private final ProjectHolder projectHolder;
37   private final DumpWriter dumpWriter;
38
39   public ExportNewCodePeriodsStep(DbClient dbClient, ProjectHolder projectHolder, DumpWriter dumpWriter) {
40     this.dbClient = dbClient;
41     this.projectHolder = projectHolder;
42     this.dumpWriter = dumpWriter;
43   }
44
45   @Override
46   public void execute(Context context) {
47     long count = 0L;
48     try (
49       StreamWriter<ProjectDump.NewCodePeriod> output = dumpWriter.newStreamWriter(DumpElement.NEW_CODE_PERIODS);
50       DbSession dbSession = dbClient.openSession(false)) {
51
52       final ProjectDump.NewCodePeriod.Builder builder = ProjectDump.NewCodePeriod.newBuilder();
53       final List<NewCodePeriodDto> newCodePeriods = dbSession.getMapper(ProjectExportMapper.class)
54         .selectNewCodePeriodsForExport(projectHolder.projectDto().getUuid());
55       for (NewCodePeriodDto newCodePeriod : newCodePeriods) {
56         builder.clear()
57           .setUuid(newCodePeriod.getUuid())
58           .setProjectUuid(newCodePeriod.getProjectUuid())
59           .setType(newCodePeriod.getType().name());
60
61         if (newCodePeriod.getBranchUuid() != null) {
62           builder.setBranchUuid(newCodePeriod.getBranchUuid());
63         }
64
65         if (newCodePeriod.getValue() != null) {
66           builder.setValue(newCodePeriod.getValue());
67         }
68         output.write(builder.build());
69         ++count;
70       }
71
72       LoggerFactory.getLogger(getClass()).debug("{} new code periods exported", count);
73     } catch (Exception e) {
74       throw new IllegalStateException(format("New Code Periods Export failed after processing %d new code periods successfully", count), e);
75     }
76   }
77
78   @Override
79   public String getDescription() {
80     return "Export new code periods";
81   }
82 }