forked from cms-sw/cms-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmsutils.py
135 lines (121 loc) · 3.81 KB
/
cmsutils.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
from __future__ import print_function
from _py2with3compatibility import run_cmd
from os import getcwd
from time import asctime, time, strftime, gmtime
import sys, re
from sys import platform
from os.path import dirname, abspath
try:
CMS_BOT_DIR = dirname(abspath(__file__))
except Exception as e:
from sys import argv
CMS_BOT_DIR = dirname( abspath(argv[0]))
def getHostDomain():
site = ''
import socket
site = socket.getfqdn()
fqdn = site.split('.')
hname = fqdn[0]
dname = 'cern.ch'
if len(fqdn)>2: dname = fqdn[-2]+'.'+fqdn[-1]
return hname, dname
def getDomain():
return getHostDomain()[1]
def getHostName():
return getHostDomain()[0]
def _getCPUCount():
cmd = ""
if platform == "darwin":
cmd = "sysctl -n hw.ncpu"
elif platform.startswith("linux"):
cmd = "nproc"
error, count = run_cmd(cmd)
if error:
print("Warning: unable to detect cpu count. Using 4 as default value")
out = "4"
if not count.isdigit():
return 4
return int(count)
def _memorySizeGB():
cmd = ""
if platform == "darwin":
cmd = "sysctl -n hw.memsize"
elif platform.startswith("linux"):
cmd = "free -t -m | grep '^Mem: *' | awk '{print $2}'"
error, out = run_cmd(cmd)
if error:
print("Warning: unable to detect memory info. Using 8GB as default value")
return 8
if not out.isdigit():
return 8
from math import ceil
count = int(ceil(float(out)/1024))
if count == 0: count =1
return count
MachineMemoryGB = _memorySizeGB()
MachineCPUCount = _getCPUCount()
def _compilationProcesses():
count = MachineCPUCount * 2
if MachineMemoryGB<count: count = MachineMemoryGB
return count
def _cmsRunProcesses():
count = int((MachineMemoryGB+1)/2)
if count==0: count =1
if MachineCPUCount<count: count = MachineCPUCount
return count
compilationPrcoessCount = _compilationProcesses()
cmsRunProcessCount = _cmsRunProcesses()
def doCmd(cmd, dryRun=False, inDir=None):
if not inDir:
print("--> "+asctime()+ " in ", getcwd() ," executing ", cmd)
else:
print("--> "+asctime()+ " in " + inDir + " executing ", cmd)
cmd = "cd " + inDir + "; "+cmd
sys.stdout.flush()
sys.stderr.flush()
start = time()
ret = 0
outX = ""
while cmd.endswith(";"): cmd=cmd[:-1]
if dryRun:
print("DryRun for: "+cmd)
else:
ret, outX = run_cmd(cmd)
print(outX)
stop = time()
print("--> "+asctime()+" cmd took", stop-start, "sec. ("+strftime("%H:%M:%S",gmtime(stop-start))+")")
sys.stdout.flush()
sys.stderr.flush()
return (ret,outX)
def getIBReleaseInfo(rel):
m = re.match("^CMSSW_(\d+_\d+(_[A-Z0-9]+|))_X(_[A-Z]+|)_(\d\d\d\d-\d\d-\d\d-(\d\d)\d\d)",rel)
if not m: return ("","","")
rc = m.group(1).replace("_",".")
from datetime import datetime
day = datetime.strptime(m.group(4),"%Y-%m-%d-%H%M").strftime("%a").lower()
hour = m.group(5)
return (rc, day, hour)
def cmsswIB2Week(release):
from datetime import datetime
rel_sec = int(datetime.strptime(release.split("_")[-1], '%Y-%m-%d-%H%M').strftime('%s'))
return (str(int(((rel_sec/86400)+4)/7)), rel_sec)
#
# Reads config.map and returns a list of the architectures for which a release needs to be built.
# If the list is empty it means that it didn't find any architecture for that release queue, or
# that the IBs are disabled.
#
def get_config_map_properties(filters=None):
CONFIG_MAP_FILE = CMS_BOT_DIR + '/config.map'
specs = []
f = open( CONFIG_MAP_FILE , 'r' )
lines = [l.strip(" \n\t;") for l in f.read().split("\n") if l.strip(" \n\t;")]
for line in lines:
entry = dict(x.split("=",1) for x in line.split(";") if x)
skip = False
if filters:
for k in filters:
if (k in entry) and (entry[k]==filters[k]):
skip = True
break
if not skip: specs.append(entry)
return specs