]> source.dussan.org Git - sonarqube.git/blob
0c2f6f522fcd240105f51266e771bab4cc6542c8
[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.v44;
22
23 import org.apache.commons.lang.ObjectUtils;
24 import org.sonar.api.utils.text.JsonWriter;
25 import org.sonar.core.UtcDateUtils;
26 import org.sonar.core.persistence.DbSession;
27 import org.sonar.core.persistence.migration.v44.Migration44Mapper;
28 import org.sonar.core.persistence.migration.v44.ProfileMeasure;
29 import org.sonar.core.persistence.migration.v44.QProfileDto44;
30 import org.sonar.server.db.DbClient;
31 import org.sonar.server.db.migrations.DatabaseMigration;
32
33 import java.io.StringWriter;
34 import java.util.Date;
35
36 /**
37  * Feed the new columns RULES_PROFILE.KEE and PARENT_KEE.
38  * 
39  * @since 4.4
40  */
41 public class ConvertProfileMeasuresMigration implements DatabaseMigration {
42
43   private final DbClient db;
44
45   public ConvertProfileMeasuresMigration(DbClient db) {
46     this.db = db;
47   }
48
49   @Override
50   public void execute() {
51     DbSession session = db.openSession(false);
52     try {
53       int i = 0;
54       Date now = new Date();
55       Migration44Mapper mapper = session.getMapper(Migration44Mapper.class);
56       for (ProfileMeasure profileMeasure : mapper.selectProfileMeasures()) {
57         Integer version = mapper.selectProfileVersion(profileMeasure.getSnapshotId());
58         QProfileDto44 profile = mapper.selectProfileById(profileMeasure.getProfileId());
59         if (profile != null) {
60           Date date = now;
61           if (version != null) {
62             date = (Date)ObjectUtils.defaultIfNull(
63               mapper.selectProfileVersionDate(profileMeasure.getProfileId(), version), now);
64           }
65           // see format of JSON in org.sonar.batch.rule.UsedQProfiles
66           StringWriter writer = new StringWriter();
67           JsonWriter json = JsonWriter.of(writer);
68           json
69             .beginArray()
70             .beginObject()
71             .prop("key", profile.getKee())
72             .prop("language", profile.getLanguage())
73             .prop("name", profile.getName())
74             .prop("rulesUpdatedAt", UtcDateUtils.formatDateTime(date))
75             .endObject()
76             .endArray()
77             .close();
78           mapper.updateProfileMeasure(profileMeasure.getId(), writer.toString());
79           if (i % 100 == 0) {
80             session.commit();
81             i++;
82           }
83         }
84       }
85       session.commit();
86     } finally {
87       session.close();
88     }
89   }
90 }