forked from CMSCompOps/WmAgentScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistInputDS.py
executable file
·61 lines (51 loc) · 2.27 KB
/
listInputDS.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
#!/usr/bin/env python
import urllib2,urllib, httplib, sys, re, os, json, phedexSubscription
from xml.dom.minidom import getDOMImplementation
def findCustodialLocation(url, dataset):
conn = httplib.HTTPSConnection(url, cert_file = os.getenv('X509_USER_PROXY'), key_file = os.getenv('X509_USER_PROXY'))
r1=conn.request("GET",'/phedex/datasvc/json/prod/blockreplicas?dataset='+dataset)
r2=conn.getresponse()
result = json.loads(r2.read())
request=result['phedex']
if 'block' not in request.keys():
return "No Site"
if len(request['block'])==0:
return "No Site"
for replica in request['block'][0]['replica']:
if replica['custodial']=="y" and replica['node']!="T0_CH_CERN_MSS":
return replica['node']
return "No Custodial Site found"
def getPrepID(url, workflow):
conn = httplib.HTTPSConnection(url, cert_file = os.getenv('X509_USER_PROXY'), key_file = os.getenv('X509_USER_PROXY'))
r1=conn.request("GET",'/reqmgr/reqMgr/request?requestName='+workflow)
r2=conn.getresponse()
request = json.loads(r2.read())
prepID=request['PrepID']
return prepID
def getInputDataSet(url, workflow):
conn = httplib.HTTPSConnection(url, cert_file = os.getenv('X509_USER_PROXY'), key_file = os.getenv('X509_USER_PROXY'))
r1=conn.request("GET",'/reqmgr/reqMgr/request?requestName='+workflow)
r2=conn.getresponse()
request = json.loads(r2.read())
inputDataSets=request['InputDataset']
if len(inputDataSets)<1:
print "No InputDataSet for workflow " +workflow
else:
return inputDataSets
def main():
args=sys.argv[1:]
if not len(args)==1:
print "usage:listReqTapeFamilies.py filename"
print "where the file should contain a list of workflows"
sys.exit(0)
sites = ['T1_DE_KIT', 'T1_FR_CCIN2P3', 'T1_IT_CNAF', 'T1_ES_PIC', 'T1_TW_ASGC', 'T1_UK_RAL', 'T1_US_FNAL']
filename=args[0]
url='cmsweb.cern.ch'
workflows=phedexSubscription.workflownamesfromFile(filename)
for workflow in workflows:
inputDataset = getInputDataSet(url, workflow)
custodialLocation = findCustodialLocation(url, inputDataset)
print workflow+" "+custodialLocation+" "+inputDataset
sys.exit(0);
if __name__ == "__main__":
main()