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
|
########################################################################################
# #
# Author: Bertrand Neron, #
# Organization:'Biological Software and Databases' Group, Institut Pasteur, Paris. #
# Distributed under GPLv2 Licence. Please refer to the COPYING.LIB document. #
# #
########################################################################################
"""
Classes executing the command and managing the results
"""
import os
from logging import getLogger, shutdown as logging_shutdown
_log = logging.getLogger(__name__)
from Mobyle.MobyleLogger import MLogger
from Mobyle.Execution.ExecutionSystem import ExecutionSystem
from Mobyle.MobyleError import MobyleError
from Mobyle.Admin import Admin
from Mobyle.Status import Status
from Mobyle.ConfigManager import Config
_cfg = Config()
__extra_epydoc_fields__ = [('call', 'Called by','Called by')]
class Dummy(ExecutionSystem):
"""
Run the commandline by ???
"""
def run(self, commandLine , dirPath , serviceName , jobKey , jobState , queue , xmlEnv ):
"""
Run the commandLine
redirect the standard error and output on service.name.out and service.name.err, then restore the sys.stderr and sys.stdout
@return: the L{Mobyle.Status.Status} of this job and a message
@rtype: Status object
"""
jobKey = self.getKey()
fout = open( serviceName + ".out" , 'w' )
ferr = open( serviceName + ".err" , 'w' )
try:
## execute the commandline through your favorite execution system
pass
except OSError, err:
msg= "System execution failed: " + str(err)
self._logError( dirPath , serviceName ,jobKey,
userMsg = "Mobyle internal server error" ,
logMsg = None )
_log.critical( "%s/%s : %s" %( self.serviceName ,
jobKey ,
msg
)
)
raise MobyleError , msg
adm = Admin( dirPath )
adm.setExecutionAlias( self.execution_config_alias ) ## store the alias of execution config used for this job
adm.setNumber( jobKey ) ## store the key to query/retrieve this job on this system execution
adm.commit()
## link the .admin file in ADMINDIR which looklike to a "process table"
linkName = ( "%s/%s.%s" %(self. _cfg.admindir() ,
serviceName ,
jobKey
)
)
try:
os.symlink(
os.path.join( self.dirPath , '.admin') ,
linkName
)
except OSError , err:
msg = "can't create symbolic link %s in ADMINDIR: %s" %( linkName , err )
self._logError( dirPath , serviceName ,jobKey,
userMsg = "Mobyle internal server error" ,
logMsg = None )
_log.critical( "%s/%s : %s" %( serviceName ,
jobKey ,
msg
)
)
raise MobyleError , msg
logging_shutdown() #close all loggers see issue #1075
## wait the completion of the job
## THIS CLASS MUST BE SYNCHRON WITH THE JOB
MLogger(child = True ) #reopen the logger
try:
## remove the job from the ADMINDIR ( "process table" )
os.unlink( linkName )
except OSError , err:
msg = "can't remove symbolic link %s in ADMINDIR: %s" %( linkName , err )
self._logError( dirPath , serviceName ,jobKey,
userMsg = "Mobyle internal server error" ,
logMsg = None )
_log.critical( "%s/%s : %s" %( self.serviceName ,
jobKey ,
msg
)
)
raise MobyleError , msg
##close the standard output and standard error file
fout.close()
ferr.close()
oldStatus = self.status_manager.getStatus( dirPath )
#if the oldStatus is terminal ( finish error killed )
#I don't modify this status
if oldStatus.isEnded():
return oldStatus
else:
## analyse the returncode of the job
## and instanciate a Status according the returncode
## then return the Status
status = Status( code = 4 ) #finished
return status
def getStatus( self , key ):
"""
@param key: the value associate to the key "NUMBER" in Admin object (and .admin file )
@type key: string
@return: the status of the job corresponding to the key
@rtype: Mobyle.Status.Status instance
@call: by L{Utils.getStatus}
"""
##query your execution system about the job with this key
##translate the answer in mobyle compliant status and message
## for mobyle status see Mobyle.Status.Status
mobyle_status_code = 3 # running
message = "my job is running"
return Status( code = mobyle_status_code , message = message )
def kill( self , key ):
"""
kill a job
@param key : the value associate to the key "NUMBER" in Admin object (and .admin file )
@type key: string
@raise MobyleError: if can't kill the job
@call: by L{Utils.Mkill}
"""
return None
|