]> source.dussan.org Git - sonarqube.git/blob
e9c6a8c2d0605f45df1afd2d7590c6792681ba00
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2024 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.rule.registration;
21
22 import com.google.common.collect.ImmutableMap;
23 import com.google.common.collect.ImmutableSet;
24 import java.util.Collection;
25 import java.util.HashMap;
26 import java.util.HashSet;
27 import java.util.LinkedHashMap;
28 import java.util.List;
29 import java.util.Map;
30 import java.util.Objects;
31 import java.util.Optional;
32 import java.util.Set;
33 import java.util.function.Function;
34 import java.util.stream.Collectors;
35 import java.util.stream.Stream;
36 import org.sonar.api.rule.RuleKey;
37 import org.sonar.api.server.rule.RulesDefinition;
38 import org.sonar.api.utils.log.Logger;
39 import org.sonar.api.utils.log.Loggers;
40 import org.sonar.db.DbClient;
41 import org.sonar.db.DbSession;
42 import org.sonar.db.rule.RuleDto;
43 import org.sonar.db.rule.RuleParamDto;
44
45 import static com.google.common.base.Preconditions.checkState;
46 import static java.util.Collections.emptyList;
47 import static java.util.Collections.emptySet;
48 import static java.util.Collections.unmodifiableMap;
49
50 class RulesRegistrationContext {
51
52   private static final Logger LOG = Loggers.get(RulesRegistrationContext.class);
53
54   // initial immutable data
55   private final Map<RuleKey, RuleDto> dbRules;
56   private final Set<RuleDto> known;
57   private final Map<String, Set<SingleDeprecatedRuleKey>> dbDeprecatedKeysByUuid;
58   private final Map<String, List<RuleParamDto>> ruleParamsByRuleUuid;
59   private final Map<RuleKey, RuleDto> dbRulesByDbDeprecatedKey;
60   // mutable data
61   private final Set<RuleDto> created = new HashSet<>();
62   private final Map<RuleDto, RuleKey> renamed = new HashMap<>();
63   private final Set<RuleDto> updated = new HashSet<>();
64   private final Set<RuleDto> unchanged = new HashSet<>();
65   private final Set<RuleDto> removed = new HashSet<>();
66
67   private RulesRegistrationContext(Map<RuleKey, RuleDto> dbRules, Map<String, Set<SingleDeprecatedRuleKey>> dbDeprecatedKeysByUuid,
68     Map<String, List<RuleParamDto>> ruleParamsByRuleUuid) {
69     this.dbRules = ImmutableMap.copyOf(dbRules);
70     this.known = ImmutableSet.copyOf(dbRules.values());
71     this.dbDeprecatedKeysByUuid = dbDeprecatedKeysByUuid;
72     this.ruleParamsByRuleUuid = ruleParamsByRuleUuid;
73     this.dbRulesByDbDeprecatedKey = buildDbRulesByDbDeprecatedKey(dbDeprecatedKeysByUuid, dbRules);
74   }
75
76   private static Map<RuleKey, RuleDto> buildDbRulesByDbDeprecatedKey(Map<String, Set<SingleDeprecatedRuleKey>> dbDeprecatedKeysByUuid,
77     Map<RuleKey, RuleDto> dbRules) {
78     Map<String, RuleDto> dbRulesByRuleUuid = dbRules.values().stream()
79       .collect(Collectors.toMap(RuleDto::getUuid, Function.identity()));
80
81     Map<RuleKey, RuleDto> rulesByKey = new LinkedHashMap<>();
82     for (Map.Entry<String, Set<SingleDeprecatedRuleKey>> entry : dbDeprecatedKeysByUuid.entrySet()) {
83       String ruleUuid = entry.getKey();
84       RuleDto rule = dbRulesByRuleUuid.get(ruleUuid);
85       if (rule == null) {
86         LOG.warn("Could not retrieve rule with uuid %s referenced by a deprecated rule key. " +
87             "The following deprecated rule keys seem to be referencing a non-existing rule",
88           ruleUuid, entry.getValue());
89       } else {
90         entry.getValue().forEach(d -> rulesByKey.put(d.getOldRuleKeyAsRuleKey(), rule));
91       }
92     }
93     return unmodifiableMap(rulesByKey);
94   }
95
96   boolean hasDbRules() {
97     return !dbRules.isEmpty();
98   }
99
100   Optional<RuleDto> getDbRuleFor(RulesDefinition.Rule ruleDef) {
101     RuleKey ruleKey = RuleKey.of(ruleDef.repository().key(), ruleDef.key());
102     Optional<RuleDto> res = Stream.concat(Stream.of(ruleKey), ruleDef.deprecatedRuleKeys().stream())
103       .map(dbRules::get)
104       .filter(Objects::nonNull)
105       .findFirst();
106     // may occur in case of plugin downgrade
107     if (res.isEmpty()) {
108       return Optional.ofNullable(dbRulesByDbDeprecatedKey.get(ruleKey));
109     }
110     return res;
111   }
112
113   Map<RuleKey, SingleDeprecatedRuleKey> getDbDeprecatedKeysByOldRuleKey() {
114     return dbDeprecatedKeysByUuid.values().stream()
115       .flatMap(Collection::stream)
116       .collect(Collectors.toMap(SingleDeprecatedRuleKey::getOldRuleKeyAsRuleKey, Function.identity()));
117   }
118
119   Set<SingleDeprecatedRuleKey> getDBDeprecatedKeysFor(RuleDto rule) {
120     return dbDeprecatedKeysByUuid.getOrDefault(rule.getUuid(), emptySet());
121   }
122
123   List<RuleParamDto> getRuleParametersFor(String ruleUuid) {
124     return ruleParamsByRuleUuid.getOrDefault(ruleUuid, emptyList());
125   }
126
127   Stream<RuleDto> getRemaining() {
128     Set<RuleDto> res = new HashSet<>(dbRules.values());
129     res.removeAll(unchanged);
130     res.removeAll(renamed.keySet());
131     res.removeAll(updated);
132     res.removeAll(removed);
133     return res.stream();
134   }
135
136   Stream<RuleDto> getRemoved() {
137     return removed.stream();
138   }
139
140   public Stream<Map.Entry<RuleDto, RuleKey>> getRenamed() {
141     return renamed.entrySet().stream();
142   }
143
144   Stream<RuleDto> getAllModified() {
145     return Stream.of(
146         created.stream(),
147         updated.stream(),
148         removed.stream(),
149         renamed.keySet().stream())
150       .flatMap(s -> s);
151   }
152
153   boolean isCreated(RuleDto ruleDto) {
154     return created.contains(ruleDto);
155   }
156
157   boolean isRenamed(RuleDto ruleDto) {
158     return renamed.containsKey(ruleDto);
159   }
160
161   boolean isUpdated(RuleDto ruleDto) {
162     return updated.contains(ruleDto);
163   }
164
165   void created(RuleDto ruleDto) {
166     checkState(!known.contains(ruleDto), "known RuleDto can't be created");
167     created.add(ruleDto);
168   }
169
170   void renamed(RuleDto ruleDto) {
171     ensureKnown(ruleDto);
172     renamed.put(ruleDto, ruleDto.getKey());
173   }
174
175   void updated(RuleDto ruleDto) {
176     ensureKnown(ruleDto);
177     updated.add(ruleDto);
178   }
179
180   void removed(RuleDto ruleDto) {
181     ensureKnown(ruleDto);
182     removed.add(ruleDto);
183   }
184
185   void unchanged(RuleDto ruleDto) {
186     ensureKnown(ruleDto);
187     unchanged.add(ruleDto);
188   }
189
190   private void ensureKnown(RuleDto ruleDto) {
191     checkState(known.contains(ruleDto), "unknown RuleDto");
192   }
193
194   static RulesRegistrationContext create(DbClient dbClient, DbSession dbSession) {
195     Map<RuleKey, RuleDto> allRules = dbClient.ruleDao().selectAll(dbSession).stream()
196       .collect(Collectors.toMap(RuleDto::getKey, Function.identity()));
197     Map<String, Set<SingleDeprecatedRuleKey>> existingDeprecatedKeysById = loadDeprecatedRuleKeys(dbClient, dbSession);
198     Map<String, List<RuleParamDto>> ruleParamsByRuleUuid = loadAllRuleParameters(dbClient, dbSession);
199     return new RulesRegistrationContext(allRules, existingDeprecatedKeysById, ruleParamsByRuleUuid);
200   }
201
202   private static Map<String, List<RuleParamDto>> loadAllRuleParameters(DbClient dbClient, DbSession dbSession) {
203     return dbClient.ruleDao().selectAllRuleParams(dbSession).stream()
204       .collect(Collectors.groupingBy(RuleParamDto::getRuleUuid));
205   }
206
207   private static Map<String, Set<SingleDeprecatedRuleKey>> loadDeprecatedRuleKeys(DbClient dbClient, DbSession dbSession) {
208     return dbClient.ruleDao().selectAllDeprecatedRuleKeys(dbSession).stream()
209       .map(SingleDeprecatedRuleKey::from)
210       .collect(Collectors.groupingBy(SingleDeprecatedRuleKey::getRuleUuid, Collectors.toSet()));
211   }
212 }