forked from Tencent/QMUI_iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathumbrellaHeaderFileCreator.py
66 lines (51 loc) · 2.07 KB
/
umbrellaHeaderFileCreator.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
#!/usr/bin/python
#coding:utf-8
import os
try:
import xml.etree.cElementTree as ET
except ImportError:
import xml.etree.ElementTree as ET
# 从 Info.plist 中读取 QMUIKit 的版本号,将其定义为一个 static const 常量以便代码里获取
infoFilePath = str(os.getenv('SRCROOT')) + '/QMUIKit/Info.plist'
infoTree = ET.parse(infoFilePath)
infoDictList = list(infoTree.find('dict'))
versionString = '0.0.0'
for index in range(len(infoDictList)):
element = infoDictList[index]
if element.text == 'CFBundleShortVersionString':
versionString = infoDictList[index + 1].text
break
# 读取头文件准备生成 umbrella file
publicHeaderFilePath = str(os.getenv('BUILT_PRODUCTS_DIR')) + '/' + os.getenv('PUBLIC_HEADERS_FOLDER_PATH')
print 'umbrella creator: publicHeaderFilePath = ' + publicHeaderFilePath
umbrellaHeaderFileName = 'QMUIKit.h'
umbrellaHeaderFilePath = str(os.getenv('SRCROOT')) + '/QMUIKit/' + umbrellaHeaderFileName
print 'umbrella creator: umbrellaHeaderFilePath = ' + umbrellaHeaderFilePath
umbrellaFileContent = '''/// Automatically created by script in Build Phases
#import <UIKit/UIKit.h>
#ifndef QMUIKit_h
#define QMUIKit_h
static NSString * const QMUI_VERSION = @"%s";
''' % (versionString)
onlyfiles = [ f for f in os.listdir(publicHeaderFilePath) if os.path.isfile(os.path.join(publicHeaderFilePath, f))]
onlyfiles.sort()
for filename in onlyfiles:
if filename != umbrellaHeaderFileName:
umbrellaFileContent += '''#if __has_include("%s")
#import "%s"
#endif
''' % (filename, filename)
umbrellaFileContent += '#endif /* QMUIKit_h */'
umbrellaFileContent = umbrellaFileContent.strip()
f = open(umbrellaHeaderFilePath, 'r+')
f.seek(0)
oldFileContent = f.read().strip()
if oldFileContent == umbrellaFileContent:
print 'umbrella creator: ' + umbrellaHeaderFileName + '的内容没有变化,不需要重写'
else:
print 'umbrella creator: ' + umbrellaHeaderFileName + '的内容发生变化,开始重写'
print 'umbrella creator: umbrellaFileContent = ' + umbrellaFileContent
f.seek(0)
f.write(umbrellaFileContent)
f.truncate()
f.close()