Java tutorial
/* * JBoss, Home of Professional Open Source * Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual * contributors by the @authors tag. See the copyright.txt in the * distribution for a full listing of individual contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jboss.maven.plugins.qstools.fixers; import javax.xml.xpath.XPathConstants; import org.apache.maven.project.MavenProject; import org.codehaus.plexus.component.annotations.Component; import org.jboss.maven.plugins.qstools.xml.XMLUtil; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; /** * Fixer for {@link org.jboss.maven.plugins.qstools.checkers.MavenCompilerChecker} * * @author Paul Robinson */ @Component(role = QSFixer.class, hint = "MavenCompilerFixer") public class MavenCompilerFixer extends AbstractBaseFixerAdapter { @Override public String getFixerDescription() { return "Fix the maven.compiler.(source|target) from pom.xml files"; } @Override public void fixProject(MavenProject project, Document doc) throws Exception { String compilerSource = getConfigurationProvider().getQuickstartsRules(project.getGroupId()) .getExpectedCompilerSource(); ensurePropertiesElementExists(doc); ensurePropertySet(doc, "maven.compiler.target", compilerSource); ensurePropertySet(doc, "maven.compiler.source", compilerSource); Node compilerNode = (Node) getxPath().evaluate("//plugin[artifactId='maven-compiler-plugin']", doc, XPathConstants.NODE); Node compilerConfigNode = (Node) getxPath() .evaluate("//plugin[artifactId='maven-compiler-plugin']/./configuration", doc, XPathConstants.NODE); if (compilerNode != null && compilerConfigNode == null) { XMLUtil.removePreviousWhiteSpace(compilerNode); compilerNode.getParentNode().removeChild(compilerNode); } else if (compilerConfigNode != null) { removeConfigIfPresent(compilerConfigNode, "target"); removeConfigIfPresent(compilerConfigNode, "source"); } // Get comment over the element Node commentNode = null; if (compilerNode != null && compilerNode.getPreviousSibling() != null && compilerNode.getPreviousSibling() != null && compilerNode.getPreviousSibling().getPreviousSibling().getNodeType() == Node.COMMENT_NODE) { commentNode = compilerNode.getPreviousSibling().getPreviousSibling(); } // Remove compiler plugin if it doesn't have any configuration if (compilerConfigNode != null && !XMLUtil.hasChildElements(compilerConfigNode)) { // If the element had a comment, remove it too. if (commentNode != null) { XMLUtil.removePreviousWhiteSpace(commentNode); commentNode.getParentNode().removeChild(commentNode); } XMLUtil.removePreviousWhiteSpace(compilerNode); compilerNode.getParentNode().removeChild(compilerNode); } XMLUtil.writeXML(doc, project.getFile()); } private void removeConfigIfPresent(Node compilerConfigNode, String configItem) throws Exception { NodeList configs = compilerConfigNode.getChildNodes(); for (int i = 0; i < configs.getLength(); i++) { Node config = configs.item(i); if (config.getNodeName().equals(configItem)) { XMLUtil.removePreviousWhiteSpace(config); compilerConfigNode.removeChild(config); } } } private void ensurePropertySet(Document doc, String key, String value) throws Exception { Element propertiesElement = (Element) getxPath().evaluate("/project/properties", doc, XPathConstants.NODE); Element property = (Element) getxPath().evaluate("/project/properties/" + key, doc, XPathConstants.NODE); if (property == null) { Element targetElement = doc.createElement(key); targetElement.setTextContent(value); propertiesElement.appendChild(doc.createTextNode(" ")); propertiesElement.appendChild(targetElement); propertiesElement.appendChild(doc.createTextNode("\n ")); } else if (!property.getTextContent().equals(value)) { property.setTextContent(value); } } private void ensurePropertiesElementExists(Document doc) throws Exception { Element propertiesElement = (Element) getxPath().evaluate("/project/properties", doc, XPathConstants.NODE); if (propertiesElement == null) { propertiesElement = doc.createElement("properties"); Node projectElement = (Node) getxPath().evaluate("/project", doc, XPathConstants.NODE); projectElement.appendChild(doc.createTextNode("\n\n ")); projectElement.appendChild(propertiesElement); propertiesElement.appendChild(doc.createTextNode("\n ")); } } }