]> source.dussan.org Git - sonarqube.git/blob
3ea2fe10647017795eeb7fc5a210754338c9a68c
[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 java.time.temporal.ChronoUnit;
23 import java.util.Date;
24 import java.util.List;
25 import javax.annotation.CheckForNull;
26 import javax.annotation.Nullable;
27 import org.apache.commons.lang.StringUtils;
28 import org.sonar.api.config.Settings;
29 import org.sonar.api.utils.DateUtils;
30 import org.sonar.api.utils.log.Logger;
31 import org.sonar.api.utils.log.Loggers;
32 import org.sonar.db.DbClient;
33 import org.sonar.db.DbSession;
34 import org.sonar.db.component.SnapshotDto;
35 import org.sonar.db.component.SnapshotQuery;
36 import org.sonar.server.computation.task.projectanalysis.period.Period;
37
38 import static org.sonar.core.config.CorePropertyDefinitions.LEAK_PERIOD;
39 import static org.sonar.core.config.CorePropertyDefinitions.LEAK_PERIOD_MODE_DATE;
40 import static org.sonar.core.config.CorePropertyDefinitions.LEAK_PERIOD_MODE_DAYS;
41 import static org.sonar.core.config.CorePropertyDefinitions.LEAK_PERIOD_MODE_PREVIOUS_ANALYSIS;
42 import static org.sonar.core.config.CorePropertyDefinitions.LEAK_PERIOD_MODE_PREVIOUS_VERSION;
43 import static org.sonar.core.config.CorePropertyDefinitions.LEAK_PERIOD_MODE_VERSION;
44 import static org.sonar.db.component.SnapshotDto.STATUS_PROCESSED;
45 import static org.sonar.db.component.SnapshotQuery.SORT_FIELD.BY_DATE;
46 import static org.sonar.db.component.SnapshotQuery.SORT_ORDER.ASC;
47 import static org.sonar.db.component.SnapshotQuery.SORT_ORDER.DESC;
48
49 public class PeriodResolver {
50   private static final Logger LOG = Loggers.get(PeriodResolver.class);
51
52   private final DbClient dbClient;
53   private final DbSession session;
54   private final String projectUuid;
55   private final long analysisDate;
56   @CheckForNull
57   private final String currentVersion;
58
59   public PeriodResolver(DbClient dbClient, DbSession session, String projectUuid, long analysisDate, @Nullable String currentVersion) {
60     this.dbClient = dbClient;
61     this.session = session;
62     this.projectUuid = projectUuid;
63     this.analysisDate = analysisDate;
64     this.currentVersion = currentVersion;
65   }
66
67   @CheckForNull
68   public Period resolve(Settings settings) {
69     String propertyValue = getPropertyValue(settings);
70     if (StringUtils.isBlank(propertyValue)) {
71       return null;
72     }
73     if (propertyValue.equals(LEAK_PERIOD_MODE_PREVIOUS_ANALYSIS)) {
74       LOG.warn("Leak period is set to deprecated value '{}'. This value will be removed in next SonarQube LTS, please use another one instead.",
75         LEAK_PERIOD_MODE_PREVIOUS_ANALYSIS);
76     }
77     Period period = resolve(propertyValue);
78     if (period == null && StringUtils.isNotBlank(propertyValue)) {
79       LOG.debug("Property " + LEAK_PERIOD + " is not valid: " + propertyValue);
80     }
81     return period;
82   }
83
84   @CheckForNull
85   private Period resolve(String property) {
86     Integer days = tryToResolveByDays(property);
87     if (days != null) {
88       return findByDays(days);
89     }
90     Date date = DateUtils.parseDateQuietly(property);
91     if (date != null) {
92       return findByDate(date);
93     }
94     if (StringUtils.equals(LEAK_PERIOD_MODE_PREVIOUS_ANALYSIS, property)) {
95       return findByPreviousAnalysis();
96     }
97     if (StringUtils.equals(LEAK_PERIOD_MODE_PREVIOUS_VERSION, property)) {
98       return findByPreviousVersion();
99     }
100     return findByVersion(property);
101   }
102
103   private Period findByDate(Date date) {
104     SnapshotDto snapshot = findFirstSnapshot(session, createCommonQuery(projectUuid).setCreatedAfter(date.getTime()).setSort(BY_DATE, ASC));
105     if (snapshot == null) {
106       return null;
107     }
108     LOG.debug("Compare to date {} (analysis of {})", formatDate(date.getTime()), formatDate(snapshot.getCreatedAt()));
109     return new Period(LEAK_PERIOD_MODE_DATE, DateUtils.formatDate(date), snapshot.getCreatedAt(), snapshot.getUuid());
110   }
111
112   @CheckForNull
113   private Period findByDays(int days) {
114     List<SnapshotDto> snapshots = dbClient.snapshotDao().selectAnalysesByQuery(session, createCommonQuery(projectUuid).setCreatedBefore(analysisDate).setSort(BY_DATE, ASC));
115     long targetDate = DateUtils.addDays(new Date(analysisDate), -days).getTime();
116     SnapshotDto snapshot = findNearestSnapshotToTargetDate(snapshots, targetDate);
117     if (snapshot == null) {
118       return null;
119     }
120     LOG.debug("Compare over {} days ({}, analysis of {})", String.valueOf(days), formatDate(targetDate), formatDate(snapshot.getCreatedAt()));
121     return new Period(LEAK_PERIOD_MODE_DAYS, String.valueOf(days), snapshot.getCreatedAt(), snapshot.getUuid());
122   }
123
124   @CheckForNull
125   private Period findByPreviousAnalysis() {
126     SnapshotDto snapshot = findFirstSnapshot(session, createCommonQuery(projectUuid).setCreatedBefore(analysisDate).setIsLast(true).setSort(BY_DATE, DESC));
127     if (snapshot == null) {
128       return null;
129     }
130     LOG.debug("Compare to previous analysis ({})", formatDate(snapshot.getCreatedAt()));
131     return new Period(LEAK_PERIOD_MODE_PREVIOUS_ANALYSIS, formatDate(snapshot.getCreatedAt()), snapshot.getCreatedAt(), snapshot.getUuid());
132   }
133
134   @CheckForNull
135   private Period findByPreviousVersion() {
136     if (currentVersion == null) {
137       return null;
138     }
139     List<SnapshotDto> snapshotDtos = dbClient.snapshotDao().selectPreviousVersionSnapshots(session, projectUuid, currentVersion);
140     if (snapshotDtos.isEmpty()) {
141       // If no previous version is found, the first analysis is returned
142       return findByFirstAnalysis();
143     }
144     SnapshotDto snapshotDto = snapshotDtos.get(0);
145     LOG.debug("Compare to previous version ({})", formatDate(snapshotDto.getCreatedAt()));
146     return new Period(LEAK_PERIOD_MODE_PREVIOUS_VERSION, snapshotDto.getVersion(), snapshotDto.getCreatedAt(), snapshotDto.getUuid());
147   }
148
149   @CheckForNull
150   private Period findByFirstAnalysis() {
151     SnapshotDto snapshotDto = dbClient.snapshotDao().selectOldestSnapshot(session, projectUuid);
152     if (snapshotDto == null) {
153       return null;
154     }
155     LOG.debug("Compare to first analysis ({})", formatDate(snapshotDto.getCreatedAt()));
156     return new Period(LEAK_PERIOD_MODE_PREVIOUS_VERSION, null, snapshotDto.getCreatedAt(), snapshotDto.getUuid());
157   }
158
159   @CheckForNull
160   private Period findByVersion(String version) {
161     SnapshotDto snapshot = findFirstSnapshot(session, createCommonQuery(projectUuid).setVersion(version).setSort(BY_DATE, DESC));
162     if (snapshot == null) {
163       return null;
164     }
165     LOG.debug("Compare to version ({}) ({})", version, formatDate(snapshot.getCreatedAt()));
166     return new Period(LEAK_PERIOD_MODE_VERSION, version, snapshot.getCreatedAt(), snapshot.getUuid());
167   }
168
169   @CheckForNull
170   private SnapshotDto findFirstSnapshot(DbSession session, SnapshotQuery query) {
171     List<SnapshotDto> snapshots = dbClient.snapshotDao().selectAnalysesByQuery(session, query);
172     if (!snapshots.isEmpty()) {
173       return snapshots.get(0);
174     }
175     return null;
176   }
177
178   @CheckForNull
179   private static Integer tryToResolveByDays(String property) {
180     try {
181       return Integer.parseInt(property);
182     } catch (NumberFormatException e) {
183       // Nothing to, it means that the property is not a number of days
184       return null;
185     }
186   }
187
188   @CheckForNull
189   private static SnapshotDto findNearestSnapshotToTargetDate(List<SnapshotDto> snapshots, Long targetDate) {
190     long bestDistance = Long.MAX_VALUE;
191     SnapshotDto nearest = null;
192     for (SnapshotDto snapshot : snapshots) {
193       long distance = Math.abs(snapshot.getCreatedAt() - targetDate);
194       if (distance <= bestDistance) {
195         bestDistance = distance;
196         nearest = snapshot;
197       }
198     }
199     return nearest;
200   }
201
202   private static SnapshotQuery createCommonQuery(String projectUuid) {
203     return new SnapshotQuery().setComponentUuid(projectUuid).setStatus(STATUS_PROCESSED);
204   }
205
206   private static String formatDate(long date) {
207     return DateUtils.formatDate(Date.from(new Date(date).toInstant().truncatedTo(ChronoUnit.SECONDS)));
208   }
209
210   private static String getPropertyValue(Settings settings) {
211     return settings.getString(LEAK_PERIOD);
212   }
213 }