| // Copyright 2017 The Bazel Authors. All rights reserved. |
| // |
| // 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.google.devtools.skylark.skylint; |
| |
| import java.io.IOException; |
| import java.nio.file.NoSuchFileException; |
| import java.nio.file.Path; |
| import java.nio.file.Paths; |
| import java.util.ArrayList; |
| import java.util.List; |
| |
| /** The main class for the skylint binary. */ |
| public class Skylint { |
| public static void main(String[] args) { |
| List<Path> paths = new ArrayList<>(); |
| List<String> disabledChecks = new ArrayList<>(); |
| for (String arg : args) { |
| if (arg.startsWith("--disable=")) { |
| String[] checks = arg.substring("--disable=".length()).split(","); |
| for (String check : checks) { |
| if (check.isEmpty()) { |
| continue; |
| } |
| disabledChecks.add(check); |
| } |
| } else { |
| paths.add(Paths.get(arg)); |
| } |
| } |
| boolean issuesFound = false; |
| Linter linter = new Linter(); |
| for (String checkerName : disabledChecks) { |
| linter.disable(checkerName); |
| } |
| for (Path path : paths) { |
| List<Issue> issues; |
| try { |
| issues = linter.lint(path); |
| } catch (IOException e) { |
| issuesFound = true; |
| if (e instanceof NoSuchFileException) { |
| System.err.println("File not found: " + path); |
| } else { |
| System.err.println("Error trying to read " + path); |
| e.printStackTrace(); |
| } |
| continue; |
| } |
| if (!issues.isEmpty()) { |
| issuesFound = true; |
| for (Issue issue : issues) { |
| System.out.println(issue.prettyPrint(path.toString())); |
| } |
| } |
| } |
| System.exit(issuesFound ? 1 : 0); |
| } |
| } |