-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
282 lines (250 loc) · 11.7 KB
/
setup.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
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
#!/usr/bin/env python2.7
#pylint: disable=C0103,W0105,broad-except,logging-not-lazy,W0702,C0301,R0902,R0914,R0912,R0915,W0201,W0621
"""
NOTE: This is intended to run automagically. Keep the deps minimal
"""
from __future__ import print_function
import sys
import os
import os.path
import re
import shutil
from distutils.core import setup, Command
from distutils.command.build import build
from distutils.command.install import install
from distutils.spawn import spawn
systems = \
{
'CRABClient': #Will be used if we moved the CRABClient repository
{
'py_modules': ['ServerUtilities'],
'python': [],
},
'CRABInterface':
{
'py_modules': ['CRABQuality', 'HTCondorLocator', 'ServerUtilities'],
'python': ['CRABInterface', 'CRABInterface/Pages',
'Databases',
'Databases/FileMetaDataDB', 'Databases/FileMetaDataDB/Oracle',
'Databases/FileMetaDataDB/Oracle/FileMetaData',
'Databases/TaskDB', 'Databases/TaskDB/Oracle',
'Databases/TaskDB/Oracle/Task',
'Databases/FileTransfersDB',
'Databases/FileTransfersDB/Oracle/',
'Databases/FileTransfersDB/Oracle/FileTransfers']
},
'TaskWorker':
{
'py_modules': ['RESTInteractions',
'CRABQuality', 'HTCondorLocator',
'ServerUtilities', 'MultiProcessingLog', 'CMSGroupMapper',
'RucioUtils', 'cache_status'],
'python': ['TaskWorker', 'TaskWorker/Actions', 'TaskWorker/DataObjects',
'TaskWorker/Actions/Recurring', 'Publisher', 'TransferInterface',
'ASO', 'ASO/Rucio', 'ASO/Rucio/Actions' ]
},
'Publisher':
{
'py_modules': ['ServerUtilities', 'MultiProcessingLog', 'RESTInteractions', 'utils'],
'python': ['Publisher']
},
'All':
{
'py_modules': [''],
'python': ['TaskWorker', 'CRABInterface', 'CRABClient', 'Publisher']
}
}
# These repos come from git clone, so we need to specify the repo and ref
DEFAULT_CMSDIST_REPO = "[email protected]:cms-sw/cmsdist.git"
DEFAULT_CMSDIST_REF = "comp"
DEFAULT_PKGTOOLS_REPO = "[email protected]:cms-sw/cmsdist.git"
DEFAULT_PKGTOOLS_REF = "V00-21-XX"
DEFAULT_CRABCLIENT = "git://github.com/dmwm/CRABClient.git?obj=master/%{realversion}&export=CRABClient-%{realversion}&output=/CRABClient-%{realversion}.tar.gz"
DEFAULT_WMCORE = "git://github.com/dmwm/WMCore.git?obj=master/%{wmcver}&export=WMCore-%{wmcver}&output=/WMCore-%{n}-%{wmcver}.tar.gz"
# crabclient spec and crabserver specs have different defaults
DEFAULT_CS_CRABSERVER = "git://github.com/dmwm/CRABServer.git?obj=master/%{realversion}&export=CRABServer-%{realversion}&output=" \
"/CRABServer-%{realversion}.tar.gz"
DEFAULT_CC_CRABSERVER = "git://github.com/dmwm/CRABServer.git?obj=master/%{crabserverver}&export=CRABServer-%{crabserverver}&output=" \
"/CRABServer-%{crabserverver}.tar.gz"
class PackageCommand(Command):
description = """
Handles building RPM(s)
By default, all sources are used from their official locations. However
command line options give the user the option to ovveride the different
repositories with either different GH tags or a local directory.
"""
user_options = []
user_options.append(("targets=", None,
"Package specified systems (default: CRABClient,CRABServer,TaskWorker)"))
user_options.append(("crabServerPath=", None, "Override CRABServer repo location"))
user_options.append(("crabClientPath=", None, "Override CRABClient repo location"))
user_options.append(("wmCorePath=", None, "Override WMCore repo location"))
user_options.append(("pkgToolsRepo=", None, "Path to existing pkgtools repo"))
user_options.append(("pkgToolsRef=", None, "If pkgToolsPath is a git url, what ref to get"))
user_options.append(("cmsdistRepo=", None, "Override cmsdist repo location"))
user_options.append(("cmsdistRef=", None, "If cmsdistPath is a git url, what ref to get"))
def initialize_options(self):
self.targets = "CRABClient,CRABServer,TaskWorker"
# I'll need to fix things later for the crabserver ref
self.crabServerPath = None
self.crabClientPath = DEFAULT_CRABCLIENT
self.wmCorePath = DEFAULT_WMCORE
self.pkgToolsRepo = DEFAULT_PKGTOOLS_REPO
self.pkgToolsRef = DEFAULT_PKGTOOLS_REF
self.cmsdistRepo = DEFAULT_CMSDIST_REPO
self.cmsdistRef = DEFAULT_CMSDIST_REF
def finalize_options(self):
if self.crabServerPath:
self.crabCCServerPath = self.crabServerPath
self.crabCSServerPath = self.crabServerPath
else:
self.crabCCServerPath = DEFAULT_CC_CRABSERVER
self.crabCSServerPath = DEFAULT_CS_CRABSERVER
def run(self):
"""
Need to do a few things here:
"""
def get_relative_path():
return os.path.dirname(os.path.abspath(os.path.join(os.getcwd(), sys.argv[0])))
def define_the_build(dist, system_name, patch_x=''):
# Expand various sources.
docroot = "doc/build/html"
system = systems[system_name]
#binsrc = sum((glob("bin/%s" % x) for x in system['bin']), [])
dist.py_modules = system['py_modules']
dist.packages = system['python']
#dist.data_files = [('%sbin' % patch_x, binsrc)]
#dist.data_files = [ ("%sdata" % (patch_x, ), "scripts/%s" % (x,))
# for x in ['CMSRunAnalysis.sh']]
#dist.data_files = ['scripts/CMSRunAnalysis.sh']
if os.path.exists(docroot):
for dirpath, _, files in os.walk(docroot):
dist.data_files.append(("%sdoc%s" % (patch_x, dirpath[len(docroot):]),
["%s/%s" % (dirpath, fname) for fname in files
if fname != '.buildinfo']))
class BuildCommand(Command):
"""Build python modules for a specific system."""
description = \
"Build python modules for the specified system. The supported system(s)\n" + \
"\t\t at the moment are 'CRABInterface' . Use with --force \n" + \
"\t\t to ensure a clean build of only the requested parts.\n"
user_options = build.user_options
user_options.append(('system=', 's', 'build the specified system (default: CRABInterface)'))
user_options.append(('skip-docs=', 'd', 'skip documentation'))
def initialize_options(self):
self.system = "CRABInterface,TaskWorker"
self.skip_docs = False
def finalize_options(self):
if self.system not in systems:
print ("System %s unrecognised, please use '-s CRABInterface'" % self.system)
sys.exit(1)
# Expand various sources and maybe do the c++ build.
define_the_build(self.distribution, self.system, '')
# Force rebuild.
shutil.rmtree("%s/build" % get_relative_path(), True)
shutil.rmtree("doc/build", True)
def generate_docs(self):
if not self.skip_docs:
os.environ["PYTHONPATH"] = "%s/../WMCore/src/python/:%s" % (os.getcwd(), os.environ["PYTHONPATH"])
os.environ["PYTHONPATH"] = "%s/build/lib:%s" % (os.getcwd(), os.environ["PYTHONPATH"])
spawn(['make', '-C', 'doc', 'html', 'PROJECT=%s' % 'crabserver'])
def run(self):
command = 'build'
if self.distribution.have_run.get(command):
return
cmd = self.distribution.get_command_obj(command)
cmd.force = self.force
cmd.ensure_finalized()
cmd.run()
self.generate_docs()
self.distribution.have_run[command] = 1
class InstallCommand(install):
"""Install a specific system."""
description = \
"Install a specific system. You can patch an existing\n" + \
"\t\tinstallation instead of normal full installation using the '-p' option.\n"
user_options = install.user_options
user_options.append(('system=', 's', 'install the specified system (default: CRABInterface)'))
user_options.append(('patch', None, 'patch an existing installation (default: no patch)'))
user_options.append(('skip-docs=', 'd', 'skip documentation'))
def initialize_options(self):
install.initialize_options(self)
self.system = "CRABInterface"
self.patch = None
self.skip_docs = False
def finalize_options(self):
# Check options.
if self.system not in systems:
print ("System %s unrecognised, please use '-s CRABInterface'" % self.system)
sys.exit(1)
if self.patch and not os.path.isdir("%s/xbin" % self.prefix):
print ("Patch destination %s does not look like a valid location." % self.prefix)
sys.exit(1)
# Expand various sources, but don't build anything from c++ now.
define_the_build(self.distribution, self.system, (self.patch and 'x') or '')
# Whack the metadata name.
self.distribution.metadata.name = self.system
assert self.distribution.get_name() == self.system
# Pass to base class.
install.finalize_options(self)
# Mangle paths if we are patching. Most of the mangling occurs
# already in define_the_build(), but we need to fix up others.
if self.patch:
self.install_lib = re.sub(r'(.*)/lib/python(.*)', r'\1/xlib/python\2', self.install_lib)
self.install_scripts = re.sub(r'(.*)/bin$', r'\1/xbin', self.install_scripts)
self.install_data = re.sub(r'(.*)/data$', r'\1/xdata', self.install_data)
def run(self):
for cmd_name in self.get_sub_commands():
cmd = self.distribution.get_command_obj(cmd_name)
cmd.distribution = self.distribution
if cmd_name == 'install_data':
data_dir = '/xdata' if self.patch else '/data'
cmd.install_dir = self.prefix + data_dir
else:
cmd.install_dir = self.install_lib
cmd.ensure_finalized()
self.run_command(cmd_name)
self.distribution.have_run[cmd_name] = 1
class TestCommand(Command):
"""
Test harness entry point
"""
description = "Runs tests"
user_options = []
user_options.append(("integration", None, "Run integration tests"))
user_options.append(("integrationHost", None,
"Host to run integration tests against"))
def initialize_options(self):
self.integration = False
self.integrationHost = "crab3-gwms-1.cern.ch"
def finalize_options(self):
pass
def run(self):
#import here, cause we don't want to bomb if nose doesn't exist
import CRABQuality
mode = 'default'
if self.integration:
mode = 'integration'
sys.exit(CRABQuality.runTests(mode=mode,
integrationHost=self.integrationHost))
def getWebDir():
res = []
for directory in ['css', 'html', 'script']:
for root, _, files in os.walk('src/'+directory):
res.append((root[4:], [os.path.join(root, x) for x in files])) #4: for removing src
return res
setup(name='crabserver',
version='3.2.0',
maintainer_email='[email protected]',
cmdclass={'build_system': BuildCommand,
'install_system': InstallCommand,
'test' : TestCommand},
#include_package_data=True,
#base directory for all the packages
package_dir={'': 'src/python'},
data_files=['scripts/%s' % x for x in \
['CMSRunAnalysis.sh', 'cmscp.py', 'cmscp.sh',
'gWMS-CMSRunAnalysis.sh', 'submit_env.sh',
'dag_bootstrap_startup.sh',
'dag_bootstrap.sh', 'AdjustSites.py']] + getWebDir(),
)