Package org.sonar.plugins.cxx.compiler

Source Code of org.sonar.plugins.cxx.compiler.CxxCompilerVcParser

/*
* Sonar C++ Plugin (Community)
* Copyright (C) 2010 Neticoa SAS France
* 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 org.sonar.plugins.cxx.compiler;

import java.io.File;
import java.util.List;
import java.util.Scanner;
import java.util.regex.Pattern;
import org.sonar.plugins.cxx.utils.CxxUtils;

/**
* {@inheritDoc}
*/
public class CxxCompilerVcParser implements CompilerParser {
  public static final String KEY = "Visual C++";
  // search for single line with compiler warning message - order for groups: 1 = file, 2 = line, 3 = ID, 4=message
  public static final String DEFAULT_REGEX_DEF = "^.*[\\\\,/](.*)\\(([0-9]+)\\)\\x20:\\x20warning\\x20(C\\d\\d\\d\\d):(.*)$";
  // ToDo: as long as java 7 API is not used the support of named groups for regular expression is not possible
  // sample regex: "^.*[\\\\,/](?<filename>.*)\\((?<line>[0-9]+)\\)\\x20:\\x20warning\\x20(?<id>C\\d\\d\\d\\d):(?<message>.*)$";
  // get value with e.g. scanner.match().group("filename");
  public static final String DEFAULT_CHARSET_DEF = "UTF-16";
  public static final String DEFAULT_REPORT_PATH = "compiler-reports/BuildLog.htm";

  /**
   * {@inheritDoc}
   */
  public String key() {
    return KEY;
  }

  /**
   * {@inheritDoc}
   */
  public String rulesRepositoryKey() {
    return CxxCompilerVcRuleRepository.KEY;
  }

  /**
   * {@inheritDoc}
   */
  public String defaultReportPath() {
    return DEFAULT_REPORT_PATH;
  }

  /**
   * {@inheritDoc}
   */
  public String defaultRegexp() {
    return DEFAULT_REGEX_DEF;
  }

  /**
   * {@inheritDoc}
   */
  public String defaultCharset() {
    return DEFAULT_CHARSET_DEF;
  }

  /**
   * {@inheritDoc}
   */
  public void ParseReport(File report, String charset, String reportRegEx, List<Warning> warnings) throws java.io.FileNotFoundException {
    Scanner scanner = new Scanner(report, charset);
    Pattern p = Pattern.compile(reportRegEx, Pattern.MULTILINE);
    CxxUtils.LOG.debug("Using pattern : '" + p.toString() + "'");
    while (scanner.findWithinHorizon(p, 0) != null) {
      String filename = scanner.match().group(1);
      String line = scanner.match().group(2);
      String id = scanner.match().group(3);
      String msg = scanner.match().group(4);
      CxxUtils.LOG.debug("Scanner-matches file='" + filename + "' line='" + line + "' id='" + id + "' msg=" + msg);
      warnings.add(new Warning(filename, line, id, msg));
    }
    scanner.close();
  }
 
  @Override
  public String toString() {
    return getClass().getSimpleName();
  }
}
TOP

Related Classes of org.sonar.plugins.cxx.compiler.CxxCompilerVcParser

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.