Search in sources :

Example 1 with HtmlAstScanner

use of org.sonar.plugins.html.visitor.HtmlAstScanner in project sonar-web by SonarSource.

the class HeaderCheckTest method scanWithWrongInputFile.

public static void scanWithWrongInputFile(File file, DefaultNodeVisitor visitor) {
    HtmlAstScanner walker = new HtmlAstScanner(Collections.emptyList());
    walker.addVisitor(visitor);
    FileReader reader;
    try {
        reader = new FileReader(file);
    } catch (Exception e) {
        throw new IllegalArgumentException("unable to read file");
    }
    HtmlSourceCode result = new HtmlSourceCode(new TestInputFileBuilder("key", /* wrong path */
    ".").setLanguage(HtmlConstants.LANGUAGE_KEY).setType(InputFile.Type.MAIN).setModuleBaseDir(new File(".").toPath()).build());
    walker.scan(new PageLexer().parse(reader), // won't be able to resolve the file
    result);
}
Also used : TestInputFileBuilder(org.sonar.api.batch.fs.internal.TestInputFileBuilder) PageLexer(org.sonar.plugins.html.lex.PageLexer) FileReader(java.io.FileReader) HtmlSourceCode(org.sonar.plugins.html.visitor.HtmlSourceCode) InputFile(org.sonar.api.batch.fs.InputFile) File(java.io.File) HtmlAstScanner(org.sonar.plugins.html.visitor.HtmlAstScanner) ExpectedException(org.junit.rules.ExpectedException)

Example 2 with HtmlAstScanner

use of org.sonar.plugins.html.visitor.HtmlAstScanner in project sonar-web by SonarSource.

the class TestHelper method scan.

public static HtmlSourceCode scan(File file, DefaultNodeVisitor visitor) {
    FileReader fileReader;
    try {
        fileReader = new FileReader(file);
    } catch (FileNotFoundException e) {
        throw new IllegalStateException(e);
    }
    HtmlSourceCode result = new HtmlSourceCode(new TestInputFileBuilder("key", file.getPath()).setLanguage(HtmlConstants.LANGUAGE_KEY).setType(InputFile.Type.MAIN).setModuleBaseDir(new File(".").toPath()).setCharset(StandardCharsets.UTF_8).build());
    HtmlAstScanner walker = new HtmlAstScanner(Arrays.asList(new PageCountLines(), new ComplexityVisitor()));
    walker.addVisitor(visitor);
    walker.scan(new PageLexer().parse(fileReader), result);
    return result;
}
Also used : TestInputFileBuilder(org.sonar.api.batch.fs.internal.TestInputFileBuilder) PageLexer(org.sonar.plugins.html.lex.PageLexer) ComplexityVisitor(org.sonar.plugins.html.analyzers.ComplexityVisitor) FileNotFoundException(java.io.FileNotFoundException) PageCountLines(org.sonar.plugins.html.analyzers.PageCountLines) FileReader(java.io.FileReader) HtmlSourceCode(org.sonar.plugins.html.visitor.HtmlSourceCode) InputFile(org.sonar.api.batch.fs.InputFile) File(java.io.File) HtmlAstScanner(org.sonar.plugins.html.visitor.HtmlAstScanner)

Example 3 with HtmlAstScanner

use of org.sonar.plugins.html.visitor.HtmlAstScanner in project sonar-web by SonarSource.

the class PageCountLinesTest method setUp.

@Before
public void setUp() {
    lexer = new PageLexer();
    scanner = new HtmlAstScanner(Collections.emptyList());
    scanner.addVisitor(new PageCountLines());
}
Also used : PageLexer(org.sonar.plugins.html.lex.PageLexer) HtmlAstScanner(org.sonar.plugins.html.visitor.HtmlAstScanner) Before(org.junit.Before)

Example 4 with HtmlAstScanner

use of org.sonar.plugins.html.visitor.HtmlAstScanner in project sonar-web by SonarSource.

the class HtmlSensor method execute.

