-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPodGraph.py
95 lines (82 loc) · 2.62 KB
/
PodGraph.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/usr/bin/env python
# coding: utf-8
import re
import os
import sys
def dependencyTreeLine(fileLine):
fileLine = fileLine.replace('\n', '')
if fileLine == 'PODS:':
print('pods head: ' + fileLine)
return ''
elif fileLine == 'DEPENDENCIES:':
print('stop reading file')
outputDotFile()
dotFileToPdf()
exit()
else:
return fileLine
branketDelete = re.compile(r' \(.*\)')
def removePodVersion(podLine):
if podLine == None:
return
cleanVersionLine = branketDelete.sub('', podLine)
return cleanVersionLine
slashDelete = re.compile(r'\/.*')
def removeSubspecLine(line):
if line == None:
return
cleanSubspecLine = slashDelete.sub('', line)
if line.endswith(':'):
cleanSubspecLine + ':'
return cleanSubspecLine
rootNode = ''
uniqSet = set([])
def treeToEdge(cleanTreeLine):
global rootNode
global uniqSet
if cleanTreeLine == None:
return
if cleanTreeLine.endswith(':') and cleanTreeLine.startswith(' - '):
rootNode = cleanTreeLine.replace(' - ', '')
rootNode = rootNode.replace(':', '')
return
elif cleanTreeLine.startswith(' - '):
return
# leaf node
else:
leafNode = cleanTreeLine.replace(' - ', '')
# 防止 AFNetworking -> AFNetworking 这种情况
if rootNode != leafNode:
uniqSet.add('"' + rootNode + '"' + ' -> ' + '"' + leafNode + '";')
def outputDotFile():
global uniqSet
writeFileRef = open('PodGraph.dot', 'w')
# 节点和边的 UI 设置
writeFileRef.write('digraph {\n\n')
writeFileRef.write('ranksep=1.5;\n')
writeFileRef.write('nodesep=0.1;\n')
writeFileRef.write('edge [color=gray];\n')
writeFileRef.write('node [shape=box fontcolor=blue fontname=Menlo fontsize=20];\n')
# 把保存在 uniqSet 的文本写入文件
for dotLine in uniqSet:
if dotLine == None:
continue
dotLine = dotLine + '\n'
writeFileRef.write(dotLine)
writeFileRef.write('\n}')
writeFileRef.close()
def dotFileToPdf():
os.system('/usr/local/bin/dot PodGraph.dot -Tpdf -o PodGraph.pdf')
os.system('rm PodGraph.dot')
os.system('open PodGraph.pdf')
pass
def main():
podfileLockPath = sys.argv[1]
with open(podfileLockPath, 'r') as podFileRef:
for fileLine in podFileRef.readlines():
podLine = dependencyTreeLine(fileLine)
cleanVersionLine = removePodVersion(podLine)
cleanSubspecLine = removeSubspecLine(cleanVersionLine)
treeToEdge(cleanSubspecLine)
if __name__ == '__main__':
main()