| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
| 4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 """Tool for listing Dart source files. | 6 """Tool for listing Dart source files. |
| 7 | 7 |
| 8 Usage: | 8 Usage: |
| 9 python tools/list_dart_files.py <directory> <root directory pattern> | 9 python tools/list_dart_files.py <directory> <root directory pattern> |
| 10 """ | 10 """ |
| 11 | 11 |
| 12 import os | 12 import os |
| 13 import re | 13 import re |
| 14 import sys | 14 import sys |
| 15 | 15 |
| 16 | 16 |
| 17 def main(argv): | 17 def main(argv): |
| 18 directory = argv[1] | 18 directory = argv[1] |
| 19 if not os.path.isabs(directory): |
| 20 directory = os.path.realpath(directory) |
| 19 | 21 |
| 20 pattern = None | 22 pattern = None |
| 21 if len(argv) > 2: | 23 if len(argv) > 2: |
| 22 pattern = re.compile(argv[2]) | 24 pattern = re.compile(argv[2]) |
| 23 | 25 |
| 24 for root, directories, files in os.walk(directory): | 26 for root, directories, files in os.walk(directory): |
| 25 # We only care about actual source files, not generated code or tests. | 27 # We only care about actual source files, not generated code or tests. |
| 26 for skip_dir in ['.git', 'gen', 'test']: | 28 for skip_dir in ['.git', 'gen', 'test']: |
| 27 if skip_dir in directories: | 29 if skip_dir in directories: |
| 28 directories.remove(skip_dir) | 30 directories.remove(skip_dir) |
| 29 | 31 |
| 30 # If we are looking at the root directory, filter the immediate | 32 # If we are looking at the root directory, filter the immediate |
| 31 # subdirectories by the given pattern. | 33 # subdirectories by the given pattern. |
| 32 if pattern and root == directory: | 34 if pattern and root == directory: |
| 33 directories[:] = filter(pattern.match, directories) | 35 directories[:] = filter(pattern.match, directories) |
| 34 | 36 |
| 35 for filename in files: | 37 for filename in files: |
| 36 if filename.endswith('.dart') and not filename.endswith('_test.dart'): | 38 if filename.endswith('.dart') and not filename.endswith('_test.dart'): |
| 37 fullname = os.path.relpath(os.path.join(root, filename)) | 39 fullname = os.path.join(directory, root, filename) |
| 38 fullname = fullname.replace(os.sep, '/') | 40 fullname = fullname.replace(os.sep, '/') |
| 39 print fullname | 41 print fullname |
| 40 | 42 |
| 41 | 43 |
| 42 if __name__ == '__main__': | 44 if __name__ == '__main__': |
| 43 sys.exit(main(sys.argv)) | 45 sys.exit(main(sys.argv)) |
| OLD | NEW |