@Override
public void execute(SensorContext sensorContext) {
    FileSystem fileSystem = sensorContext.fileSystem();
    // configure page scanner and the visitors
    final HtmlAstScanner scanner = setupScanner(sensorContext);
    FilePredicates predicates = fileSystem.predicates();
    Iterable<InputFile> inputFiles = fileSystem.inputFiles(predicates.and(predicates.hasType(InputFile.Type.MAIN), predicates.or(predicates.hasLanguages(HtmlConstants.LANGUAGE_KEY, HtmlConstants.JSP_LANGUAGE_KEY), predicates.or(Stream.of(OTHER_FILE_SUFFIXES).map(predicates::hasExtension).toArray(FilePredicate[]::new)))));
    for (InputFile inputFile : inputFiles) {
        if (sensorContext.isCancelled()) {
            return;
        }
        HtmlSourceCode sourceCode = new HtmlSourceCode(inputFile);
        try (Reader reader = new InputStreamReader(inputFile.inputStream(), inputFile.charset())) {
            PageLexer lexer = inputFile.filename().endsWith(".vue") ? new VueLexer() : new PageLexer();
            scanner.scan(lexer.parse(reader), sourceCode);
            saveMetrics(sensorContext, sourceCode);
            saveLineLevelMeasures(inputFile, sourceCode);
        } catch (Exception e) {
            LOG.error("Cannot analyze file " + inputFile, e);
            sensorContext.newAnalysisError().onFile(inputFile).message(e.getMessage()).save();
        }
    }
}
Also used : VueLexer(org.sonar.plugins.html.lex.VueLexer) PageLexer(org.sonar.plugins.html.lex.PageLexer) InputStreamReader(java.io.InputStreamReader) FileSystem(org.sonar.api.batch.fs.FileSystem) FilePredicates(org.sonar.api.batch.fs.FilePredicates) Reader(java.io.Reader) InputStreamReader(java.io.InputStreamReader) HtmlSourceCode(org.sonar.plugins.html.visitor.HtmlSourceCode) HtmlAstScanner(org.sonar.plugins.html.visitor.HtmlAstScanner) InputFile(org.sonar.api.batch.fs.InputFile)

Example 5 with HtmlAstScanner

use of org.sonar.plugins.html.visitor.HtmlAstScanner in project sonar-web by SonarSource.

the class HtmlSensor method setupScanner.

/**
 * Create PageScanner with Visitors.
 */
private HtmlAstScanner setupScanner(SensorContext context) {
    List<DefaultNodeVisitor> visitors = new ArrayList<>();
    if (context.runtime().getProduct() != SonarProduct.SONARLINT) {
        visitors.add(new HtmlTokensVisitor(context));
    }
    visitors.add(new PageCountLines());
    visitors.add(new ComplexityVisitor());
    visitors.add(new NoSonarScanner(noSonarFilter));
    HtmlAstScanner scanner = new HtmlAstScanner(visitors);
    for (Object check : checks.all()) {
        ((AbstractPageCheck) check).setRuleKey(checks.ruleKey(check));
        scanner.addVisitor((AbstractPageCheck) check);
    }
    return scanner;
}
Also used : ComplexityVisitor(org.sonar.plugins.html.analyzers.ComplexityVisitor) DefaultNodeVisitor(org.sonar.plugins.html.visitor.DefaultNodeVisitor) ArrayList(java.util.ArrayList) PageCountLines(org.sonar.plugins.html.analyzers.PageCountLines) NoSonarScanner(org.sonar.plugins.html.visitor.NoSonarScanner) AbstractPageCheck(org.sonar.plugins.html.checks.AbstractPageCheck) HtmlAstScanner(org.sonar.plugins.html.visitor.HtmlAstScanner)

Aggregations

HtmlAstScanner (org.sonar.plugins.html.visitor.HtmlAstScanner)5 PageLexer (org.sonar.plugins.html.lex.PageLexer)4 InputFile (org.sonar.api.batch.fs.InputFile)3 HtmlSourceCode (org.sonar.plugins.html.visitor.HtmlSourceCode)3 File (java.io.File)2 FileReader (java.io.FileReader)2 TestInputFileBuilder (org.sonar.api.batch.fs.internal.TestInputFileBuilder)2 ComplexityVisitor (org.sonar.plugins.html.analyzers.ComplexityVisitor)2 PageCountLines (org.sonar.plugins.html.analyzers.PageCountLines)2 FileNotFoundException (java.io.FileNotFoundException)1 InputStreamReader (java.io.InputStreamReader)1 Reader (java.io.Reader)1 ArrayList (java.util.ArrayList)1 Before (org.junit.Before)1 ExpectedException (org.junit.rules.ExpectedException)1 FilePredicates (org.sonar.api.batch.fs.FilePredicates)1 FileSystem (org.sonar.api.batch.fs.FileSystem)1 AbstractPageCheck (org.sonar.plugins.html.checks.AbstractPageCheck)1 VueLexer (org.sonar.plugins.html.lex.VueLexer)1 DefaultNodeVisitor (org.sonar.plugins.html.visitor.DefaultNodeVisitor)1