|
ATLAS Offline Software
|
Go to the documentation of this file.
12 #include "GaudiKernel/IIoComponentMgr.h"
13 #include "GaudiKernel/ConcurrencyFlags.h"
17 #include "CoralKernel/Context.h"
36 #include "RelationalAccess/ConnectionService.h"
37 #include "RelationalAccess/IConnectionServiceConfiguration.h"
38 #include "RelationalAccess/IWebCacheControl.h"
39 #include "RelationalAccess/IWebCacheInfo.h"
40 #include "RelationalAccess/ILookupService.h"
41 #include "RelationalAccess/IDatabaseServiceSet.h"
42 #include "RelationalAccess/IDatabaseServiceDescription.h"
53 return !
s.empty() and ( isdigit(
s[0]) or
s[0]==
'+' or
s[0]==
'-' );
60 return(StatusCode::FAILURE);
65 if (!iomgr.retrieve().isSuccess()) {
67 return(StatusCode::FAILURE);
69 if (!iomgr->io_register(
this).isSuccess()) {
70 ATH_MSG_FATAL(
"Could not register myself with the IoComponentMgr !");
71 return(StatusCode::FAILURE);
76 if (
catalog.compare(0, 16,
"xmlcatalog_file:") == 0) {
86 if (
m_writeCatalog.value().compare(0, 16,
"xmlcatalog_file:") == 0) {
96 return(StatusCode::FAILURE);
101 return(StatusCode::FAILURE);
103 coral::ConnectionService conSvcH;
104 coral::IConnectionServiceConfiguration& csConfig = conSvcH.configuration();
108 csConfig.enablePoolAutomaticCleanUp();
109 csConfig.setConnectionTimeOut(
m_timeOut);
111 csConfig.disablePoolAutomaticCleanUp();
112 csConfig.setConnectionTimeOut(0);
114 ATH_MSG_INFO(
"Set connectionsvc retry/timeout/IDLE timeout to "
120 <<
" seconds with connection cleanup "
121 << (csConfig.isPoolAutomaticCleanUpEnabled() ?
"enabled" :
"disabled"));
123 coral::IWebCacheControl& webCache = conSvcH.webCacheControl();
125 ATH_MSG_INFO(
"Frontier compression level set to " << webCache.compressionLevel());
129 if (replicasvc.retrieve().isSuccess()) {
130 csConfig.setReplicaSortingAlgorithm(*replicasvc);
131 ATH_MSG_INFO(
"Successfully setup replica sorting algorithm");
146 if (!iomgr.retrieve().isSuccess()) {
148 return(StatusCode::FAILURE);
150 if (!iomgr->io_hasitem(
this)) {
151 ATH_MSG_FATAL(
"IoComponentMgr does not know about myself !");
152 return(StatusCode::FAILURE);
155 for (std::size_t icat = 0,
imax = readcat.size(); icat <
imax; icat++) {
156 if (readcat[icat].
compare(0, 16,
"xmlcatalog_file:") == 0) {
157 std::string
fileName = readcat[icat].substr(16);
158 if (iomgr->io_contains(
this,
fileName)) {
159 if (!iomgr->io_retrieve(
this,
fileName).isSuccess()) {
161 return(StatusCode::FAILURE);
163 readcat[icat] =
"xmlcatalog_file:" +
fileName;
169 if (
m_writeCatalog.value().compare(0, 16,
"xmlcatalog_file:") == 0) {
171 if (iomgr->io_contains(
this,
fileName)) {
172 if (!iomgr->io_retrieve(
this,
fileName).isSuccess()) {
174 return(StatusCode::FAILURE);
192 return(StatusCode::FAILURE);
198 ATH_MSG_FATAL(
"Failed to enable thread safety in ROOT via PersistencySvc.");
199 return(StatusCode::FAILURE);
204 return(StatusCode::FAILURE);
215 return(StatusCode::SUCCESS);
222 ATH_MSG_FATAL(
"Failed to enable implicit multithreading in ROOT via PersistencySvc.");
223 return(StatusCode::FAILURE);
227 return(StatusCode::SUCCESS);
232 bool retError =
false;
239 return(retError ? StatusCode::FAILURE : StatusCode::SUCCESS);
246 delete persistencySvc;
249 for (
const auto& persistencyMutex :
m_pers_mut) {
250 delete persistencyMutex;
276 return(StatusCode::SUCCESS);
283 const std::string& auxString = placement->
auxString();
284 if (!auxString.empty()) {
285 if (auxString.compare(0, 6,
"[CTXT=") == 0) {
286 ::sscanf(auxString.c_str(),
"[CTXT=%08X]", &contextId);
287 }
else if (auxString.compare(0, 8,
"[CLABEL=") == 0) {
291 ATH_MSG_WARNING(
"registerForWrite: Using default output Stream instead of id = " << contextId);
295 std::lock_guard<CallMutex> lock(*
m_pers_mut[contextId]);
297 if (token ==
nullptr) {
305 const std::string& auxString = token->
auxString();
306 if (!auxString.empty()) {
307 if (auxString.compare(0, 6,
"[CTXT=") == 0) {
308 ::sscanf(auxString.c_str(),
"[CTXT=%08X]", &contextId);
309 }
else if (auxString.compare(0, 8,
"[CLABEL=") == 0) {
313 ATH_MSG_WARNING(
"setObjPtr: Using default input Stream instead of id = " << contextId);
317 ATH_MSG_VERBOSE(
"setObjPtr: token=" << token->
toString() <<
", auxString=" << auxString <<
", contextID=" << contextId);
319 std::lock_guard<CallMutex> lock(*
m_pers_mut[contextId]);
321 std::map<unsigned int, unsigned int>::const_iterator maxFileIter =
m_contextMaxFile.find(contextId);
323 m_guidLists[contextId].remove(token->
dbID());
324 m_guidLists[contextId].push_back(token->
dbID());
325 while (m_guidLists[contextId].
size() > maxFileIter->second) {
342 return(contextIter->second);
360 if (!
label.empty()) {
366 return(contextIter->second);
376 if (!
label.empty()) {
405 if (token.compare(0, 4,
"PFN:") == 0) {
407 }
else if (token.compare(0, 4,
"LFN:") == 0) {
409 }
else if (token.compare(0, 4,
"FID:") == 0) {
410 dbID = token.substr(4);
422 std::string dbID,
type;
437 const std::string& connection,
438 const std::string& collectionName,
439 unsigned int contextId)
const {
440 ATH_MSG_DEBUG(
"createCollection() type="<< collectionType <<
", connection=" << connection
441 <<
", name=" << collectionName <<
", contextID=" << contextId);
442 std::string collection(collectionName);
443 if (collectionType ==
"RootCollection") {
444 if (collectionName.find(
"PFN:") == std::string::npos
445 && collectionName.find(
"LFN:") == std::string::npos
446 && collectionName.find(
"FID:") == std::string::npos) {
447 collection =
"PFN:" + collectionName;
451 ATH_MSG_WARNING(
"createCollection: Using default input Stream instead of id = " << contextId);
456 bool insertFile =
false;
457 if (connection.compare(0, 4,
"PFN:") == 0) {
458 std::string fid, fileType;
462 ATH_MSG_INFO(
"File is not in Catalog! Attempt to open it anyway.");
466 if (collectionType ==
"ImplicitCollection") {
467 std::unique_ptr<pool::IDatabase> dbH =
getDbHandle(contextId, connection);
468 if (dbH ==
nullptr) {
469 ATH_MSG_INFO(
"Failed to get Session/DatabaseHandle to create POOL collection.");
476 std::map<unsigned int, unsigned int>::const_iterator maxFileIter =
m_contextMaxFile.find(contextId);
477 if (maxFileIter !=
m_contextMaxFile.end() && maxFileIter->second > 0 && !dbH->
fid().empty()) {
479 m_guidLists[contextId].remove(
guid);
480 m_guidLists[contextId].push_back(
guid);
481 while (m_guidLists[contextId].
size() > maxFileIter->second + 1) {
486 if (contH ==
nullptr) {
487 ATH_MSG_INFO(
"Failed to find container " << collection <<
" to create POOL collection.");
494 ATH_MSG_INFO(
"Failed to open container to check POOL collection - trying.");
503 if (collectionType ==
"RootCollection" &&
505 ATH_MSG_INFO(
"Writing ExplicitROOT Collection - do not pass session pointer");
511 std::string tree_error, rntuple_error;
515 tree_error =
e.what();
518 collDes.
setType(
"RNTCollection");
522 std::unique_ptr<pool::IDatabase> dbH =
getDbHandle(contextId, connection);
523 if (dbH !=
nullptr) {
524 if (!dbH->
fid().empty()) {
529 rntuple_error =
e.what();
531 if( !collPtr )
throw pool::Exception(
"Failed to open APR Collection as RootCollection or RNTCollection: "
532 + tree_error +
" | " + rntuple_error,
533 "PoolSvc::createCollection",
"PoolSvc" );
536 std::unique_ptr<pool::IDatabase> dbH =
getDbHandle(contextId, connection);
537 if (dbH ==
nullptr) {
539 }
else if (dbH->
fid().empty()) {
540 ATH_MSG_INFO(
"Cannot retrieve the FID of an existing POOL database: '"
541 << connection <<
"' - FileCatalog will NOT be updated.");
548 if (
m_useROOTMaxTree && Gaudi::Concurrency::ConcurrencyFlags::numConcurrentEvents() > 1) {
560 std::string fid = dbH.
fid();
566 const std::string& collection,
567 const unsigned long ientry)
const {
570 if (dbH ==
nullptr) {
577 if (contH ==
nullptr) {
582 for (
unsigned long ipos = 0; ipos < ientry; ipos++) {
583 delete thisToken; thisToken = tokenIter->
next();
585 delete tokenIter; tokenIter =
nullptr;
592 ATH_MSG_WARNING(
"connect: Using default output Stream instead of id = " << contextId);
597 ATH_MSG_WARNING(
"connect: Using default input Stream instead of id = " << contextId);
600 ATH_MSG_INFO(
"Connecting to InputStream for: " << contextId);
605 return(StatusCode::FAILURE);
611 return(StatusCode::SUCCESS);
615 return(StatusCode::FAILURE);
618 return(StatusCode::SUCCESS);
623 return(StatusCode::FAILURE);
630 return(StatusCode::FAILURE);
636 return(StatusCode::SUCCESS);
641 return(StatusCode::FAILURE);
648 return(StatusCode::FAILURE);
651 return(StatusCode::SUCCESS);
655 ATH_MSG_DEBUG(
"Disconnect request for contextId=" << contextId);
657 return(StatusCode::SUCCESS);
662 if (!
commit(contextId).isSuccess()) {
664 return(StatusCode::FAILURE);
669 ATH_MSG_ERROR(
"disconnect failed to diconnect PersistencySvc");
670 return(StatusCode::FAILURE);
673 return(StatusCode::SUCCESS);
678 return(StatusCode::SUCCESS);
681 std::unique_ptr<pool::IDatabase> dbH =
getDbHandle(contextId, connection);
682 if (dbH ==
nullptr) {
684 return(StatusCode::FAILURE);
686 std::map<unsigned int, unsigned int>::const_iterator maxFileIter =
m_contextMaxFile.find(contextId);
688 m_guidLists[contextId].remove(
Guid(dbH->
fid()));
691 return(StatusCode::SUCCESS);
697 if (dbH ==
nullptr) {
698 ATH_MSG_DEBUG(
"getFileSize: Failed to get Session/DatabaseHandle to get POOL FileSize property.");
715 unsigned int contextId)
const {
717 ATH_MSG_WARNING(
"getAttribute: Using default input Stream instead of id = " << contextId);
722 std::ostringstream oss;
723 if (
data ==
"DbLonglong") {
725 }
else if (
data ==
"double") {
732 return(StatusCode::SUCCESS);
738 const std::string&
dbName,
739 const std::string& contName,
740 unsigned int contextId)
const {
743 if (dbH ==
nullptr) {
744 ATH_MSG_DEBUG(
"getAttribute: Failed to get Session/DatabaseHandle to get POOL property.");
745 return(StatusCode::FAILURE);
755 std::ostringstream oss;
756 if (contName.empty()) {
757 if (
data ==
"DbLonglong") {
759 }
else if (
data ==
"double") {
761 }
else if (
data ==
"string") {
766 ATH_MSG_INFO(
"Database (" << dbH->
pfn() <<
") attribute [" << optName <<
"]" <<
": " << oss.str());
769 if (contH ==
nullptr) {
770 ATH_MSG_DEBUG(
"Failed to get ContainerHandle to get POOL property.");
771 return(StatusCode::FAILURE);
773 if (
data ==
"DbLonglong") {
775 }
else if (
data ==
"double") {
780 ATH_MSG_INFO(
"Container attribute [" << contName <<
"." << optName <<
"]: " << oss.str());
783 return(StatusCode::SUCCESS);
787 const std::string&
data,
789 unsigned int contextId)
const {
791 ATH_MSG_WARNING(
"setAttribute: Using default output Stream instead of id = " << contextId);
799 return(StatusCode::FAILURE);
804 return(StatusCode::FAILURE);
807 return(StatusCode::SUCCESS);
811 const std::string&
data,
813 const std::string&
dbName,
814 const std::string& contName,
815 unsigned int contextId)
const {
817 ATH_MSG_WARNING(
"setAttribute: Using default output Stream instead of id = " << contextId);
822 if (dbH ==
nullptr) {
823 ATH_MSG_DEBUG(
"Failed to get Session/DatabaseHandle to set POOL property.");
824 return(StatusCode::FAILURE);
834 bool retError =
false;
836 bool hasTTreeName = (contName.length() > 6 && contName.compare(0, 6,
"TTree=") == 0);
838 objName = hasTTreeName ? contName.substr(6) : contName;
841 }
else if(
data[
data.size() - 1] ==
'L' ) {
848 return(StatusCode::FAILURE);
852 if (contH ==
nullptr) {
853 ATH_MSG_DEBUG(
"Failed to get ContainerHandle to set POOL property.");
854 return(StatusCode::FAILURE);
856 if (
auto p = contName.find(
'(');
p != std::string::npos) {
857 objName = contName.substr(
p + 1);
858 objName.erase(objName.find(
')'));
859 }
else if (
auto p = contName.find(
"::");
p != std::string::npos) {
860 objName = contName.substr(
p + 2);
861 }
else if (
auto p = contName.find(
'_');
p != std::string::npos) {
862 objName = contName.substr(
p + 1);
863 objName.erase(objName.find(
'/'));
865 std::string::size_type off = 0;
866 while ((off = objName.find_first_of(
"<>/")) != std::string::npos) {
875 ATH_MSG_DEBUG(
"Failed to set POOL container property, " << optName <<
" for " << contName <<
" : " << objName <<
" to " <<
data);
876 return(StatusCode::FAILURE);
879 return(StatusCode::SUCCESS);
887 std::vector<std::string> physcons;
888 if (
conn.find(
':') == std::string::npos) {
891 const std::string lookSvcStr(
"CORAL/Services/XMLLookupService");
892 coral::IHandle<coral::ILookupService> lookSvcH =
m_context->query<coral::ILookupService>();
893 if (!lookSvcH.isValid()) {
895 lookSvcH =
m_context->query<coral::ILookupService>();
897 if (!lookSvcH.isValid()) {
899 return(StatusCode::FAILURE);
901 coral::IDatabaseServiceSet* dbset = lookSvcH->lookup(
conn, coral::ReadOnly);
902 if (dbset !=
nullptr) {
903 for (
int irep = 0, nrep = dbset->numberOfReplicas(); irep < nrep; ++irep) {
904 const std::string pcon = dbset->replica(irep).connectionString();
905 if (pcon.compare(0, 9,
"frontier:") == 0) {
906 physcons.push_back(pcon);
909 delete dbset; dbset =
nullptr;
913 }
else if (
conn.compare(0, 9,
"frontier:") == 0) {
914 physcons.push_back(
conn);
917 if (physcons.size() == 0) {
918 return(StatusCode::SUCCESS);
920 coral::ConnectionService conSvcH;
924 coral::IWebCacheControl& webCache = conSvcH.webCacheControl();
925 for (std::vector<std::string>::const_iterator iter = physcons.begin(), last = physcons.end();
926 iter != last; ++iter) {
933 webCache.refreshTable(*iter,
"DUMMYTABLE");
936 webCache.refreshSchemaInfo(*iter);
938 ATH_MSG_DEBUG(
"Cache flag for connection " << *iter <<
" set to " << webCache.webCacheInfo(*iter).isSchemaInfoCached());
940 return(StatusCode::SUCCESS);
948 if (
catalog.compare(0, 8,
"apcfile:") == 0 ||
catalog.compare(0, 7,
"prfile:") == 0) {
949 std::string::size_type cpos =
catalog.find(
':');
964 <<
" in $ATLAS_POOLCOND_PATH and $DATAPATH");
976 ATH_MSG_ERROR(
"setWriteCatalog - caught exception: " <<
e.what());
989 ATH_MSG_WARNING(
"getDbHandle: Using default input Stream instead of id = " << contextId);
1004 if (
dbName.compare(0, 4,
"PFN:") == 0) {
1006 }
else if (
dbName.compare(0, 4,
"LFN:") == 0) {
1008 }
else if (
dbName.compare(0, 4,
"FID:") == 0) {
1013 return(std::unique_ptr<pool::IDatabase>(dbH));
1018 if (dbH ==
nullptr) {
1025 if (contName.find(
"DataHeader") != std::string::npos) {
1026 contH = dbH->
containerHandle(contName.substr(0, contName.find(
"_p")));
1030 return(std::unique_ptr<pool::IContainer>(contH));
1036 const char* cpath =
std::getenv(
"ATLAS_POOLCOND_PATH");
1037 if (cpath && strcmp(cpath,
"") != 0) {
1038 const std::string testpath = std::string(cpath) +
"/" + leaf;
1042 if (FILE*
fp = std::fopen(testpath.c_str(),
"r")) {
virtual StatusCode stop() override
IntegerProperty m_timeOut
ConnectionTimeOut, the time out for CORAL Connection Service: default = 5 seconds.
char data[hepevt_bytes_allocation_ATLAS]
static CollectionFactory * get()
Retrieves the collection factory singleton.
static const Guid & null()
NULL-Guid: static class method.
def finalize(self)
_info( "content of StoreGate..." ) self.sg.dump()
std::pair< int, int > compare(const AmgSymMatrix(N) &m1, const AmgSymMatrix(N) &m2, double precision=1e-9, bool relative=false)
compare two matrices, returns the indices of the first element that fails the condition,...
This class holds all the necessary information to guide the writing of an object in a physical place.
std::map< unsigned int, std::list< Guid > > m_guidLists ATLAS_THREAD_SAFE
void lookupFileByPFN(const std::string &pfn, std::string &fid, std::string &tech) const
Get FID and filetype for a given PFN.
std::unique_ptr< pool::IDatabase > getDbHandle(unsigned int contextId, const std::string &dbName) const
Get Database handle.
IntegerProperty m_retrialTimeOut
ConnectionRetrialTimeOut, the retrial time out for CORAL Connection Service: default = 300 seconds.
const std::string & containerName() const
Access container name.
bool setWriteModeForNonExisting(Mode mode)
Sets the opening mode when a non existing database is opened for writing Acceptable values are RAISE_...
std::string find(const std::string &s)
return a remapped string
static std::string find_file(const std::string &logical_file_name, const std::string &search_path, SearchType search_type=LocalSearch)
StringProperty m_fileOpen
FileOpen, the open mode for the file ("append" or "overwrite").
IntegerProperty m_frontierComp
Frontier proprties, compression level and list of schemas to be refreshed: default = 5.
void registerPFN(const std::string &pfn, const std::string &ftype, std::string &fid)
Register PFN, assign new FID if not given.
std::map< std::string, unsigned int > m_inputContextLabel
virtual StatusCode connect(pool::ITransaction::Type type, unsigned int contextId=IPoolSvc::kInputStream) override
Connect to a logical database unit; PersistencySvc is chosen according to transaction type (accessmod...
virtual StatusCode commit(unsigned int contextId=IPoolSvc::kInputStream) const override
Commit data for a given contextId and flush buffer.
BooleanProperty m_attemptCatalogPatch
AttemptCatalogPatch, option to create catalog: default = false.
virtual const ITechnologySpecificAttributes & technologySpecificAttributes() const =0
Returns the object holding the technology specific attributes for a given technology domain.
virtual void connectForRead()=0
Connects explicitly to the database for read operations.
const std::string & auxString() const
Access auxiliary string.
virtual const pool::IFileCatalog * catalog() const override
void renamePFN(const std::string &pfn, const std::string &newpfn)
Rename PFN.
virtual StatusCode disconnect(unsigned int contextId=IPoolSvc::kInputStream) const override
Disconnect PersistencySvc associated with a contextId.
const Guid & dbID() const
Access database identifier.
StringArrayProperty m_frontierRefresh
virtual bool disconnectAll()=0
Explicitly disconnects all the databases.
virtual const std::string & pfn()=0
Returns the physical file name of this database.
const std::string toString() const
Automatic conversion to string representation.
void commit()
Save catalog to file.
bool setAttribute(const std::string &attributeName, const T &atttibuteValue, const std::string &option="")
Templated method to set an attribute.
virtual ITokenIterator * tokens(const std::string &selection)=0
Starts an iteration over the tokens in the container.
coral::Context * m_context
#define ATH_MSG_VERBOSE(x)
virtual StatusCode setAttribute(const std::string &optName, const std::string &data, long tech, unsigned int contextId=IPoolSvc::kOutputStream) const override
Set POOL attributes - domain.
virtual ITransaction & transaction()=0
Returns the transaction object.
virtual const std::string & fid()=0
Returns the file identifier of this database.
virtual long long int getFileSize(const std::string &dbName, long tech, unsigned int contextId) const override
Get POOL FileSize attribute for database without logging a message.
StringProperty m_writeCatalog
WriteCatalog, the file catalog to be used to register output files (also default input catalog): defa...
virtual OpenMode openMode() const =0
Returns the opening mode. It can be used to check whether the database is connected.
virtual void setObjPtr(void *&obj, const Token *token) override
virtual Token * next()=0
Returns the pointer to next token.
BooleanProperty m_useROOTMaxTree
Increase virtual TTree size to avoid backreads in multithreading, default = false.
Type
Transaction type enumeration.
virtual const ITechnologySpecificAttributes & technologySpecificAttributes() const =0
Returns the object holding the technology specific attributes.
void lookupFileByLFN(const std::string &lfn, std::string &fid) const
Return the status of a LFName.
This class provides a token that identifies in a unique way objects on the persistent storage.
void setLevel(MsgLevel l)
virtual void renamePfn(const std::string &pf, const std::string &newpf) override
std::recursive_mutex CallMutex
Token & fromString(const std::string &from)
Build from the string representation of a token.
std::vector< CallMutex * > m_pers_mut
std::string m_mainOutputLabel
Base exception class for the POOL system.
std::string toString(const Translation3D &translation, int precision=4)
GeoPrimitvesToStringConverter.
virtual const coral::Context * context() const override
virtual unsigned int getOutputContext(const std::string &label) override
This file contains the class definition for the PoolSvc class.
virtual bool commitAndHold()=0
Commits the holds transaction.
virtual void connectForWrite()=0
Connects explicitly to the database for write/update operations.
::StatusCode StatusCode
StatusCode definition for legacy code.
std::unique_ptr< pool::IContainer > getContainerHandle(pool::IDatabase *dbH, const std::string &contName) const
Get Container handle.
virtual const ITechnologySpecificAttributes & technologySpecificAttributes(long technology) const =0
Returns the object holding the technology specific attributes for a given technology domain.
void start()
redirect to init() for Gaudi FC
virtual bool start(Type type=READ)=0
Starts a new transaction. Returns the success of the operation.
bool setWriteModeForExisting(Mode mode)
Sets the opening mode when an existing database is opened for writing.
virtual Token * getToken(const std::string &connection, const std::string &collection, const unsigned long ientry) const override
virtual StatusCode disconnectDb(const std::string &connection, unsigned int contextId=IPoolSvc::kInputStream) const override
Disconnect single Database.
void setWriteCatalog(const std::string &connect)
Access to the (first) writable file catalog.
virtual bool setTechnology(long technology)=0
Sets the technology identifier for this database.
virtual void disconnect()=0
Disconnects from the database.
virtual pool::ICollection * createCollection(const std::string &collectionType, const std::string &connection, const std::string &collectionName, unsigned int contextId=IPoolSvc::kInputStream) const override
virtual StatusCode commitAndHold(unsigned int contextId=IPoolSvc::kInputStream) const override
Commit data for a given contextId and hold buffer.
const std::string & auxString() const
Access auxiliary string.
void removeCatalog(const std::string &connect)
Add new catalog identified by reference to the existing ones.
bool allGood
Loop over the SDOs & Digits.
BooleanProperty m_sortReplicas
Use DBReplicaSvc to sort database connections, default = true.
virtual StatusCode setFrontierCache(const std::string &conn) override
Setup Frontier cache for given logical or physical connection name.
virtual StatusCode getAttribute(const std::string &optName, std::string &data, long tech, unsigned int contextId=IPoolSvc::kInputStream) const override
Get POOL attributes - domain.
pool::IFileCatalog * m_catalog
std::map< unsigned int, unsigned int > m_contextMaxFile
virtual void setType(const std::string &type)
Sets the storage technology type of the collection.
StringArrayProperty m_readCatalog
ReadCatalog, the list of additional POOL input file catalogs to consult: default = empty vector.
IntegerProperty m_dbAgeLimit
MaxFilesOpen, option to have PoolSvc limit the number of open Input Files: default = 0 (No files are ...
virtual const std::string toString() const
Retrieve the string representation of the token.
void patchCatalog(const std::string &pfn, pool::IDatabase &dbH) const
virtual bool commit()=0
Commits the transaction.
virtual void loadComponent(const std::string &compName) override
virtual const std::map< std::string, unsigned int > & getInputContextMap() const override
std::string poolCondPath(const std::string &leaf)
Resolve a file using ATLAS_POOLCOND_PATH.
virtual void lookupBestPfn(const std::string &token, std::string &pfn, std::string &type) const override
virtual Token * registerForWrite(const Placement *placement, const void *obj, const RootType &classDesc) override
virtual IDatabase * databaseHandle(const std::string &dbName, DatabaseSpecification::NameType dbNameType)=0
Returns a pointer to a database object. The user acquires ownership of that object.
virtual StatusCode finalize() override
Required of all Gaudi services:
T attribute(const std::string &attributeName, const std::string &option="")
Templated method to retrieve an attribute.
void getFirstPFN(const std::string &fid, std::string &pfn, std::string &tech) const
Get the first PFN + filetype for the given FID.
virtual void setShareMode(bool shareCat) override
virtual StatusCode start() override
Required of all Gaudi services:
This class provides a encapsulation of a GUID/UUID/CLSID/IID data structure (128 bit number).
std::string getenv(const std::string &variableName)
get an environment variable
#define ATH_MSG_WARNING(x)
virtual StatusCode initialize() override
Required of all Gaudi services:
std::vector< pool::IPersistencySvc * > m_persistencySvcVec
StatusCode setupPersistencySvc()
virtual ISession & session()=0
Returns the underlying global session.
virtual IContainer * containerHandle(const std::string &name)=0
Returns a pointer to a container object. The user acquires ownership of that object.
virtual ~PoolSvc()
Destructor.
IntegerProperty m_retrialPeriod
ConnectionRetrialPeriod, retry period for CORAL Connection Service: default = 30 seconds.
int atoi(std::string_view str)
Helper functions to unpack numbers decoded in string into integers and doubles The strings are requir...
bool isNumber(const std::string &s)
pool::IFileCatalog * createCatalog()
virtual StatusCode io_reinit() override
This file contains the class definition for the Placement class (migrated from POOL).
static std::unique_ptr< IPersistencySvc > create(IFileCatalog &catalog)
Factory for PersistencySvc.
virtual unsigned int getInputContext(const std::string &label, unsigned int maxFile=0) override
This file contains the class definition for the Token class (migrated from POOL).
BooleanProperty m_connClean
ConnectionCleanUp - whether to use CORAL connection management thread: default = false.
void addReadCatalog(const std::string &connect)
Add new catalog identified by name to the existing ones.
virtual Type type() const =0
Returns the transaction type.
virtual StatusCode io_finalize() override
BooleanProperty m_useROOTIMT
Use ROOT Implicit MultiThreading, default = true.
virtual bool isActive() const =0
Checks if the transaction is active.
std::map< std::string, unsigned int > m_outputContextLabel