lint.py
Go to the documentation of this file.
1 """
2 The lint command lints a package.
3 
4 Copyright 2015 Fetch Robotics Inc.
5 Author: Alex Henning
6 """
7 
8 import fnmatch
9 import os
10 import subprocess
11 import sys
12 
13 name = "lint"
14 help_text = "Lint a package in your workspace"
15 
16 
17 def main(args):
18  # TODO(enhancement): Allow level of detail to be controlled
19  # TODO(enhancement): Allow catkin_lint to be turned off
20  # TODO(enhancement): Allow C++ to be turned off
21  # TODO(enhancement): Allow python to be turned off
22 
23  if os.path.isfile(args.package):
24  print "Linting file %s" % (args.package)
25  print "-------------" + ("-" * len(args.package)) + "\n"
26  for ending in cpp_endings:
27  if args.package.endswith(ending):
28  sys.exit(cpplint([args.package]))
29  if args.package.endswith(".py"):
30  sys.exit(pep8([args.package]))
31  print "ERROR: can't lint file"
32  sys.exit(1)
33  elif os.path.isdir(args.package):
34  print "Linting directory %s" % (args.package)
35  print "------------------" + ("-" * len(args.package)) + "\n"
36  sys.exit(lint_directory(args.package))
37  else:
38  print "Linting package %s" % (args.package)
39  print "----------------" + ("-" * len(args.package)) + "\n"
40  sys.exit(lint_package(args.package))
41 
42 
43 def add_arguments(parser):
44  parser.add_argument("package", action="store",
45  metavar="FILE|DIRECTORY|PACKAGE",
46  help="File, directory or ROS package to lint")
47 
48 
49 def merge(c1, c2):
50  return c2 if c2 != 0 else c1
51 
52 
53 def lint_package(package):
54  proc = subprocess.Popen(["catkin_lint", "--pkg", package,
55  "-W2", "--explain"])
56  proc.wait()
57  if proc.returncode != 0:
58  print "WARNING: Catkin lint failed"
59  returncode = proc.returncode
60  print
61 
62  package_directory = subprocess.check_output(["rospack", "find", package]) \
63  .strip()
64  return merge(lint_directory(package_directory), returncode)
65 
66 
67 def lint_directory(directory):
68  cpp_files = []
69  for root, _, filenames in os.walk(directory):
70  for ending in cpp_endings:
71  for filename in fnmatch.filter(filenames, "*"+ending):
72  cpp_files.append(os.path.join(root, filename))
73  returncode = cpplint(cpp_files)
74  print
75 
76  py_files = []
77  for root, _, filenames in os.walk(directory):
78  for filename in fnmatch.filter(filenames, "*.py"):
79  py_files.append(os.path.join(root, filename))
80  returncode = merge(pep8(py_files), returncode)
81  return returncode
82 
83 
84 cpp_endings = [".c", ".cpp", ".cc", ".h", ".hpp", ".hh"]
85 
86 
87 def cpplint(files):
88  if files:
89  proc = subprocess.Popen([
90  "/opt/ros/melodic/lib/roslint/cpplint",
91  "--counting=detailed",
92  "--filter=+,-runtime/references,-runtime/threadsafe_fn",
93  ] + files)
94  proc.wait()
95  if proc.returncode != 0:
96  print "WARNING: C++ lint failed"
97  return proc.returncode
98  return 0
99 
100 
101 def pep8(files):
102  acceptable = [
103  "R0902", # Allow for many class attributes.
104  "C0111", # Docstrings in ## style (required by Doxygen) are not.
105  # recognized, so ignore warning that they are missing.
106  "C0103", # Allows 'constant' names to be lower case. This is normal
107  # in the if __name__ == '__main__' block.
108  "C0325", # Don't complain about print() vs print.
109  "W0142", # ** arguments are ok. Just a little "magic".
110  "R0913", # Allow for more than 4 arguments to _init__.
111  "R0903", # Allow classes to have one or two public methods.
112  "E266", # Allow comments to start with "## " for doxygen
113  ]
114  if files:
115  proc = subprocess.Popen([
116  "/opt/ros/melodic/lib/roslint/pep8",
117  "--ignore=" + ",".join(acceptable),
118  "--statistics",
119  "--count"
120  ] + files)
121  proc.wait()
122  if proc.returncode != 0:
123  print "WARNING: Python lint failed"
124  return proc.returncode
125  return 0
def add_arguments(parser)
Definition: lint.py:43
def cpplint(files)
Definition: lint.py:87
def merge(c1, c2)
Definition: lint.py:49
def lint_package(package)
Definition: lint.py:53
def lint_directory(directory)
Definition: lint.py:67


fetch_tools
Author(s): Alex Henning
autogenerated on Mon Feb 28 2022 22:19:10