All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xebia.mojo.dashboard.reports.html.CheckstyleDashboardReport Maven / Gradle / Ivy

Go to download

This plugin provides a Dashboard for a Maven2 site. This dashboard closely resembles the one which is available in Maven1.

There is a newer version: 0.8.22
Show newest version
/*
 * Copyright The Sett Ltd, 2005 to 2014.
 *
 * 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 com.xebia.mojo.dashboard.reports.html;

import java.util.Arrays;
import java.util.List;

import com.xebia.mojo.dashboard.DashboardReport;
import com.xebia.mojo.dashboard.reports.HtmlFileXPathReport;
import com.xebia.mojo.dashboard.util.XmlUtil;

import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.project.MavenProject;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;
import org.dom4j.Node;

/**
 * {@link DashboardReport} for checkstyle.
 *
 * @author Maarten Winkels
 */
public class CheckstyleDashboardReport extends HtmlFileXPathReport
{
    private static final String XPATH = ".//table[@class='bodyTable']//tr[@class='b']";

    private static final List COLUMN_NAMES = Arrays.asList(new String[] { "files", "infos", "warnings", "errors" });

    public CheckstyleDashboardReport()
    {
        // Use the same string 4 times.
        super(new String[] { XPATH, XPATH, XPATH, XPATH });
    }

    /** {@inheritDoc} */
    public List getColumnNames()
    {
        return COLUMN_NAMES;
    }

    /** {@inheritDoc} */
    public String getHeaderForColumn(int number)
    {
        switch (number)
        {
        case 0:
            return "Files";

        case 1:
            return "Info";

        case 2:
            return "Warn";

        case 3:
            return "Error";

        default:
            return XmlUtil.NBSP;
        }
    }

    /** {@inheritDoc} */
    public String title()
    {
        return "CheckStyle";
    }

    /** {@inheritDoc} */
    public String getLinkLocation()
    {
        return "checkstyle.html";
    }

    /** {@inheritDoc} */
    protected String getReportFileName()
    {
        return "checkstyle.html";
    }

    /** {@inheritDoc} */
    protected Node postProcess(MavenProject subProject, Node node, int column) throws MojoExecutionException
    {
        Node n = xmlUtil.getChild(node, column);

        if (n instanceof Element)
        {
            n = DocumentHelper.createText(((Element) n).getText());
        }

        return n;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy