org.sonar.server.qualityprofile.BuiltInQProfile Maven / Gradle / Ivy
/*
* SonarQube
* Copyright (C) 2009-2018 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonar.server.qualityprofile;
import com.google.common.collect.ImmutableList;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.concurrent.Immutable;
import org.sonar.api.server.profile.BuiltInQualityProfilesDefinition;
/**
* Represent a Quality Profile as computed from {@link BuiltInQualityProfilesDefinition} provided by installed plugins.
*/
@Immutable
public final class BuiltInQProfile {
private final QProfileName qProfileName;
private final boolean isDefault;
private final List activeRules;
private BuiltInQProfile(Builder builder) {
this.qProfileName = new QProfileName(builder.language, builder.name);
this.isDefault = builder.declaredDefault || builder.computedDefault;
this.activeRules = ImmutableList.copyOf(builder.activeRules);
}
public String getName() {
return qProfileName.getName();
}
public String getLanguage() {
return qProfileName.getLanguage();
}
public QProfileName getQProfileName() {
return qProfileName;
}
public boolean isDefault() {
return isDefault;
}
public List getActiveRules() {
return activeRules;
}
static final class Builder {
private String language;
private String name;
private boolean declaredDefault;
private boolean computedDefault;
private final List activeRules = new ArrayList<>();
public Builder setLanguage(String language) {
this.language = language;
return this;
}
Builder setName(String name) {
this.name = name;
return this;
}
String getName() {
return name;
}
Builder setDeclaredDefault(boolean declaredDefault) {
this.declaredDefault = declaredDefault;
return this;
}
boolean isDeclaredDefault() {
return declaredDefault;
}
Builder setComputedDefault(boolean flag) {
computedDefault = flag;
return this;
}
Builder addRules(List rules) {
this.activeRules.addAll(rules);
return this;
}
BuiltInQProfile build() {
return new BuiltInQProfile(this);
}
}
}