/* * @project The CERN Tape Archive (CTA) * @copyright Copyright © 2022 CERN * @license This program is free software, distributed under the terms of the GNU General Public * Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". You can * redistribute it and/or modify it under the terms of the GPL Version 3, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A * PARTICULAR PURPOSE. See the GNU General Public License for more details. * * In applying this licence, CERN does not waive the privileges and immunities * granted to it by virtue of its status as an Intergovernmental Organization or * submit itself to any jurisdiction. */ #include #include "catalogue/rdbms/oracle/OracleVirtualOrganizationCatalogue.hpp" #include "common/exception/Exception.hpp" #include "common/exception/UserError.hpp" #include "rdbms/Conn.hpp" #include "rdbms/ConnPool.hpp" namespace cta::catalogue { OracleVirtualOrganizationCatalogue::OracleVirtualOrganizationCatalogue(log::Logger &log, std::shared_ptr connPool, RdbmsCatalogue* rdbmsCatalogue) : RdbmsVirtualOrganizationCatalogue(log, connPool, rdbmsCatalogue) {} uint64_t OracleVirtualOrganizationCatalogue::getNextVirtualOrganizationId(rdbms::Conn &conn) { try { const char *const sql = "SELECT " "VIRTUAL_ORGANIZATION_ID_SEQ.NEXTVAL AS VIRTUAL_ORGANIZATION_ID " "FROM " "DUAL"; auto stmt = conn.createStmt(sql); auto rset = stmt.executeQuery(); if (!rset.next()) { throw exception::Exception(std::string("Result set is unexpectedly empty")); } return rset.columnUint64("VIRTUAL_ORGANIZATION_ID"); } catch(exception::UserError &) { throw; } catch(exception::Exception &ex) { ex.getMessage().str(std::string(__FUNCTION__) + ": " + ex.getMessage().str()); throw; } } } // namespace cta::catalogue