bdb_trans.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: bdb_trans.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 18:37:34  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: bdb_trans.cpp,v 1000.1 2004/06/01 18:37:34 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author: Anatoliy Kuznetsov
  35.  *
  36.  * File Description:  BDB libarary transaction class implementation.
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <bdb/bdb_trans.hpp>
  41. #include <bdb/bdb_file.hpp>
  42. #include <db.h>
  43. BEGIN_NCBI_SCOPE
  44. CBDB_Transaction::CBDB_Transaction(CBDB_Env& env)
  45.  : m_Env(env),
  46.    m_Txn(0)
  47. {}
  48. CBDB_Transaction::~CBDB_Transaction()
  49. {
  50.     if (m_Txn) {       // Active transaction is in progress
  51.         x_Abort(true); // Abort - ignore errors (no except. from constructor)
  52.     }
  53.     NON_CONST_ITERATE(vector<CBDB_RawFile*>, it, m_TransFiles) {
  54.         CBDB_RawFile* dbfile = *it;
  55.         dbfile->x_RemoveTransaction(this);
  56.     }
  57. }
  58. DB_TXN* CBDB_Transaction::GetTxn()
  59. {
  60.     if (m_Env.IsTransactional()) {
  61.         if (m_Txn == 0) {
  62.             m_Txn = m_Env.CreateTxn(0, 0);
  63.         }
  64.     }
  65.     return m_Txn;
  66. }
  67. void CBDB_Transaction::Commit()
  68. {
  69.     if (m_Txn) {
  70.         int ret = m_Txn->commit(m_Txn, DB_TXN_SYNC);
  71.         m_Txn = 0;
  72.         BDB_CHECK(ret, "DB_TXN::commit");
  73.     }
  74. }
  75. void CBDB_Transaction::Abort()
  76. {
  77.     x_Abort(false); // abort with full error processing
  78. }
  79. void CBDB_Transaction::x_Abort(bool ignore_errors)
  80. {
  81.     if (m_Txn) {
  82.         int ret = m_Txn->abort(m_Txn);
  83.         m_Txn = 0;
  84.         if (!ignore_errors) {
  85.             BDB_CHECK(ret, "DB_TXN::abort");
  86.         }
  87.     }
  88. }
  89. void CBDB_Transaction::AddFile(CBDB_RawFile* dbfile) 
  90. {
  91.     m_TransFiles.push_back(dbfile);
  92. }
  93. void CBDB_Transaction::RemoveFile(CBDB_RawFile* dbfile)
  94. {
  95.     NON_CONST_ITERATE(vector<CBDB_RawFile*>, it, m_TransFiles) {
  96.         if (dbfile == *it) {
  97.             m_TransFiles.erase(it);
  98.             break;
  99.         }
  100.     }
  101. }
  102. END_NCBI_SCOPE
  103. /*
  104.  * ===========================================================================
  105.  * $Log: bdb_trans.cpp,v $
  106.  * Revision 1000.1  2004/06/01 18:37:34  gouriano
  107.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  108.  *
  109.  * Revision 1.3  2004/05/17 20:55:11  gorelenk
  110.  * Added include of PCH ncbi_pch.hpp
  111.  *
  112.  * Revision 1.2  2003/12/16 13:44:47  kuznets
  113.  * Added disconnect call to dependent file objects when transaction closes.
  114.  *
  115.  * Revision 1.1  2003/12/10 19:10:09  kuznets
  116.  * Initial revision
  117.  *
  118.  *
  119.  * ===========================================================================
  120.  */