Skip to content
Snippets Groups Projects
Commit 8d32b115 authored by Charles Leggett's avatar Charles Leggett
Browse files

Extended support for direct I/O inputs in IoComponentMgr::io_register()

See merge request !466
parents ad01bc98 ce81f20b
No related branches found
No related tags found
1 merge request!466Extended support for direct I/O inputs in IoComponentMgr::io_register()
Pipeline #
......@@ -6,17 +6,18 @@
// GaudiMP includes
#include "IoComponentMgr.h"
// FrameWork includes
#include "GaudiKernel/FileIncident.h"
#include "GaudiKernel/IIncidentSvc.h"
#include "GaudiKernel/IFileMgr.h"
#include "GaudiKernel/IIncidentSvc.h"
#include "GaudiKernel/Property.h"
#include "GaudiKernel/ServiceHandle.h"
// BOOST includes
#include <boost/algorithm/string/predicate.hpp>
#include <boost/filesystem.hpp>
// STL includes
// FrameWork includes
#include "GaudiKernel/Property.h"
#include <algorithm>
#include <array>
#define ON_DEBUG if ( UNLIKELY( outputLevel() <= MSG::DEBUG ) )
#define ON_VERBOSE if ( UNLIKELY( outputLevel() <= MSG::VERBOSE ) )
......@@ -203,11 +204,15 @@ StatusCode IoComponentMgr::io_register( IIoComponent* iocomponent, IIoComponentM
}
}
// We need to take into account that boost::filesystem::absolute() does not
// work for files read from eos, i.e. starting with "root:"
std::string tmp_name = pfn.empty() ? fname : pfn;
bool from_eos = tmp_name.find( "root:" ) == 0;
IoComponentEntry ioc( fname, ( from_eos ? tmp_name : boost::filesystem::absolute( tmp_name ).string() ), iomode );
// We need to take into account that boost::filesystem::absolute() does not work in following cases:
// 1. files read from eos, i.e. starting with "root:"
// 2. files read over http, i.e. starting either with 'http:' or with 'https:'
const std::string& tmp_name = ( pfn.empty() ? fname : pfn );
static const std::array<std::string, 4> prefixes = {"root:", "http:", "https:", "dcap:"};
bool special_case = std::any_of( begin( prefixes ), end( prefixes ), [&]( const std::string& pf ) {
return boost::algorithm::starts_with( tmp_name, pf );
} );
IoComponentEntry ioc( fname, ( special_case ? tmp_name : boost::filesystem::absolute( tmp_name ).string() ), iomode );
m_cdict.insert( pair<IIoComponent*, IoComponentEntry>( iocomponent, ioc ) );
return StatusCode::SUCCESS;
......
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