]> source.dussan.org Git - sonarqube.git/blob
00b20e211dcf230501c77abced6851dfdddcf633
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2016 SonarSource SA
4  * mailto:contact 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.db.version.v60;
21
22 import java.sql.SQLException;
23 import org.sonar.db.Database;
24 import org.sonar.db.version.BaseDataChange;
25 import org.sonar.db.version.MassUpdate;
26 import org.sonar.db.version.Select;
27 import org.sonar.db.version.SqlStatement;
28
29 public class PopulateComponentUuidAndAnalysisUuidOfDuplicationsIndex extends BaseDataChange {
30
31   public PopulateComponentUuidAndAnalysisUuidOfDuplicationsIndex(Database db) {
32     super(db);
33   }
34
35   @Override
36   public void execute(Context context) throws SQLException {
37     populateComponentUuid(context);
38     populateAnalysisUuid(context);
39   }
40
41   private void populateComponentUuid(Context context) throws SQLException {
42     MassUpdate massUpdate = context.prepareMassUpdate();
43     massUpdate.select("select distinct di.snapshot_id, s.component_uuid from duplications_index di" +
44       " inner join snapshots s on s.id=di.snapshot_id" +
45       " where di.component_uuid is null");
46     massUpdate.update("UPDATE duplications_index SET component_uuid=? WHERE snapshot_id=? and component_uuid is null");
47     massUpdate.rowPluralName("component uuid of duplications_index entries");
48     massUpdate.execute(PopulateComponentUuidAndAnalysisUuidOfDuplicationsIndex::handleComponentUuid);
49   }
50
51   private static boolean handleComponentUuid(Select.Row row, SqlStatement update) throws SQLException {
52     long snapshotId = row.getLong(1);
53     String componentUuid = row.getString(2);
54
55     update.setString(1, componentUuid);
56     update.setLong(2, snapshotId);
57
58     return true;
59   }
60   
61   public static void populateAnalysisUuid(Context context) throws SQLException {
62     MassUpdate massUpdate = context.prepareMassUpdate();
63     massUpdate.select("select distinct di.project_snapshot_id, s.uuid from duplications_index di" +
64         " inner join snapshots s on s.id=di.project_snapshot_id" +
65         " where di.analysis_uuid is null");
66     massUpdate.update("UPDATE duplications_index SET analysis_uuid=? WHERE project_snapshot_id=? and analysis_uuid is null");
67     massUpdate.rowPluralName("analysis uuid of duplications_index entries");
68     massUpdate.execute(PopulateComponentUuidAndAnalysisUuidOfDuplicationsIndex::handleAnalysisUuid);
69   }
70
71   private static boolean handleAnalysisUuid(Select.Row row, SqlStatement update) throws SQLException {
72     long projectSnapshotId = row.getLong(1);
73     String snapshotUuid = row.getString(2);
74
75     update.setString(1, snapshotUuid);
76     update.setLong(2, projectSnapshotId);
77
78     return true;
79   }
80
81 }