]> source.dussan.org Git - sonarqube.git/blob
7f2fc39173d637426ab2df331fddff5002ebaceb
[sonarqube.git] /
1 /*
2  * SonarQube, open source software quality management tool.
3  * Copyright (C) 2008-2014 SonarSource
4  * mailto:contact AT sonarsource DOT com
5  *
6  * SonarQube 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  * SonarQube 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
21 package org.sonar.server.db.migrations.v51;
22
23 import org.sonar.api.utils.System2;
24 import org.sonar.core.persistence.Database;
25 import org.sonar.server.db.migrations.BaseDataChange;
26 import org.sonar.server.db.migrations.MassUpdate;
27 import org.sonar.server.db.migrations.Select;
28 import org.sonar.server.db.migrations.SqlStatement;
29
30 import java.sql.SQLException;
31 import java.util.Date;
32
33 public class FeedAnalysisReportsLongDates extends BaseDataChange {
34
35   private final System2 system;
36
37   public FeedAnalysisReportsLongDates(Database db, System2 system) {
38     super(db);
39     this.system = system;
40   }
41
42   @Override
43   public void execute(Context context) throws SQLException {
44     final long now = system.now();
45
46     MassUpdate massUpdate = context.prepareMassUpdate();
47     massUpdate.select("SELECT a.created_at, a.updated_at, a.started_at, a.finished_at, a.id FROM analysis_reports a WHERE created_at_ms IS NULL");
48     massUpdate.update("UPDATE analysis_reports SET created_at_ms=?, updated_at_ms=?, started_at_ms=?, finished_at_ms=? WHERE id=?");
49     massUpdate.rowPluralName("analysis_reports");
50     massUpdate.execute(new MassUpdate.Handler() {
51       @Override
52       public boolean handle(Select.Row row, SqlStatement update) throws SQLException {
53         Date createdAt = row.getDate(1);
54         Date updatedAt = row.getDate(2);
55         Date startedAt = row.getDate(3);
56         Date finishedAt = row.getDate(4);
57         Long id = row.getLong(5);
58
59         updateColumn(update, 1, createdAt);
60         updateColumn(update, 2, updatedAt);
61         update.setLong(3, startedAt == null ? null : startedAt.getTime());
62         update.setLong(4, finishedAt == null ? null : finishedAt.getTime());
63         update.setLong(5, id);
64         return true;
65       }
66
67       private void updateColumn(SqlStatement update, int position, Date time) throws SQLException {
68         if (time == null) {
69           update.setLong(position, now);
70         } else {
71           update.setLong(position, Math.min(now, time.getTime()));
72         }
73       }
74     });
75   }
76
77 }