]> source.dussan.org Git - sonarqube.git/blob
2b8e262b9baec4606e3ca57988b3aeaa170656ce
[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.projectanalysis.step;
21
22 import org.sonar.api.utils.System2;
23 import org.sonar.ce.task.projectanalysis.analysis.AnalysisMetadataHolder;
24 import org.sonar.ce.task.projectanalysis.component.Component;
25 import org.sonar.ce.task.projectanalysis.component.CrawlerDepthLimit;
26 import org.sonar.ce.task.projectanalysis.component.DepthTraversalTypeAwareCrawler;
27 import org.sonar.ce.task.projectanalysis.component.TreeRootHolder;
28 import org.sonar.ce.task.projectanalysis.component.TypeAwareVisitorAdapter;
29 import org.sonar.ce.task.projectanalysis.period.Period;
30 import org.sonar.ce.task.projectanalysis.period.PeriodHolder;
31 import org.sonar.ce.task.step.ComputationStep;
32 import org.sonar.db.DbClient;
33 import org.sonar.db.DbSession;
34 import org.sonar.db.component.SnapshotDto;
35
36 import static org.sonar.ce.task.projectanalysis.component.Component.Type.PROJECT;
37
38 /**
39  * Persist analysis
40  */
41 public class PersistAnalysisStep implements ComputationStep {
42
43   private final System2 system2;
44   private final DbClient dbClient;
45   private final TreeRootHolder treeRootHolder;
46   private final AnalysisMetadataHolder analysisMetadataHolder;
47   private final PeriodHolder periodHolder;
48
49   public PersistAnalysisStep(System2 system2, DbClient dbClient, TreeRootHolder treeRootHolder, AnalysisMetadataHolder analysisMetadataHolder, PeriodHolder periodHolder) {
50     this.system2 = system2;
51     this.dbClient = dbClient;
52     this.treeRootHolder = treeRootHolder;
53     this.analysisMetadataHolder = analysisMetadataHolder;
54     this.periodHolder = periodHolder;
55   }
56
57   @Override
58   public void execute(ComputationStep.Context context) {
59     try (DbSession dbSession = dbClient.openSession(false)) {
60       new DepthTraversalTypeAwareCrawler(
61         new PersistSnapshotsPathAwareVisitor(dbSession, analysisMetadataHolder.getAnalysisDate()))
62           .visit(treeRootHolder.getRoot());
63       dbSession.commit();
64     }
65   }
66
67   private class PersistSnapshotsPathAwareVisitor extends TypeAwareVisitorAdapter {
68
69     private final DbSession dbSession;
70     private final long analysisDate;
71
72     public PersistSnapshotsPathAwareVisitor(DbSession dbSession, long analysisDate) {
73       super(CrawlerDepthLimit.ROOTS, Order.PRE_ORDER);
74       this.dbSession = dbSession;
75       this.analysisDate = analysisDate;
76     }
77
78     @Override
79     public void visitProject(Component project) {
80       SnapshotDto snapshot = createAnalysis(analysisMetadataHolder.getUuid(), project);
81       updateSnapshotPeriods(snapshot);
82       persist(snapshot, dbSession);
83     }
84
85     @Override
86     public void visitView(Component view) {
87       SnapshotDto snapshot = createAnalysis(analysisMetadataHolder.getUuid(), view);
88       updateSnapshotPeriods(snapshot);
89       persist(snapshot, dbSession);
90     }
91
92     private void updateSnapshotPeriods(SnapshotDto snapshotDto) {
93       if (!periodHolder.hasPeriod()) {
94         return;
95       }
96       Period period = periodHolder.getPeriod();
97       snapshotDto.setPeriodMode(period.getMode());
98       snapshotDto.setPeriodParam(period.getModeParameter());
99       snapshotDto.setPeriodDate(period.getDate());
100     }
101
102     private SnapshotDto createAnalysis(String snapshotUuid, Component component) {
103       String componentUuid = component.getUuid();
104       String projectVersion = component.getType() == PROJECT ? component.getProjectAttributes().getProjectVersion() : null;
105       String buildString = component.getType() == PROJECT ? component.getProjectAttributes().getBuildString().orElse(null) : null;
106       SnapshotDto dto = new SnapshotDto()
107         .setUuid(snapshotUuid)
108         .setProjectVersion(projectVersion)
109         .setBuildString(buildString)
110         .setRootComponentUuid(componentUuid)
111         .setLast(false)
112         .setStatus(SnapshotDto.STATUS_UNPROCESSED)
113         .setCreatedAt(analysisDate)
114         .setBuildDate(system2.now());
115
116       if (component.getType() == PROJECT) {
117         component.getProjectAttributes().getScmRevisionId().ifPresent(dto::setRevision);
118       }
119
120       return dto;
121     }
122
123     private void persist(SnapshotDto snapshotDto, DbSession dbSession) {
124       dbClient.snapshotDao().insert(dbSession, snapshotDto);
125     }
126   }
127
128   @Override
129   public String getDescription() {
130     return "Persist analysis";
131   }
132 }