3 * Copyright (C) 2009-2023 SonarSource SA
4 * mailto:info AT sonarsource DOT com
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.
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.
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.
20 package org.sonar.ce.task.projectexport.steps;
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;
31 import static java.lang.String.format;
33 public class ExportNewCodePeriodsStep implements ComputationStep {
35 private final DbClient dbClient;
36 private final ProjectHolder projectHolder;
37 private final DumpWriter dumpWriter;
39 public ExportNewCodePeriodsStep(DbClient dbClient, ProjectHolder projectHolder, DumpWriter dumpWriter) {
40 this.dbClient = dbClient;
41 this.projectHolder = projectHolder;
42 this.dumpWriter = dumpWriter;
46 public void execute(Context context) {
49 StreamWriter<ProjectDump.NewCodePeriod> output = dumpWriter.newStreamWriter(DumpElement.NEW_CODE_PERIODS);
50 DbSession dbSession = dbClient.openSession(false)) {
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) {
57 .setUuid(newCodePeriod.getUuid())
58 .setProjectUuid(newCodePeriod.getProjectUuid())
59 .setType(newCodePeriod.getType().name());
61 if (newCodePeriod.getBranchUuid() != null) {
62 builder.setBranchUuid(newCodePeriod.getBranchUuid());
65 if (newCodePeriod.getValue() != null) {
66 builder.setValue(newCodePeriod.getValue());
68 output.write(builder.build());
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);
79 public String getDescription() {
80 return "Export new code periods";