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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
|
#! /usr/bin/env python3
import sys, os
import re
import hashlib
import os.path
import tempfile
import requests
import shutil
import subprocess
import atexit
from collections import Counter
class OfflineConverter:
# the machine aliases and interfaces for the *online* database are
# cmsonr1-s.cms, cmsonr2-s.cms, cmsonr3-s.cms
# cmsonr1-v.cms, cmsonr2-v.cms, cmsonr3-v.cms
# but the -s and -v interfaces resolve to the same hosts.
# The actual machines and interfaces are
# CMSRAC11-S.cms, CMSRAC12-S.cms, CMSRAC21-S.cms
# CMSRAC11-V.cms, CMSRAC12-V.cms, CMSRAC21-V.cms
# the possible machines and interfaces for the *offline* database are
# cmsr1-s.cern.ch, cmsr2-s.cern.ch, cmsr3-s.cern.ch
# cmsr1-v.cern.ch, cmsr2-v.cern.ch, cmsr3-v.cern.ch
# but the -s and -v interfaces resolve to the same hosts
# The actual machines and interfaces are
# itrac5404-s.cern.ch, itrac5413-s.cern.ch, itrac5433-s.cern.ch
# itrac5404-v.cern.ch, itrac5413-v.cern.ch, itrac5433-v.cern.ch
databases = {}
databases['v1'] = {}
databases['v1']['offline'] = ( '-t', 'oracle', '-h', 'cmsr1-s.cern.ch', '-d', 'cms_cond.cern.ch', '-u', 'cms_hltdev_reader', '-s', 'convertMe!' )
databases['v1']['hltdev'] = databases['v1']['offline'] # for backwards compatibility
databases['v1']['online'] = ( '-t', 'oracle', '-h', 'cmsonr1-s.cms', '-d', 'cms_rcms.cern.ch', '-u', 'cms_hlt_r', '-s', 'convertMe!' )
databases['v1']['adg'] = ( '-t', 'oracle', '-h', 'cmsr1-s.cern.ch', '-d', 'cms_cond.cern.ch', '-u', 'cms_hlt_gui_r', '-s', 'convertMe!' )
databases['v1']['orcoff'] = databases['v1']['adg'] # for backwards compatibility
databases['v3'] = {}
databases['v3']['run2'] = ( '-t', 'oracle', '-h', 'cmsr1-v.cern.ch,cmsr2-v.cern.ch,cmsr3-v.cern.ch', '-d', 'cms_hlt.cern.ch', '-u', 'cms_hlt_gdr_r', '-s', 'convertMe!' )
databases['v3']['run3'] = ( '-t', 'oracle', '-h', 'cmsr1-v.cern.ch,cmsr2-v.cern.ch,cmsr3-v.cern.ch', '-d', 'cms_hlt.cern.ch', '-u', 'cms_hlt_v3_r', '-s', 'convertMe!' )
databases['v3']['dev'] = ( '-t', 'oracle', '-h', 'cmsr1-v.cern.ch,cmsr2-v.cern.ch,cmsr3-v.cern.ch', '-d', 'cms_hlt.cern.ch', '-u', 'cms_hlt_gdrdev_r', '-s', 'convertMe1!' )
databases['v3']['online'] = ( '-t', 'oracle', '-h', 'cmsonr1-v.cms', '-d', 'cms_rcms.cern.ch', '-u', 'cms_hlt_gdr_r', '-s', 'convertMe!' )
databases['v3']['adg'] = ( '-t', 'oracle', '-h', 'cmsonr1-adg-v.cern.ch,cmsonr2-adg-v.cern.ch', '-d', 'cms_orcon_adg.cern.ch', '-u', 'cms_hlt_gdr_r', '-s', 'convertMe!' )
databases['v3-beta'] = dict(databases['v3'])
databases['v3-test'] = dict(databases['v3'])
databases['v2'] = dict(databases['v3'])
#old converter can only handle a single host so we modify the params accordingly
for dbkey in databases['v2']:
dbparams = databases['v2'][dbkey]
if dbparams[3]=='cmsr1-s.cern.ch,cmsr2-s.cern.ch,cmsr3-s.cern.ch':
databases['v2'][dbkey] = dbparams[0:3]+('cmsr1-s.cern.ch',)+dbparams[4:]
@staticmethod
def CheckTempDirectory(dir):
dir = os.path.realpath(dir)
if not os.path.isdir(dir):
try:
os.makedirs(dir)
except:
return None
return dir
def __init__(self, version = 'v3', database = 'run3', url = None, verbose = False,
proxy = False, proxyHost = 'localhost', proxyPort = '8080',
tunnel = False, tunnelPort = '10121'):
self.verbose = verbose
self.version = version
self.baseDir = '/afs/cern.ch/user/c/confdb/www/%s/lib' % version
self.baseUrl = 'https://confdb.web.cern.ch/confdb/%s/lib' % version
self.jars = ( 'ojdbc8.jar', 'cmssw-evf-confdb-converter.jar' )
if version=='v2':
#legacy driver for run2 gui
self.jars = ( 'ojdbc6.jar', 'cmssw-evf-confdb-converter.jar' )
self.workDir = ''
self.proxy = proxy
self.proxyHost = proxyHost
self.proxyPort = proxyPort
self.tunnel = tunnel
self.tunnelPort = tunnelPort
if self.proxy and self.tunnel:
sys.stderr.write( "ERROR: proxy and tunnel options can not both be true" )
sys.exit(1)
# check the schema version
if version not in self.databases:
# unsupported database version
sys.stderr.write( "ERROR: unsupported database version \"%s\"\n" % version)
# check the database
if database in self.databases[version]:
# load the connection parameters for the given database
self.connect = self.databases[version][database]
else:
# unsupported database
sys.stderr.write( "ERROR: unknown database \"%s\" for version \"%s\"\n" % (database, version))
sys.exit(1)
if self.proxy:
self.proxy_connect_args = ('--dbproxy', '--dbproxyport', self.proxyPort, '--dbproxyhost', self.proxyHost)
temp_connect = []
for entry in self.connect:
temp_connect.append(entry.replace(key,item))
self.connect = tuple(temp_connect)
else:
self.proxy_connect_args = ()
# this sets the host to localhost
if self.tunnel:
temp_connect = list(self.connect)
host_index = temp_connect.index('-h')
temp_connect[host_index+1] = "localhost"
self.connect = tuple(temp_connect)
self.tunnel_connect_args = ('--dbport', self.tunnelPort)
else:
self.tunnel_connect_args = ()
# check for a custom base URL
if url is not None:
self.baseUrl = url
# try to read the .jar files from AFS, or download them
if os.path.isdir(self.baseDir) and all(os.path.isfile(self.baseDir + '/' + jar) for jar in self.jars):
# read the .jar fles from AFS
self.workDir = self.baseDir
else:
# try to use $CMSSW_BASE/tmp
self.workDir = OfflineConverter.CheckTempDirectory(os.path.join(os.environ['CMSSW_BASE'],'tmp','confdb',self.version))
if not self.workDir:
# try to use $TMP
self.workDir = OfflineConverter.CheckTempDirectory(os.path.join(os.environ['TMP'],'confdb',self.version))
if not self.workDir:
# create a new temporary directory, and install a cleanup callback
self.workDir = tempfile.mkdtemp()
atexit.register(shutil.rmtree, self.workDir)
# download the .jar files
version_website = requests.get(self.baseUrl+"/../confdb.version").text
jars_require_update = True
if os.path.exists(os.path.join(self.workDir,"confdb.version")):
with open(os.path.join(self.workDir,"confdb.version")) as f:
version_existing = f.read()
if version_existing==version_website:
jars_require_update = False
if jars_require_update:
for jar in self.jars:
# download to a temporay name and use an atomic rename (in case an other istance is downloading the same file
handle, temp = tempfile.mkstemp(dir = self.workDir, prefix = jar + '.')
os.close(handle)
request = requests.get(self.baseUrl + '/' + jar)
with open(temp,'wb') as f:
f.write(request.content)
os.rename(temp, self.workDir + '/' + jar)
#jars updated, write their version
handle, temp = tempfile.mkstemp(dir = self.workDir, prefix = "confdb.version" + '.')
os.close(handle)
with open(temp,'w') as f:
f.write(version_website)
os.rename(temp,os.path.join(self.workDir,"confdb.version"))
# setup the java command line and CLASSPATH
if self.verbose:
sys.stderr.write("workDir = %s\n" % self.workDir)
# use non-blocking random number source /dev/urandom (instead of /dev/random), see:
# http://blockdump.blogspot.fr/2012/07/connection-problems-inbound-connection.html
# deal with timezone region not found
# http://stackoverflow.com/questions/9156379/ora-01882-timezone-region-not-found
# increase the thread stack size from the default of 1 MB to work around java.lang.StackOverflowError errors, see
# man java
self.javaCmd = ( 'java', '-cp', ':'.join(self.workDir + '/' + jar for jar in self.jars), '-Djava.security.egd=file:///dev/urandom', '-Doracle.jdbc.timezoneAsRegion=false', '-Xss32M', 'confdb.converter.BrowserConverter' )
def query(self, *args):
args = self.javaCmd + self.connect + self.proxy_connect_args + self.tunnel_connect_args + args
if self.verbose:
sys.stderr.write("\n" + ' '.join(args) + "\n\n" )
sub = subprocess.Popen(
args,
stdin = None,
stdout = subprocess.PIPE,
stderr = subprocess.PIPE,
shell = False,
universal_newlines = True )
return sub.communicate()
def help():
sys.stdout.write("""Usage: %s OPTIONS
--v1|--v2|--v3|--v3-beta|--v3-test (specify the ConfDB version [default: v3])
--run3|--run2|--dev|--online|--adg (specify the target db [default: run3], online will only work inside p5 network)
Note that for v1
--orcoff is a synonim of --adg
--offline is a synonim of --hltdev
--configId <id> (specify the configuration by id)
--configName <name> (specify the configuration by name)
--runNumber <run> (specify the configuration by run number)
[exactly one of --configId OR --configName OR --runNumber is required]
--cff (retrieve configuration *fragment*)
--input <f1.root[,f2.root]> (insert PoolSource with specified fileNames)
--input <files.list> (read a text file which lists input ROOT files)
--output <out.root> (insert PoolOutputModule w/ specified fileName)
--nopsets (exclude all globale psets)
--noedsources (exclude all edsources)
--noes (exclude all essources *and* esmodules)
--noessources (exclude all essources)
--noesmodules (exclude all esmodules)
--noservices (exclude all services)
--nooutput (exclude all output modules)
--nopaths (exclude all paths [+=referenced seqs&mods])
--nosequences (don't define sequences [+=referenced s&m])
--nomodules (don't define modules)
--psets <pset1[,pset2]> (include only specified global psets)
--psets <-pset1[,-pset2]> (include all global psets but the specified)
--essources <ess1[,ess2]> (include only specified essources)
--essources <-ess1[,-ess2]> (include all essources but the specified)
--esmodules <esm1[,esm2]> (include only specified esmodules)
--esmodules <-esm1[,-esm2]> (include all esmodules but the specified)
--services <svc1[,svc2]> (include only specified services)
--services <-svc1[,-svc2]> (include all services but the specified)
--paths <p1[,p2]> (include only specified paths)
--paths <-p1[,-p2]> (include all paths but the specified)
--streams <s1[,s2]> (include only specified streams)
--datasets <d1[,d2]> (include only specified datasets)
--sequences <s1[,s2]> (include sequences, referenced or not!)
--modules <p1[,p2]> (include modules, referenced or not!)
--blocks <m1::p1[,p2][,m2]> (generate parameter blocks)
Options to connect to target db via SOCKS proxy, or direct tunnel:
[the options --dbproxy and --dbtunnel are mutually exclusive]
--dbproxy (use a SOCKS proxy to connect outside CERN network [default: False])
--dbproxyhost <hostname> (host of the SOCKS proxy [default: "localhost"])
--dbproxyport <port> (port of the SOCKS proxy [default: 8080])
--dbtunnel (use direct tunnel to connect outside CERN network [default: False])
--dbtunnelport <port> (port when using a direct tunnel on localhost [default: 10121])
--verbose (print additional details)
""")
def main():
args = sys.argv[1:]
version = 'v3'
db = 'run3'
verbose = False
if not args:
help()
sys.exit(1)
if '--help' in args or '-h' in args:
help()
sys.exit(0)
if '--verbose' in args:
verbose = True
args.remove('--verbose')
arg_count = Counter(args)
db_count = arg_count['--v1'] + arg_count['--v2'] + arg_count['--v3'] + arg_count['--v3-beta'] + arg_count['--v3-test']
if db_count>1:
sys.stderr.write( 'ERROR: conflicting database version specifications: "--v1", "--v2", "--v3", "--v3-beta", and "--v3-test" are mutually exclusive options' )
sys.exit(1)
if '--v1' in args:
version = 'v1'
db = 'offline'
args.remove('--v1')
if '--v2' in args:
version = 'v2'
db = 'run2'
args.remove('--v2')
if '--v3' in args:
version = 'v3'
db = 'run3'
args.remove('--v3')
if '--v3-beta' in args:
version = 'v3-beta'
db = 'run3'
args.remove('--v3-beta')
if '--v3-test' in args:
version = 'v3-test'
db = 'dev'
args.remove('--v3-test')
proxy = False
proxy_host = "localhost"
proxy_port = "8080"
if '--dbproxy' in args:
proxy = True
args.remove('--dbproxy')
if '--dbproxyhost' in args:
proxy_host = args.pop(args.index('--dbproxyhost')+1)
args.remove('--dbproxyhost')
if '--dbproxyport' in args:
proxy_port = args.pop(args.index('--dbproxyport')+1)
args.remove('--dbproxyport')
tunnel = False
tunnel_port = "10121"
if '--dbtunnel' in args:
tunnel = True
args.remove('--dbtunnel')
if '--dbtunnelport' in args:
tunnel_port = args.pop(args.index('--dbtunnelport')+1)
args.remove('--dbtunnelport')
if tunnel and proxy:
sys.stderr.write( 'ERROR: conflicting connection specifications, "--dbtunnel" and "--dbproxy" are mutually exclusive options\n' )
sys.exit(1)
_dbs = {}
_dbs['v1'] = [ '--%s' % _db for _db in OfflineConverter.databases['v1'] ] + [ '--runNumber' ]
_dbs['v2'] = [ '--%s' % _db for _db in OfflineConverter.databases['v2'] ] + [ '--runNumber' ]
_dbs['v3'] = [ '--%s' % _db for _db in OfflineConverter.databases['v3'] ] + [ '--runNumber']
_dbs['v3-beta'] = [ '--%s' % _db for _db in OfflineConverter.databases['v3-beta'] ] + [ '--runNumber' ]
_dbs['v3-test'] = [ '--%s' % _db for _db in OfflineConverter.databases['v3-test'] ] + [ '--runNumber' ]
_dbargs = set(args) & set(sum(_dbs.values(), []))
if _dbargs:
if len(_dbargs) > 1:
sys.stderr.write( "ERROR: too many database specifications: \"" + "\", \"".join( _dbargs) + "\"\n" )
sys.exit(1)
_arg = _dbargs.pop()
db = _arg[2:]
if db == 'runNumber':
db = 'adg'
else:
args.remove(_arg)
if not db in OfflineConverter.databases[version]:
sys.stderr.write( "ERROR: database version \"%s\" incompatible with specification \"%s\"\n" % (version, db) )
sys.exit(1)
converter = OfflineConverter(version = version, database = db, verbose = verbose,
proxy = proxy, proxyHost = proxy_host, proxyPort = proxy_port,
tunnel = tunnel, tunnelPort = tunnel_port)
out, err = converter.query( * args )
if 'ERROR' in err:
sys.stderr.write( "%s: error while retrieving the HLT menu\n\n%s\n\n" % (sys.argv[0], err) )
sys.exit(1)
else:
sys.stdout.write( out )
if __name__ == "__main__":
main()
|