summaryrefslogtreecommitdiff
path: root/utils/sort_includes.py
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-12-04 07:04:58 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-12-04 07:04:58 +0000
commit6cb571968901701212570cbb2ab34cf4af6ba51e (patch)
tree178d3b2ef313718bdebe0dc79e44ac66c19af499 /utils/sort_includes.py
parent8a0ff3a2659e64408c76507ff0514748b6744b06 (diff)
downloadllvm-6cb571968901701212570cbb2ab34cf4af6ba51e.tar.gz
llvm-6cb571968901701212570cbb2ab34cf4af6ba51e.tar.bz2
llvm-6cb571968901701212570cbb2ab34cf4af6ba51e.tar.xz
Address review comments from Matt on the sort_includes.py script.
1) Teach it to handle files with #include on the first line -- these do actually exist in LLVM. 2) Support llvm-c and clang-c include projects. 3) Nuke some stail imports. 4) Switch to using os.path to split the file extension off. 5) Remove debugging leftovers. 6) Add docstring (a really puny one) for the sort function. I'm continuing te avoid stripping the whitespace on the RHS to preserve whatever newline characters happen to be in the original file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169222 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/sort_includes.py')
-rwxr-xr-xutils/sort_includes.py19
1 files changed, 9 insertions, 10 deletions
diff --git a/utils/sort_includes.py b/utils/sort_includes.py
index 81095d6358..9812cf1eff 100755
--- a/utils/sort_includes.py
+++ b/utils/sort_includes.py
@@ -10,13 +10,12 @@ welcome for more functionality, and sorting other header groups.
import argparse
import os
-import re
-import sys
-import tempfile
def sort_includes(f):
+ """Sort the #include lines of a specific file."""
lines = f.readlines()
- look_for_api_header = f.name[-4:] == '.cpp'
+ look_for_api_header = os.path.splitext(f.name)[1] == '.cpp'
+ found_headers = False
headers_begin = 0
headers_end = 0
api_headers = []
@@ -27,8 +26,9 @@ def sort_includes(f):
if l.strip() == '':
continue
if l.startswith('#include'):
- if headers_begin == 0:
+ if not found_headers:
headers_begin = i
+ found_headers = True
headers_end = i
header = l[len('#include'):].lstrip()
if look_for_api_header and header.startswith('"'):
@@ -38,7 +38,8 @@ def sort_includes(f):
if header.startswith('<'):
system_headers.append(header)
continue
- if header.startswith('"llvm/') or header.startswith('"clang/'):
+ if (header.startswith('"llvm/') or header.startswith('"llvm-c/') or
+ header.startswith('"clang/') or header.startswith('"clang-c/')):
project_headers.append(header)
continue
local_headers.append(header)
@@ -46,12 +47,12 @@ def sort_includes(f):
# Only allow comments and #defines prior to any includes. If either are
# mixed with includes, the order might be sensitive.
- if headers_begin != 0:
+ if found_headers:
break
if l.startswith('//') or l.startswith('#define') or l.startswith('#ifndef'):
continue
break
- if headers_begin == 0:
+ if not found_headers:
return
local_headers.sort()
@@ -61,8 +62,6 @@ def sort_includes(f):
header_lines = ['#include ' + h for h in headers]
lines = lines[:headers_begin] + header_lines + lines[headers_end + 1:]
- #for l in lines[headers_begin:headers_end]:
- # print l.rstrip()
f.seek(0)
f.truncate()
f.writelines(lines)