Java tutorial
/* * SonarQube * Copyright (C) 2009-2017 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.api.server.rule; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.Reader; import java.nio.charset.Charset; import java.util.ArrayList; import java.util.List; import javax.annotation.Nullable; import javax.xml.stream.XMLInputFactory; import javax.xml.stream.XMLStreamException; import org.codehaus.staxmate.SMInputFactory; import org.codehaus.staxmate.in.SMHierarchicCursor; import org.codehaus.staxmate.in.SMInputCursor; import org.sonar.api.ce.ComputeEngineSide; import org.sonar.api.rule.RuleStatus; import org.sonar.api.rule.Severity; import org.sonar.api.rules.RuleType; import org.sonar.api.server.ServerSide; import org.sonar.api.server.debt.DebtRemediationFunction; import org.sonar.check.Cardinality; import org.sonarsource.api.sonarlint.SonarLintSide; import static java.lang.String.format; import static org.apache.commons.lang.StringUtils.equalsIgnoreCase; import static org.apache.commons.lang.StringUtils.isNotBlank; import static org.apache.commons.lang.StringUtils.trim; /** * Loads definitions of rules from a XML file. * * <h3>Usage</h3> * <pre> * public class MyJsRulesDefinition implements RulesDefinition { * * private static final String PATH = "my-js-rules.xml"; * private final RulesDefinitionXmlLoader xmlLoader; * * public MyJsRulesDefinition(RulesDefinitionXmlLoader xmlLoader) { * this.xmlLoader = xmlLoader; * } * * {@literal @}Override * public void define(Context context) { * try (Reader reader = new InputStreamReader(getClass().getResourceAsStream(PATH), StandardCharsets.UTF_8)) { * NewRepository repository = context.createRepository("my_js", "js").setName("My Javascript Analyzer"); * xmlLoader.load(repository, reader); * repository.done(); * } catch (IOException e) { * throw new IllegalStateException(String.format("Fail to read file %s", PATH), e); * } * } * } * </pre> * * <h3>XML Format</h3> * <pre> * <rules> * <rule> * <!-- Required key. Max length is 200 characters. --> * <key>the-rule-key</key> * * <!-- Required name. Max length is 200 characters. --> * <name>The purpose of the rule</name> * * <!-- Required description. No max length. --> * <description> * <![CDATA[The description]]> * </description> * <!-- Optional format of description. Supported values are HTML (default) and MARKDOWN. --> * <descriptionFormat>HTML</descriptionFormat> * * <!-- Optional key for configuration of some rule engines --> * <internalKey>Checker/TreeWalker/LocalVariableName</internalKey> * * <!-- Default severity when enabling the rule in a Quality profile. --> * <!-- Possible values are INFO, MINOR, MAJOR (default), CRITICAL, BLOCKER. --> * <severity>BLOCKER</severity> * * <!-- Possible values are SINGLE (default) and MULTIPLE for template rules --> * <cardinality>SINGLE</cardinality> * * <!-- Status displayed in rules console. Possible values are BETA, READY (default), DEPRECATED. --> * <status>BETA</status> * * <!-- Type as defined by the SonarQube Quality Model. Possible values are CODE_SMELL (default), BUG and VULNERABILITY.--> * <type>BUG</type> * * <!-- Optional tags. See org.sonar.api.server.rule.RuleTagFormat. The maximal length of all tags is 4000 characters. --> * <tag>misra</tag> * <tag>multi-threading</tag> * * <!-- Optional parameters --> * <param> * <!-- Required key. Max length is 128 characters. --> * <key>the-param-key</key> * <description> * <![CDATA[the optional description, in HTML format. Max length is 4000 characters.]]> * </description> * <!-- Optional default value, used when enabling the rule in a Quality profile. Max length is 4000 characters. --> * <defaultValue>42</defaultValue> * </param> * <param> * <key>another-param</key> * </param> * * <!-- Quality Model - type of debt remediation function --> * <!-- See enum {@link org.sonar.api.server.debt.DebtRemediationFunction.Type} for supported values --> * <!-- It was previously named 'debtRemediationFunction' which is still supported but deprecated since 5.5 --> * <!-- Since 5.5 --> * <remediationFunction>LINEAR_OFFSET</remediationFunction> * * <!-- Quality Model - raw description of the "gap", used for some types of remediation functions. --> * <!-- See {@link org.sonar.api.server.rule.RulesDefinition.NewRule#setGapDescription(String)} --> * <!-- It was previously named 'effortToFixDescription' which is still supported but deprecated since 5.5 --> * <!-- Since 5.5 --> * <gapDescription>Effort to test one uncovered condition</gapFixDescription> * * <!-- Quality Model - gap multiplier of debt remediation function. Must be defined only for some function types. --> * <!-- See {@link org.sonar.api.server.rule.RulesDefinition.DebtRemediationFunctions} --> * <!-- It was previously named 'debtRemediationFunctionCoefficient' which is still supported but deprecated since 5.5 --> * <!-- Since 5.5 --> * <remediationFunctionGapMultiplier>10min</remediationFunctionGapMultiplier> * * <!-- Quality Model - base effort of debt remediation function. Must be defined only for some function types. --> * <!-- See {@link org.sonar.api.server.rule.RulesDefinition.DebtRemediationFunctions} --> * <!-- It was previously named 'debtRemediationFunctionOffset' which is still supported but deprecated since 5.5 --> * <!-- Since 5.5 --> * <remediationFunctionBaseEffort>2min</remediationFunctionBaseEffort> * * <!-- Deprecated field, replaced by "internalKey" --> * <configKey>Checker/TreeWalker/LocalVariableName</configKey> * * <!-- Deprecated field, replaced by "severity" --> * <priority>BLOCKER</priority> * * </rule> * </rules> * </pre> * * <h3>XML Example</h3> * <pre> * <rules> * <rule> * <key>S1442</key> * <name>"alert(...)" should not be used</name> * <description>alert(...) can be useful for debugging during development, but ...</description> * <tag>cwe</tag> * <tag>security</tag> * <tag>user-experience</tag> * <debtRemediationFunction>CONSTANT_ISSUE</debtRemediationFunction> * <debtRemediationFunctionBaseOffset>10min</debtRemediationFunctionBaseOffset> * </rule> * * <!-- another rules... --> * </rules> * </pre> * * @see org.sonar.api.server.rule.RulesDefinition * @since 4.3 */ @ServerSide @ComputeEngineSide @SonarLintSide public class RulesDefinitionXmlLoader { private enum DescriptionFormat { HTML, MARKDOWN } /** * Loads rules by reading the XML input stream. The input stream is not always closed by the method, so it * should be handled by the caller. * @since 4.3 */ public void load(RulesDefinition.NewRepository repo, InputStream input, String encoding) { load(repo, input, Charset.forName(encoding)); } /** * @since 5.1 */ public void load(RulesDefinition.NewRepository repo, InputStream input, Charset charset) { try (Reader reader = new InputStreamReader(input, charset)) { load(repo, reader); } catch (IOException e) { throw new IllegalStateException("Error while reading XML rules definition for repository " + repo.key(), e); } } /** * Loads rules by reading the XML input stream. The reader is not closed by the method, so it * should be handled by the caller. * @since 4.3 */ public void load(RulesDefinition.NewRepository repo, Reader reader) { XMLInputFactory xmlFactory = XMLInputFactory.newInstance(); xmlFactory.setProperty(XMLInputFactory.IS_COALESCING, Boolean.TRUE); xmlFactory.setProperty(XMLInputFactory.IS_NAMESPACE_AWARE, Boolean.FALSE); // just so it won't try to load DTD in if there's DOCTYPE xmlFactory.setProperty(XMLInputFactory.SUPPORT_DTD, Boolean.FALSE); xmlFactory.setProperty(XMLInputFactory.IS_VALIDATING, Boolean.FALSE); SMInputFactory inputFactory = new SMInputFactory(xmlFactory); try { SMHierarchicCursor rootC = inputFactory.rootElementCursor(reader); rootC.advance(); // <rules> SMInputCursor rulesC = rootC.childElementCursor("rule"); while (rulesC.getNext() != null) { // <rule> processRule(repo, rulesC); } } catch (XMLStreamException e) { throw new IllegalStateException("XML is not valid", e); } } private static void processRule(RulesDefinition.NewRepository repo, SMInputCursor ruleC) throws XMLStreamException { String key = null; String name = null; String description = null; // enum is not used as variable type as we want to raise an exception with the rule key when format is not supported String descriptionFormat = DescriptionFormat.HTML.name(); String internalKey = null; String severity = Severity.defaultSeverity(); String type = null; RuleStatus status = RuleStatus.defaultStatus(); boolean template = false; String gapDescription = null; String debtRemediationFunction = null; String debtRemediationFunctionGapMultiplier = null; String debtRemediationFunctionBaseEffort = null; List<ParamStruct> params = new ArrayList<>(); List<String> tags = new ArrayList<>(); /* BACKWARD COMPATIBILITY WITH VERY OLD FORMAT */ String keyAttribute = ruleC.getAttrValue("key"); if (isNotBlank(keyAttribute)) { key = trim(keyAttribute); } String priorityAttribute = ruleC.getAttrValue("priority"); if (isNotBlank(priorityAttribute)) { severity = trim(priorityAttribute); } SMInputCursor cursor = ruleC.childElementCursor(); while (cursor.getNext() != null) { String nodeName = cursor.getLocalName(); if (equalsIgnoreCase("name", nodeName)) { name = nodeValue(cursor); } else if (equalsIgnoreCase("type", nodeName)) { type = nodeValue(cursor); } else if (equalsIgnoreCase("description", nodeName)) { description = nodeValue(cursor); } else if (equalsIgnoreCase("descriptionFormat", nodeName)) { descriptionFormat = nodeValue(cursor); } else if (equalsIgnoreCase("key", nodeName)) { key = nodeValue(cursor); } else if (equalsIgnoreCase("configKey", nodeName)) { // deprecated field, replaced by internalKey internalKey = nodeValue(cursor); } else if (equalsIgnoreCase("internalKey", nodeName)) { internalKey = nodeValue(cursor); } else if (equalsIgnoreCase("priority", nodeName) || equalsIgnoreCase("severity", nodeName)) { // "priority" is deprecated field and has been replaced by "severity" severity = nodeValue(cursor); } else if (equalsIgnoreCase("cardinality", nodeName)) { template = Cardinality.MULTIPLE == Cardinality.valueOf(nodeValue(cursor)); } else if (equalsIgnoreCase("gapDescription", nodeName) || equalsIgnoreCase("effortToFixDescription", nodeName)) { gapDescription = nodeValue(cursor); } else if (equalsIgnoreCase("remediationFunction", nodeName) || equalsIgnoreCase("debtRemediationFunction", nodeName)) { debtRemediationFunction = nodeValue(cursor); } else if (equalsIgnoreCase("remediationFunctionBaseEffort", nodeName) || equalsIgnoreCase("debtRemediationFunctionOffset", nodeName)) { debtRemediationFunctionGapMultiplier = nodeValue(cursor); } else if (equalsIgnoreCase("remediationFunctionGapMultiplier", nodeName) || equalsIgnoreCase("debtRemediationFunctionCoefficient", nodeName)) { debtRemediationFunctionBaseEffort = nodeValue(cursor); } else if (equalsIgnoreCase("status", nodeName)) { String s = nodeValue(cursor); if (s != null) { status = RuleStatus.valueOf(s); } } else if (equalsIgnoreCase("param", nodeName)) { params.add(processParameter(cursor)); } else if (equalsIgnoreCase("tag", nodeName)) { tags.add(nodeValue(cursor)); } } try { RulesDefinition.NewRule rule = repo.createRule(key).setSeverity(severity).setName(name) .setInternalKey(internalKey).setTags(tags.toArray(new String[tags.size()])) .setTemplate(template).setStatus(status).setGapDescription(gapDescription); if (type != null) { rule.setType(RuleType.valueOf(type)); } fillDescription(rule, descriptionFormat, description); fillRemediationFunction(rule, debtRemediationFunction, debtRemediationFunctionGapMultiplier, debtRemediationFunctionBaseEffort); fillParams(rule, params); } catch (Exception e) { throw new IllegalStateException(format("Fail to load the rule with key [%s:%s]", repo.key(), key), e); } } private static void fillDescription(RulesDefinition.NewRule rule, String descriptionFormat, @Nullable String description) { if (isNotBlank(description)) { switch (DescriptionFormat.valueOf(descriptionFormat)) { case HTML: rule.setHtmlDescription(description); break; case MARKDOWN: rule.setMarkdownDescription(description); break; default: throw new IllegalArgumentException( "Value of descriptionFormat is not supported: " + descriptionFormat); } } } private static void fillRemediationFunction(RulesDefinition.NewRule rule, @Nullable String debtRemediationFunction, @Nullable String functionOffset, @Nullable String functionCoeff) { if (isNotBlank(debtRemediationFunction)) { DebtRemediationFunction.Type functionType = DebtRemediationFunction.Type .valueOf(debtRemediationFunction); rule.setDebtRemediationFunction( rule.debtRemediationFunctions().create(functionType, functionCoeff, functionOffset)); } } private static void fillParams(RulesDefinition.NewRule rule, List<ParamStruct> params) { for (ParamStruct param : params) { rule.createParam(param.key).setDefaultValue(param.defaultValue).setType(param.type) .setDescription(param.description); } } private static String nodeValue(SMInputCursor cursor) throws XMLStreamException { return trim(cursor.collectDescendantText(false)); } private static class ParamStruct { String key; String description; String defaultValue; RuleParamType type = RuleParamType.STRING; } private static ParamStruct processParameter(SMInputCursor ruleC) throws XMLStreamException { ParamStruct param = new ParamStruct(); // BACKWARD COMPATIBILITY WITH DEPRECATED FORMAT String keyAttribute = ruleC.getAttrValue("key"); if (isNotBlank(keyAttribute)) { param.key = trim(keyAttribute); } // BACKWARD COMPATIBILITY WITH DEPRECATED FORMAT String typeAttribute = ruleC.getAttrValue("type"); if (isNotBlank(typeAttribute)) { param.type = RuleParamType.parse(typeAttribute); } SMInputCursor paramC = ruleC.childElementCursor(); while (paramC.getNext() != null) { String propNodeName = paramC.getLocalName(); String propText = nodeValue(paramC); if (equalsIgnoreCase("key", propNodeName)) { param.key = propText; } else if (equalsIgnoreCase("description", propNodeName)) { param.description = propText; } else if (equalsIgnoreCase("type", propNodeName)) { param.type = RuleParamType.parse(propText); } else if (equalsIgnoreCase("defaultValue", propNodeName)) { param.defaultValue = propText; } } return param; } }