3 * Copyright (C) 2009-2019 SonarSource SA
4 * mailto:info AT sonarsource DOT com
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.
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.
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.
20 package org.sonar.api.server.profile;
22 import javax.annotation.CheckForNull;
23 import org.apache.commons.lang.StringUtils;
24 import org.sonar.api.rules.RuleAnnotationUtils;
25 import org.sonar.api.server.ServerSide;
26 import org.sonar.api.server.profile.BuiltInQualityProfilesDefinition.NewBuiltInActiveRule;
27 import org.sonar.check.BelongsToProfile;
30 * Read definitions of quality profiles based on the annotation {@link BelongsToProfile} provided by sonar-check-api. It is used
31 * to feed {@link BuiltInQualityProfilesDefinition}.
33 * @see BuiltInQualityProfilesDefinition
37 public class BuiltInQualityProfileAnnotationLoader {
39 public void load(BuiltInQualityProfilesDefinition.NewBuiltInQualityProfile builtInProfile, String repositoryKey, Class... annotatedClasses) {
40 for (Class<?> annotatedClass : annotatedClasses) {
41 loadActiveRule(builtInProfile, repositoryKey, annotatedClass);
45 void loadActiveRule(BuiltInQualityProfilesDefinition.NewBuiltInQualityProfile profile, String repositoryKey, Class<?> clazz) {
46 BelongsToProfile belongsToProfile = clazz.getAnnotation(BelongsToProfile.class);
47 if ((belongsToProfile != null) && StringUtils.equals(belongsToProfile.title(), profile.name())) {
48 String ruleKey = RuleAnnotationUtils.getRuleKey(clazz);
49 NewBuiltInActiveRule activeRule = profile.activateRule(repositoryKey, ruleKey);
50 activeRule.overrideSeverity(belongsToProfile.priority().name());