-
-
Notifications
You must be signed in to change notification settings - Fork 327
/
Copy pathdump-known-file-extensions.py
executable file
·62 lines (49 loc) · 1.56 KB
/
dump-known-file-extensions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
import json
import os
import plistlib
import re
import subprocess
import sys
def parse_xcspec(path):
# convert ASCII plist to XML format and read as string
xml_string = subprocess.check_output([
'plutil', '-convert', 'xml1', '-o', '-', '--', path])
return plistlib.readPlistFromString(xml_string)
def extract_extensions(path, into={}):
data = parse_xcspec(path)
extracted = 0
if isinstance(data, list):
for item in data:
if 'Identifier' in item and 'Extensions' in item:
ident = item['Identifier']
for ext in item['Extensions']:
into[ext] = ident
extracted += 1
if extracted > 0:
sys.stderr.write('** Extracted {} extensions from {}\n'.format(
extracted, path))
return into
def run(xcode_path):
plugins_path = os.path.join(xcode_path, 'Contents', 'PlugIns')
matcher = re.compile(r'\.(xcspec|pbfilespec)$')
all_extensions = {}
for root, dirs, files in os.walk(plugins_path):
for file in files:
if matcher.search(file):
path = os.path.join(root, file)
extract_extensions(path, all_extensions)
json.dump(
all_extensions,
sys.stdout,
sort_keys=True,
indent=4,
separators=(',', ': ')
)
if __name__ == '__main__':
if len(sys.argv) == 2:
run(sys.argv[1])
else:
sys.stderr.write('usage: {} /path/to/Xcode.app\n'.format(
os.path.basename(sys.argv[0])))
exit(1)