Skip to content
Snippets Groups Projects
Commit a1f895d8 authored by sveseli's avatar sveseli
Browse files

plugin modifications needed to support new daq and upload tracking framework

parent 20f98460
No related branches found
No related tags found
No related merge requests found
...@@ -16,13 +16,13 @@ class MongoDbFileCatalogPlugin(FileProcessor): ...@@ -16,13 +16,13 @@ class MongoDbFileCatalogPlugin(FileProcessor):
def processFile(self, fileInfo): def processFile(self, fileInfo):
experimentFilePath = fileInfo.get('experimentFilePath') experimentFilePath = fileInfo.get('experimentFilePath')
experiment = fileInfo.get('experiment') experimentName = fileInfo.get('experimentName')
experimentName = experiment.get('name')
self.logger.debug('Processing file %s for experiment %s' % (fileInfo, experimentName)) self.logger.debug('Processing file %s for experiment %s' % (fileInfo, experimentName))
experimentStorageDirectory = experiment.get('storageDirectory') daqInfo = fileInfo.get('daqInfo')
storageHost = experiment.get('storageHost') storageDirectory = daqInfo.get('storageDirectory')
storageFilePath = os.path.join(experimentStorageDirectory, experimentFilePath) storageHost = daqInfo.get('storageHost')
storageFilePath = os.path.join(storageDirectory, experimentFilePath)
fileProcessingTime = time.time() fileProcessingTime = time.time()
fileProcessingTimeStamp = TimeUtility.formatLocalTimeStamp(fileProcessingTime) fileProcessingTimeStamp = TimeUtility.formatLocalTimeStamp(fileProcessingTime)
...@@ -32,14 +32,19 @@ class MongoDbFileCatalogPlugin(FileProcessor): ...@@ -32,14 +32,19 @@ class MongoDbFileCatalogPlugin(FileProcessor):
if fileInfo.has_key(key): if fileInfo.has_key(key):
fileInfo2[key] = fileInfo.get(key, '') fileInfo2[key] = fileInfo.get(key, '')
fileInfo2['fileName'] = os.path.basename(experimentFilePath) fileInfo2['fileName'] = os.path.basename(experimentFilePath)
fileInfo2['experimentStorageDirectory'] = experimentStorageDirectory fileInfo2['storageDirectory'] = storageDirectory
fileInfo2['storageHost'] = storageHost fileInfo2['storageHost'] = storageHost
fileInfo2['storageFilePath'] = storageFilePath fileInfo2['storageFilePath'] = storageFilePath
fileInfo2['experimentFilePath'] = experimentFilePath fileInfo2['experimentFilePath'] = experimentFilePath
fileInfo2['experimentName'] = experimentName fileInfo2['experimentName'] = experimentName
fileInfo2['fileProcessingTime'] = fileProcessingTime fileInfo2['fileProcessingTime'] = fileProcessingTime
fileInfo2['fileProcessingTimeStamp'] = fileProcessingTimeStamp fileInfo2['fileProcessingTimeStamp'] = fileProcessingTimeStamp
fileInfo2.update(fileInfo.get('daqInfo', {})) self.logger.debug('Daq info: %s' % (daqInfo))
fileInfo2.update(daqInfo)
if daqInfo.has_key('id'):
fileInfo2['daqId'] = daqInfo.get('id')
del fileInfo2['id']
self.fileMongoDbApi.updateOrAddExperimentFile(fileInfo2) self.fileMongoDbApi.updateOrAddExperimentFile(fileInfo2)
......
...@@ -18,8 +18,7 @@ class ScriptProcessingPlugin(FileProcessor): ...@@ -18,8 +18,7 @@ class ScriptProcessingPlugin(FileProcessor):
self.logger = LoggingManager.getInstance().getLogger(self.__class__.__name__) self.logger = LoggingManager.getInstance().getLogger(self.__class__.__name__)
def processFile(self, fileInfo): def processFile(self, fileInfo):
experiment = fileInfo.get('experiment') experimentName = fileInfo.get('experimentName')
experimentName = experiment.get('name')
experimentFilePath = fileInfo.get('experimentFilePath') experimentFilePath = fileInfo.get('experimentFilePath')
daqInfo = fileInfo.get('daqInfo', {}) daqInfo = fileInfo.get('daqInfo', {})
processingScript = daqInfo.get(self.PROCESSING_SCRIPT_KEY) processingScript = daqInfo.get(self.PROCESSING_SCRIPT_KEY)
...@@ -29,8 +28,8 @@ class ScriptProcessingPlugin(FileProcessor): ...@@ -29,8 +28,8 @@ class ScriptProcessingPlugin(FileProcessor):
self.logger.debug('Processing file %s for experiment %s' % (experimentFilePath, experimentName)) self.logger.debug('Processing file %s for experiment %s' % (experimentFilePath, experimentName))
experimentStorageDirectory = experiment.get('storageDirectory') storageDirectory = fileInfo.get('storageDirectory')
storageFilePath = os.path.join(experimentStorageDirectory, experimentFilePath) storageFilePath = os.path.join(storageDirectory, experimentFilePath)
# Process file # Process file
try: try:
......
...@@ -19,8 +19,7 @@ class SddsParameterProcessingPlugin(FileProcessor): ...@@ -19,8 +19,7 @@ class SddsParameterProcessingPlugin(FileProcessor):
def processFile(self, fileInfo): def processFile(self, fileInfo):
experimentFilePath = fileInfo.get('experimentFilePath') experimentFilePath = fileInfo.get('experimentFilePath')
experiment = fileInfo.get('experiment') experimentName = fileInfo.get('experimentName')
experimentName = experiment.get('name')
daqInfo = fileInfo.get('daqInfo', {}) daqInfo = fileInfo.get('daqInfo', {})
processSddsParameters = daqInfo.get(self.PROCESS_SDDS_PARAMETERS_KEY) processSddsParameters = daqInfo.get(self.PROCESS_SDDS_PARAMETERS_KEY)
if not processSddsParameters: if not processSddsParameters:
...@@ -29,8 +28,8 @@ class SddsParameterProcessingPlugin(FileProcessor): ...@@ -29,8 +28,8 @@ class SddsParameterProcessingPlugin(FileProcessor):
self.logger.debug('Processing file %s for experiment %s' % (fileInfo, experimentName)) self.logger.debug('Processing file %s for experiment %s' % (fileInfo, experimentName))
experimentStorageDirectory = experiment.get('storageDirectory') storageDirectory = fileInfo.get('storageDirectory')
storageFilePath = os.path.join(experimentStorageDirectory, experimentFilePath) storageFilePath = os.path.join(storageDirectory, experimentFilePath)
# Load file # Load file
try: try:
......
...@@ -17,8 +17,7 @@ class SgeJobSubmissionPlugin(FileProcessor): ...@@ -17,8 +17,7 @@ class SgeJobSubmissionPlugin(FileProcessor):
self.logger = LoggingManager.getInstance().getLogger(self.__class__.__name__) self.logger = LoggingManager.getInstance().getLogger(self.__class__.__name__)
def processFile(self, fileInfo): def processFile(self, fileInfo):
experiment = fileInfo.get('experiment') experimentName = fileInfo.get('experimentName')
experimentName = experiment.get('name')
experimentFilePath = fileInfo.get('experimentFilePath') experimentFilePath = fileInfo.get('experimentFilePath')
daqInfo = fileInfo.get('daqInfo', {}) daqInfo = fileInfo.get('daqInfo', {})
sgeJobScript = daqInfo.get(self.SGE_JOB_SCRIPT_KEY) sgeJobScript = daqInfo.get(self.SGE_JOB_SCRIPT_KEY)
...@@ -28,8 +27,8 @@ class SgeJobSubmissionPlugin(FileProcessor): ...@@ -28,8 +27,8 @@ class SgeJobSubmissionPlugin(FileProcessor):
self.logger.debug('Processing file %s for experiment %s' % (experimentFilePath, experimentName)) self.logger.debug('Processing file %s for experiment %s' % (experimentFilePath, experimentName))
experimentStorageDirectory = experiment.get('storageDirectory') storageDirectory = fileInfo.get('storageDirectory')
storageFilePath = os.path.join(experimentStorageDirectory, experimentFilePath) storageFilePath = os.path.join(storageDirectory, experimentFilePath)
# Process file # Process file
try: try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment