forked from DIRACGrid/DIRAC
-
Notifications
You must be signed in to change notification settings - Fork 1
/
__init__.py
executable file
·217 lines (171 loc) · 6.46 KB
/
__init__.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
"""
DIRAC - Distributed Infrastructure with Remote Agent Control
The distributed data production and analysis system of LHCb and other VOs.
DIRAC is a software framework for distributed computing which
allows to integrate various computing resources in a single
system. At the same time it integrates all kinds of computing
activities like Monte Carlo simulations, data processing, or
final user analysis.
It is build as number of cooperating systems:
- Accounting
- Configuration
- Core
- Base
- DISET
- Security
- Utilities
- Workflow
- Framework
- RequestManagement
- Resources
- Transformation
Which are used by other system providing functionality to
the end user:
- DataManagement
- Interfaces
- ResourceStatus
- StorageManagement
- WorkloadManagement
It defines the following data members:
- majorVersion: DIRAC Major version number
- minorVersion: DIRAC Minor version number
- patchLevel: DIRAC Patch level number
- preVersion: DIRAC Pre release number
- version: DIRAC version string
- buildVersion: DIRAC version string
- errorMail: mail address for important errors
- alarmMail: mail address for important alarms
- pythonPath: absolute real path to the directory that contains this file
- rootPath: absolute real path to the parent of DIRAC.pythonPath
It loads Modules from :
- DIRAC.Core.Utililies
It loads:
- S_OK: OK return structure
- S_ERROR: ERROR return structure
- gLogger: global Logger object
- gConfig: global Config object
It defines the following functions:
- abort: aborts execution
- exit: finish execution using callbacks
- siteName: returns DIRAC name for current site
- getPlatform(): DIRAC platform string for current host
- getPlatformTuple(): DIRAC platform tuple for current host
"""
from __future__ import print_function
import sys
import os
import platform as pyPlatform
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
# Set the environment variable such that openssl accepts proxy cert
# Sadly, this trick was removed in openssl >= 1.1.0
# https://github.com/openssl/openssl/commit/8e21938ce3a5306df753eb40a20fe30d17cf4a68
# Lets see if they would accept to put it back
# https://github.com/openssl/openssl/issues/8177
os.environ['OPENSSL_ALLOW_PROXY_CERTS'] = "True"
__RCSID__ = "$Id$"
# Now that's one hell of a hack :)
# _strptime is not thread safe, resulting in obscure callstack
# whenever you would have multiple threads and calling datetime.datetime.strptime
# (AttributeError: 'module' object has no attribute '_strptime')
# Importing _strptime before instantiating the threads seem to be a working workaround
import _strptime
# Define Version
majorVersion = 6
minorVersion = 20
patchLevel = 0
preVersion = 17
version = "v%sr%s" % (majorVersion, minorVersion)
buildVersion = "v%dr%d" % (majorVersion, minorVersion)
if patchLevel:
version = "%sp%s" % (version, patchLevel)
buildVersion = "%s build %s" % (buildVersion, patchLevel)
if preVersion:
version = "%s-pre%s" % (version, preVersion)
buildVersion = "%s pre %s" % (buildVersion, preVersion)
# Check of python version
__pythonMajorVersion = ("2", )
__pythonMinorVersion = ("7")
pythonVersion = pyPlatform.python_version_tuple()
if str(pythonVersion[0]) not in __pythonMajorVersion or str(pythonVersion[1]) not in __pythonMinorVersion:
print("Python Version %s not supported by DIRAC" % pyPlatform.python_version())
print("Supported versions are: ")
for major in __pythonMajorVersion:
for minor in __pythonMinorVersion:
print("%s.%s.x" % (major, minor))
sys.exit(1)
errorMail = "[email protected]"
alarmMail = "[email protected]"
# Set rootPath of DIRAC installation
pythonPath = os.path.realpath(__path__[0])
rootPath = os.path.dirname(pythonPath)
# Import DIRAC.Core.Utils modules
#from DIRAC.Core.Utilities import *
from DIRAC.Core.Utilities.Network import getFQDN
import DIRAC.Core.Utilities.ExitCallback as ExitCallback
from DIRAC.Core.Utilities.ReturnValues import S_OK, S_ERROR
# Logger
from DIRAC.FrameworkSystem.Client.Logger import gLogger
# Configuration client
from DIRAC.ConfigurationSystem.Client.Config import gConfig
# Some Defaults if not present in the configuration
FQDN = getFQDN()
if len(FQDN.split('.')) > 2:
# Use the last component of the FQDN as country code if there are more than 2 components
_siteName = 'DIRAC.Client.%s' % FQDN.split('.')[-1]
else:
# else use local as country code
_siteName = 'DIRAC.Client.local'
__siteName = False
# # Update DErrno with the extensions errors
# from DIRAC.Core.Utilities.ObjectLoader import ObjectLoader
# from DIRAC.ConfigurationSystem.Client.Helpers import CSGlobals
# allExtensions = CSGlobals.getCSExtensions()
#
# # Update for each extension. Careful to conflict :-)
# for extension in allExtensions:
# ol = ObjectLoader( baseModules = ["%sDIRAC" % extension] )
# extraErrorModule = ol.loadModule( 'Core.Utilities.DErrno' )
# if extraErrorModule['OK']:
# extraErrorModule = extraErrorModule['Value']
#
# # The next 3 dictionary MUST be present for consistency
#
# # Global name of errors
# DErrno.__dict__.update( extraErrorModule.extra_dErrName )
# # Dictionary with the error codes
# DErrno.dErrorCode.update( extraErrorModule.extra_dErrorCode )
# # Error description string
# DErrno.dStrError.update( extraErrorModule.extra_dStrError )
#
# # extra_compatErrorString is optional
# for err in getattr( extraErrorModule, 'extra_compatErrorString', [] ) :
# DErrno.compatErrorString.setdefault( err, [] ).extend( extraErrorModule.extra_compatErrorString[err] )
def siteName():
"""
Determine and return DIRAC name for current site
"""
global __siteName
if not __siteName:
__siteName = gConfig.getValue('/LocalSite/Site', _siteName)
return __siteName
# Callbacks
ExitCallback.registerSignals()
# platform detection
from DIRAC.Core.Utilities.Platform import getPlatformString, getPlatform, getPlatformTuple
def exit(exitCode=0):
"""
Finish execution using callbacks
"""
ExitCallback.execute(exitCode, [])
sys.exit(exitCode)
def abort(exitCode, *args, **kwargs):
"""
Abort execution
"""
try:
gLogger.fatal(*args, **kwargs)
os._exit(exitCode)
except OSError:
gLogger.exception('Error while executing DIRAC.abort')
os._exit(exitCode)