org.sonar.api.profiles.XMLProfileSerializer Maven / Gradle / Ivy
/*
* SonarQube, open source software quality management tool.
* Copyright (C) 2008-2014 SonarSource
* mailto:contact AT sonarsource DOT com
*
* SonarQube 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.
*
* SonarQube 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.api.profiles;
import org.apache.commons.lang.StringEscapeUtils;
import org.apache.commons.lang.StringUtils;
import org.sonar.api.ServerComponent;
import org.sonar.api.rules.ActiveRule;
import org.sonar.api.rules.ActiveRuleParam;
import org.sonar.api.utils.SonarException;
import java.io.IOException;
import java.io.Writer;
/**
* @since 2.3
*/
public class XMLProfileSerializer implements ServerComponent {
public void write(RulesProfile profile, Writer writer) {
try {
appendHeader(profile, writer);
appendRules(profile, writer);
appendFooter(writer);
} catch (IOException e) {
throw new SonarException("Fail to export the profile " + profile, e);
}
}
private void appendHeader(RulesProfile profile, Writer writer) throws IOException {
writer.append(""
+ ""
+ "");
StringEscapeUtils.escapeXml(writer, profile.getName());
writer.append(" ");
StringEscapeUtils.escapeXml(writer, profile.getLanguage());
writer.append(" ");
}
private void appendRules(RulesProfile profile, Writer writer) throws IOException {
if (!profile.getActiveRules().isEmpty()) {
writer.append("");
for (ActiveRule activeRule : profile.getActiveRules()) {
appendRule(activeRule, writer);
}
writer.append(" ");
}
}
private void appendRule(ActiveRule activeRule, Writer writer) throws IOException {
writer.append("");
writer.append(activeRule.getRepositoryKey());
writer.append(" ");
StringEscapeUtils.escapeXml(writer, activeRule.getRuleKey());
writer.append(" ");
if (activeRule.getSeverity() != null) {
writer.append("");
writer.append(activeRule.getSeverity().name());
writer.append(" ");
}
appendRuleParameters(activeRule, writer);
writer.append(" ");
}
private void appendRuleParameters(ActiveRule activeRule, Writer writer) throws IOException {
if (activeRule.getActiveRuleParams() != null && !activeRule.getActiveRuleParams().isEmpty()) {
writer.append("");
for (ActiveRuleParam activeRuleParam : activeRule.getActiveRuleParams()) {
appendRuleParameter(writer, activeRuleParam);
}
writer.append(" ");
}
}
private void appendRuleParameter(Writer writer, ActiveRuleParam activeRuleParam) throws IOException {
if (StringUtils.isNotBlank(activeRuleParam.getValue())) {
writer.append("");
StringEscapeUtils.escapeXml(writer, activeRuleParam.getKey());
writer.append(" ");
StringEscapeUtils.escapeXml(writer, activeRuleParam.getValue());
writer.append(" ");
writer.append(" ");
}
}
private void appendFooter(Writer writer) throws IOException {
writer.append(" ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy