]> source.dussan.org Git - sonarqube.git/blob
4012a7321b93c2cdbde4cafbcdc1294dc5902381
[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 package org.sonar.server.db.migrations.v451;
21
22 import com.google.common.base.Predicate;
23 import com.google.common.collect.ArrayListMultimap;
24 import com.google.common.collect.HashMultimap;
25 import com.google.common.collect.Iterables;
26 import com.google.common.collect.Multimap;
27 import org.sonar.api.utils.System2;
28 import org.sonar.core.persistence.DbSession;
29 import org.sonar.core.persistence.migration.v45.Migration45Mapper;
30 import org.sonar.core.persistence.migration.v45.Rule;
31 import org.sonar.core.persistence.migration.v45.RuleParameter;
32 import org.sonar.server.db.DbClient;
33 import org.sonar.server.db.migrations.DatabaseMigration;
34 import org.sonar.server.db.migrations.MassUpdate;
35
36 import javax.annotation.Nullable;
37
38 import java.util.Collection;
39 import java.util.Date;
40 import java.util.List;
41 import java.util.Timer;
42 import java.util.concurrent.atomic.AtomicLong;
43
44 /**
45  * See http://jira.codehaus.org/browse/SONAR-5575
46  *
47  * Add missing parameters (with no value) on each custom rules
48  *
49  * @since 4.5.1
50  */
51 public class AddMissingCustomRuleParametersMigration implements DatabaseMigration {
52
53   private final DbClient db;
54   private final System2 system;
55
56   private final AtomicLong counter = new AtomicLong(0L);
57   private final MassUpdate.ProgressTask progressTask = new MassUpdate.ProgressTask(counter);
58
59
60   public AddMissingCustomRuleParametersMigration(DbClient db, System2 system) {
61     this.db = db;
62     this.system = system;
63   }
64
65   @Override
66   public void execute() {
67     Timer timer = new Timer("Db Migration Progress");
68     timer.schedule(progressTask, MassUpdate.ProgressTask.PERIOD_MS, MassUpdate.ProgressTask.PERIOD_MS);
69
70     DbSession session = db.openSession(false);
71     try {
72       Migration45Mapper mapper = session.getMapper(Migration45Mapper.class);
73
74       List<RuleParameter> templateRuleParams = mapper.selectAllTemplateRuleParameters();
75       Multimap<Integer, RuleParameter> templateRuleParamsByRuleId = ArrayListMultimap.create();
76       for (RuleParameter templateRuleParam : templateRuleParams) {
77         templateRuleParamsByRuleId.put(templateRuleParam.getRuleId(), templateRuleParam);
78       }
79
80       List<Rule> customRules = mapper.selectAllCustomRules();
81       Multimap<Integer, Integer> customRuleIdsByTemplateRuleId = HashMultimap.create();
82       for (Rule customRule : customRules) {
83         customRuleIdsByTemplateRuleId.put(customRule.getTemplateId(), customRule.getId());
84       }
85
86       List<RuleParameter> customRuleParams = mapper.selectAllCustomRuleParameters();
87       Multimap<Integer, RuleParameter> customRuleParamsByRuleId = ArrayListMultimap.create();
88       for (RuleParameter customRuleParam : customRuleParams) {
89         customRuleParamsByRuleId.put(customRuleParam.getRuleId(), customRuleParam);
90       }
91
92       // For each parameters of template rules, verify that each custom rules has the parameter
93       for (Integer templateRuleId : templateRuleParamsByRuleId.keySet()) {
94         for (RuleParameter templateRuleParam : templateRuleParamsByRuleId.get(templateRuleId)) {
95           // Each custom rule should have this parameter
96           for (Integer customRuleId : customRuleIdsByTemplateRuleId.get(templateRuleId)) {
97             if (!hasParameter(templateRuleParam.getName(), customRuleParamsByRuleId.get(customRuleId))) {
98               // Insert new custom rule parameter
99               mapper.insertRuleParameter(new RuleParameter()
100                 .setRuleId(customRuleId)
101                 .setRuleTemplateId(templateRuleId)
102                 .setName(templateRuleParam.getName())
103                 .setDescription(templateRuleParam.getDescription())
104                 .setType(templateRuleParam.getType())
105               );
106
107               // Update updated at date of custom rule in order to allow E/S indexation
108               mapper.updateRuleUpdateAt(customRuleId, new Date(system.now()));
109
110               counter.getAndIncrement();
111             }
112           }
113         }
114       }
115
116       session.commit();
117
118       // log the total number of process rows
119       progressTask.log();
120     } finally {
121       session.close();
122
123       timer.cancel();
124       timer.purge();
125     }
126   }
127
128   private boolean hasParameter(final String parameter, Collection<RuleParameter> customRuleParams) {
129     return Iterables.any(customRuleParams, new Predicate<RuleParameter>() {
130       @Override
131       public boolean apply(@Nullable RuleParameter input) {
132         return input != null && input.getName().equals(parameter);
133       }
134     });
135   }
136 }