#include <CondPyInterface.h>
Public Member Functions | |
CondDB | getDB (std::string const &db) |
GlobalTag const & | globalTag (std::string const &connstr, std::string const &gname, std::string const &prefix, std::string const &postfix) const |
RDBMS (std::string const &authPath, bool debug=false) | |
RDBMS (std::string const &user, std::string const &pass) | |
RDBMS () | |
void | setLogger (std::string const &connstr) |
~RDBMS () | |
Private Attributes | |
boost::shared_ptr< DbConnection > | connection |
boost::shared_ptr< cond::Logger > | logger |
GlobalTag | m_globalTag |
Definition at line 68 of file CondPyInterface.h.
cond::RDBMS::RDBMS | ( | ) |
Definition at line 194 of file CondPyInterface.cc.
References cond::CmsDefaults, and connection.
: connection(new DbConnection) { //topinit(); connection->configure( cond::CmsDefaults ); }
cond::RDBMS::~RDBMS | ( | ) |
Definition at line 198 of file CondPyInterface.cc.
{}
cond::RDBMS::RDBMS | ( | std::string const & | authPath, |
bool | debug = false |
||
) | [explicit] |
Definition at line 200 of file CondPyInterface.cc.
References connection, and Debug.
: connection(new DbConnection) { //topinit(); connection->configuration().setAuthenticationPath(authPath); if (debug) connection->configuration().setMessageLevel( coral::Debug ); else connection->configuration().setMessageLevel( coral::Error ); connection->configuration().setPoolAutomaticCleanUp( false ); connection->configuration().setConnectionTimeOut(0); connection->configure(); }
cond::RDBMS::RDBMS | ( | std::string const & | user, |
std::string const & | pass | ||
) |
Definition at line 213 of file CondPyInterface.cc.
References connection.
: connection(new DbConnection) { //topinit(); std::string userenv(std::string("CORAL_AUTH_USER=")+user); std::string passenv(std::string("CORAL_AUTH_PASSWORD=")+pass); ::putenv(const_cast<char*>(userenv.c_str())); ::putenv(const_cast<char*>(passenv.c_str())); connection->configuration().setMessageLevel( coral::Error ); connection->configuration().setPoolAutomaticCleanUp( false ); connection->configuration().setConnectionTimeOut(0); connection->configure(); }
CondDB cond::RDBMS::getDB | ( | std::string const & | db | ) |
Definition at line 233 of file CondPyInterface.cc.
References connection, logger, and cond::DbSession::open().
Referenced by BOOST_PYTHON_MODULE(), and CondBasicIter::create().
{ DbSession dbSession = connection->createSession(); dbSession.open( db ); return CondDB(dbSession,logger); }
GlobalTag const & cond::RDBMS::globalTag | ( | std::string const & | connstr, |
std::string const & | gname, | ||
std::string const & | prefix, | ||
std::string const & | postfix | ||
) | const |
Definition at line 239 of file CondPyInterface.cc.
References cond::DbScopedTransaction::commit(), connection, cond::TagCollectionRetriever::getTagCollection(), m_globalTag, cond::DbSession::open(), python::CommonUtils::session, and cond::DbScopedTransaction::start().
Referenced by BOOST_PYTHON_MODULE().
{ DbSession session = connection->createSession(); session.open( connstr ); cond::DbScopedTransaction tr(session); tr.start(true); TagCollectionRetriever gtr(session, prefix,postfix); const_cast<GlobalTag&>(m_globalTag).clear(); gtr.getTagCollection(gname,const_cast<GlobalTag&>(m_globalTag)); tr.commit(); return m_globalTag; }
void cond::RDBMS::setLogger | ( | std::string const & | connstr | ) |
Definition at line 225 of file CondPyInterface.cc.
References connection, logger, and cond::DbSession::open().
Referenced by BOOST_PYTHON_MODULE().
{ DbSession loggerSession = connection->createSession(); loggerSession.open( connstr ); logger.reset(new cond::Logger(loggerSession)); }
boost::shared_ptr<DbConnection> cond::RDBMS::connection [private] |
Definition at line 83 of file CondPyInterface.h.
Referenced by getDB(), globalTag(), RDBMS(), and setLogger().
boost::shared_ptr<cond::Logger> cond::RDBMS::logger [private] |
Definition at line 84 of file CondPyInterface.h.
Referenced by getDB(), and setLogger().
GlobalTag cond::RDBMS::m_globalTag [private] |
Definition at line 85 of file CondPyInterface.h.
Referenced by globalTag().