com.stevpet.sonar.plugins.dotnet.resharper.customseverities.FileCustomSeverities.java Source code

Java tutorial

Introduction

Here is the source code for com.stevpet.sonar.plugins.dotnet.resharper.customseverities.FileCustomSeverities.java

Source

/*
 * Sonar .NET Plugin :: ReSharper
 * Copyright (C) 2013 John M. Wright
 * dev@sonar.codehaus.org
 *
 * 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  02
 */

package com.stevpet.sonar.plugins.dotnet.resharper.customseverities;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;

import org.apache.commons.io.input.BOMInputStream;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.xml.sax.InputSource;

import com.stevpet.sonar.plugins.dotnet.resharper.ReSharperConfiguration;

public class FileCustomSeverities extends BaseCustomSeverities {

    private static final Logger LOG = LoggerFactory.getLogger(FileCustomSeverities.class);

    /**
     * Create inputsource for a file
     * Creates inputstream, removes BOM
     * @return null in case file could not be opened, otherwise inputsource for the file
     */
    @Override
    InputSource createInputSource(String path) {
        try {
            LOG.trace("Using " + path);
            InputStream fileReader = new FileInputStream(path);
            InputStream inputStream = new BOMInputStream(fileReader);
            return new InputSource(inputStream);
        } catch (FileNotFoundException e) {
            LOG.error("could not open " + path + "defined in " + ReSharperConfiguration.CUSTOM_SEVERITIES_PATH
                    + " reason:", e);
        }
        return null;
    }

    @Override
    String getDefinitionKey() {
        return ReSharperConfiguration.CUSTOM_SEVERITIES_PATH;
    }

}