3 from __future__
import print_function
4 import os, time, sys, shutil, glob, smtplib, re
5 from datetime
import datetime
6 from email.MIMEText
import MIMEText
8 sys.stdout = os.fdopen(sys.stdout.fileno(),
'w', 0)
10 DIR =
'/data/dqm/dropbox' 11 DB =
'/home/dqm/dqm.db' 12 TMPDB =
'/home/dqm/dqm.db.tmp' 13 FILEDIR =
'/data/dqm/merged' 14 DONEDIR =
'/data/dqm/done' 19 YourMail =
"lilopera@cern.ch" 20 ServerMail =
"dqm@srv-C2D05-19.cms" 23 s=smtplib.SMTP(
"localhost")
24 tolist=[EmailAddress,
"lat@cern.ch"]
25 body=
"File merge failed by unknown reason for run"+run
27 msg[
'Subject'] =
"File merge failed." 28 msg[
'From'] = ServerMail
29 msg[
'To'] = EmailAddress
30 s.sendmail(ServerMail,tolist,msg.as_string())
40 hist = f.FindObjectAny(
"reportSummaryContents")
42 if (hist ==
None and rootfile.rfind(
'HcalTiming') == -1):
56 for dir, subdirs, files
in os.walk(DIR):
58 if not f.startswith(
"DQM_Reference")
and re.match(
r'^DQM_.*_R[0-9]{9}\.root$', f):
60 donefile =
"%s/%s/%s/%s" % (DONEDIR, runnr[0:3], runnr[3:6], f)
61 f =
"%s/%s" % (dir, f)
62 if os.path.exists(donefile)
and os.stat(donefile).st_size == os.stat(f).st_size:
63 print(
"WARNING: %s was already processed but re-appeared" % f)
66 NEW.setdefault(runnr, []).
append(f)
70 print(
'%s: found %d new files in %d runs.' % (datetime.now(), NFOUND, len(NEW)))
74 for run
in sorted(NEW.keys())[::-1]:
80 runnr =
"%09d" % long(run)
81 destdir =
"%s/%s/%s" % (FILEDIR, runnr[0:3], runnr[3:6])
82 donedir =
"%s/%s/%s" % (DONEDIR, runnr[0:3], runnr[3:6])
83 oldfiles = sorted(glob.glob(
"%s/DQM_V????_R%s.root" % (destdir, runnr)))[::-1]
85 version =
int(oldfiles[0][-20:-16]) + 1
86 files.append(oldfiles[0])
90 if not os.path.exists(destdir):
92 if not os.path.exists(donedir):
95 destfile =
"%s/DQM_V%04d_R%s.root" % (destdir, version, runnr)
96 logfile =
"%s.log" % destfile[:-5]
97 tmpdestfile =
"%s.tmp" % destfile
99 print(
'Merging run %s to %s (adding %s to %s)' % (run, destfile, files, oldfiles))
100 LOGFILE = open(logfile,
'a')
101 LOGFILE.write(os.popen(
'DQMMergeFile %s %s' % (tmpdestfile,
" ".
join(files))).
read())
103 if not os.path.exists(tmpdestfile):
104 print(
'Failed merging files for run %s. Will try again later.' % run)
108 os.rename(tmpdestfile, destfile)
110 os.rename(f,
"%s/%s" % (donedir, f.rsplit(
'/', 1)[1]))
112 allOldFiles.extend(oldfiles)
113 newFiles.append((long(run), destfile))
115 if os.path.exists(TMPDB):
118 if os.path.exists(DB):
121 os.system(
'set -x; visDQMRegisterFile %s "/Global/Online/ALL" "Global run"' % TMPDB)
123 if len(allOldFiles) > 0:
124 os.system(
'set -x; visDQMUnregisterFile %s %s' % (TMPDB,
" ".
join(allOldFiles)))
126 existing = [long(x)
for x
in os.popen(
"sqlite3 %s 'select distinct runnr from t_data'" % TMPDB).
read().
split()]
127 for runnr, file
in newFiles:
128 print(
'Registering %s for run %d' % (file, runnr))
129 older = sorted([x
for x
in existing
if x < runnr])
130 newer = sorted([x
for x
in existing
if x > runnr])
131 if len(newer) > MAX_TOTAL_RUNS:
132 print(
"Too many newer runs (%d), not registering %s for run %d" % (len(newer), file, runnr))
135 if len(older) > MAX_TOTAL_RUNS:
136 print(
"Too many older runs (%d), pruning data for oldest run %d" % (len(older), older[0]))
137 os.system(
r"set -x; sqlite3 %s 'delete from t_data where runnr = %d'" % (TMPDB, older[0]))
138 os.system(
r"set -x; sqlite3 %s 'delete from t_files where name like '\''%%R%09d.root'\'" % (TMPDB, older[0]))
139 os.system(
r"set -x; sqlite3 %s 'vacuum'" % TMPDB)
140 existing.remove(older[0])
142 os.system(
'set -x; visDQMRegisterFile %s "/Global/Online/ALL" "Global run" %s' % (TMPDB, file))
143 existing.append(runnr)
147 if NRUNS <= MAX_RUNS:
def sendmail(EmailAddress, run)
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
def split(sequence, size)
static std::string join(char **cmd)