aboutsummaryrefslogtreecommitdiff
path: root/scripts/file_script.py
diff options
context:
space:
mode:
authorLeo Yao <yaoleo34@gmail.com>2020-07-06 13:38:22 -0700
committerGitHub <noreply@github.com>2020-07-06 13:38:22 -0700
commitaa2b9ef32e0c9318e4416d4893b38c5aa230f000 (patch)
tree0f582c938abb1bdb70ff3b54ec74c694b0efa195 /scripts/file_script.py
parent89746990b73618255b0c2e602c8e0a8d233831c9 (diff)
downloadvcpkg-aa2b9ef32e0c9318e4416d4893b38c5aa230f000.tar.gz
vcpkg-aa2b9ef32e0c9318e4416d4893b38c5aa230f000.zip
[vcpkg] Added python script to generate all packages file list, added to azur… (#12177)
* Added python script to generate all packages file list, added to azure pipeline to build at the end of the run * fixed an issue that causes some leading slashes were being removed * Header Database now includes hpp files for C++ header files * Changed Header Database to include all files under \include\ folder * Apply suggestions from code review, changing condition from eq to ne Co-authored-by: Billy O'Neal <bion@microsoft.com> * Update last condition from eq to ne Co-authored-by: Billy O'Neal <bion@microsoft.com>
Diffstat (limited to 'scripts/file_script.py')
-rw-r--r--scripts/file_script.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/scripts/file_script.py b/scripts/file_script.py
new file mode 100644
index 000000000..1170c643f
--- /dev/null
+++ b/scripts/file_script.py
@@ -0,0 +1,39 @@
+import os
+import os.path
+import sys
+
+
+keyword = "include/"
+
+def getFiles(path):
+ files = os.listdir(path)
+ return list(filter(lambda x: x[0] != '.', files))
+
+def gen_all_file_strings(path, files, headers, output):
+ for file in files:
+ package = file[:file.find("_")]
+ f = open(path + file)
+ for line in f:
+ idx = line.strip().find(keyword)
+ if idx >= 0 and line.strip()[-1] != "/":
+ headers.write(package + ":" + line[idx + len(keyword):])
+ output.write(package + ":" + line[idx-1:])
+ elif line.strip()[-1] != "/":
+ output.write(package + ":" + line[line.find("/"):])
+ f.close()
+
+def main(path):
+ try:
+ os.mkdir("scripts/list_files")
+ except FileExistsError:
+ print("Path already exists, continuing...")
+
+ headers = open("scripts/list_files/VCPKGHeadersDatabase.txt", mode='w')
+ output = open("scripts/list_files/VCPKGDatabase.txt", mode='w')
+ gen_all_file_strings(path, getFiles(path), headers, output)
+ headers.close()
+ output.close()
+
+if __name__ == "__main__":
+ main(sys.argv[1])
+