forked from Sarbojit2019/hipBLAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rdeps.py
235 lines (201 loc) · 7.8 KB
/
rdeps.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#!/usr/bin/python3
"""Copyright (C) 2021-2022 Advanced Micro Devices, Inc. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell cop-
ies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IM-
PLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNE-
CTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
"""
import re
import sys
import os
import platform
import subprocess
import argparse
import pathlib
from xml.dom import minidom
from fnmatch import fnmatchcase
SCRIPT_VERSION = 0.1
args = {}
param = {}
OS_info = {}
var_subs = {}
vcpkg_script = [ 'mkdir %IDIR%', 'cd %IDIR%', 'tdir %IDIR%\\vcpkg',
'git clone -b 2022.05.10 https://github.com/microsoft/vcpkg', 'cd vcpkg', 'bootstrap-vcpkg.bat -disableMetrics' ]
xml_script = [ 'cd %IDIR%', '%XML%' ]
def parse_args():
"""Parse command-line arguments"""
parser = argparse.ArgumentParser(description="""
Checks build arguments
""")
# parser.add_argument('--install', required=False, default = True, action='store_true',
# help='Install dependencies (optional, default: True)')
parser.add_argument('-i', '--install_dir', type=str, required=False, default = ("C:\\github" if os.name == "nt" else "./build/deps"),
help='Install directory path (optional, default: C:\\github)')
# parser.add_argument('-v', '--verbose', required=False, default = False, action='store_true',
# help='Verbose install (optional, default: False)')
return parser.parse_args()
def os_detect():
global OS_info
if os.name == "nt":
OS_info["ID"] = platform.system()
else:
inf_file = "/etc/os-release"
if os.path.exists(inf_file):
with open(inf_file) as f:
for line in f:
if "=" in line:
k,v = line.strip().split("=")
OS_info[k] = v.replace('"','')
OS_info["NUM_PROC"] = os.cpu_count()
print(OS_info)
def create_dir(dir_path):
if os.path.isabs(dir_path):
full_path = dir_path
else:
full_path = os.path.join( os.getcwd(), dir_path )
return pathlib.Path(full_path).mkdir(parents=True, exist_ok=True)
def delete_dir(dir_path) :
if (not os.path.exists(dir_path)):
return
if os.name == "nt":
return run_cmd( "RMDIR" , f"/S /Q {dir_path}")
else:
linux_path = pathlib.Path(dir_path).absolute()
return run_cmd( "rm" , f"-rf {linux_path}")
def run_cmd(cmd):
global args
if (cmd.startswith('cd ')):
return os.chdir(cmd[3:])
if (cmd.startswith('mkdir ')):
return create_dir(cmd[6:])
cmdline = f"{cmd}"
print(cmdline)
proc = subprocess.run(cmdline, check=True, stderr=subprocess.STDOUT, shell=True)
return proc.returncode
def install_deps( os_node ):
global var_subs
if os.name == "nt":
vc_node = os_node.getElementsByTagName('vcpkg')
if vc_node:
cwd = pathlib.os.curdir
cmdline = "cd %IDIR%\\vcpkg"
cd_vcpkg = cmdline.replace('%IDIR%', args.install_dir)
run_cmd(cd_vcpkg)
for p in vc_node[0].getElementsByTagName('pkg'):
name = p.getAttribute('name')
package = p.firstChild.data
if name:
print( f'***\n*** VCPKG Installing: {name}\n***' )
raw_cmd = p.firstChild.data
var_cmd = raw_cmd.format_map(var_subs)
error = run_cmd( f'vcpkg.exe install {var_cmd}')
os.chdir(cwd)
else:
cwd = pathlib.os.curdir
create_dir( args.install_dir )
# TODO
os.chdir( cwd )
pip_node = os_node.getElementsByTagName('pip')
if pip_node:
for p in pip_node[0].getElementsByTagName('pkg'):
name = p.getAttribute('name')
package = p.firstChild.data
if name:
print( f'***\n*** Pip Installing: {name}\n***' )
raw_cmd = p.firstChild.data
var_cmd = raw_cmd.format_map(var_subs)
error = run_cmd( f'pip install {var_cmd}')
def run_install_script(script, xml):
'''executes a simple batch style install script, the scripts are defined at top of file'''
global OS_info
global args
global var_subs
#
cwd = pathlib.os.curdir
fail = False
for i in range(len(script)):
cmdline = script[i]
cmd = cmdline.replace('%IDIR%', args.install_dir)
if cmd.startswith('tdir '):
if pathlib.Path(cmd[5:]).exists():
return 0 # all further cmds skipped
else:
continue
error = False
if cmd.startswith('%XML%'):
fileversion = xml.getElementsByTagName('fileversion')
if len(fileversion) == 0:
print("WARNING: Could not find the version of this xml configuration file.")
elif len(fileversion) > 1:
print("WARNING: Multiple version tags found.")
else:
version = float(fileversion[0].firstChild.data)
if version > SCRIPT_VERSION:
print(f"ERROR: This xml requires script version >= {version}, running script version {SCRIPT_VERSION}")
exit(1)
for var in xml.getElementsByTagName('var'):
name = var.getAttribute('name')
if var.hasAttribute('value'):
val = var.getAttribute('value')
elif var.firstChild is not None:
val = var.firstChild.data
else:
val = ""
var_subs[name] = val
for os_node in xml.getElementsByTagName('os'):
os_names = os_node.getAttribute('names')
os_list = os_names.split(',')
if (OS_info['ID'] in os_list) or ("all" in os_list):
error = install_deps( os_node )
else:
error = run_cmd(cmd)
fail = fail or error
if (fail):
if (cmd == "%XML%"):
print(f"FAILED xml dependency installation!")
else:
print(f"ERROR running: {cmd}")
if (os.curdir != cwd):
os.chdir( cwd )
return 1
if (os.curdir != cwd):
os.chdir( cwd )
return 0
def installation():
global vcpkg_script
global xml_script
global xmlDoc
# install
cwd = os.curdir
xmlPath = os.path.join( cwd, 'rdeps.xml')
xmlDoc = minidom.parse( xmlPath )
scripts = []
if os.name == "nt" and xmlDoc.getElementsByTagName('vcpkg'):
scripts.append( vcpkg_script )
scripts.append( xml_script )
for i in scripts:
if (run_install_script(i, xmlDoc)):
#print("Failure in script. ABORTING")
if (os.curdir != cwd):
os.chdir( cwd )
return 1
if (os.curdir != cwd):
os.chdir( cwd )
return 0
def main():
global args
os_detect()
args = parse_args()
installation()
if __name__ == '__main__':
main()