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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: demo4.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 18:37:51  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: demo4.cpp,v 1000.1 2004/06/01 18:37:51 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: Demo4 application for NCBI Berkeley DB library (BDB).
  37.  *                   BLOB storage demonstration.
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <corelib/ncbiapp.hpp>
  42. #include <corelib/ncbiargs.hpp>
  43. #include <assert.h>
  44. #include <bdb/bdb_blob.hpp>
  45. USING_NCBI_SCOPE;
  46. const char* s_LobDBFileName = "blobstore.db";
  47. const int array1[] = {1, 2, 3, 4, 5, 0};
  48. const int array2[] = {10, 20, 30, 40, 50, 0};
  49. void LoadBLOB_Table()
  50. {
  51.     CBDB_LobFile lob;
  52.     lob.Open(s_LobDBFileName, "lob", CBDB_LobFile::eCreate);
  53.     EBDB_ErrCode ret = lob.Insert(1, array1, sizeof(array1));
  54.     if (ret != eBDB_Ok) {
  55.         cout << "Insert failed!" << endl;
  56.         exit(1);
  57.     }
  58.     ret = lob.Insert(2, array2, sizeof(array2));
  59.     if (ret != eBDB_Ok) {
  60.         cout << "Insert failed!" << endl;
  61.         exit(1);
  62.     }
  63. }
  64. void PrintBLOB_Table()
  65. {
  66.     int  buffer[256];
  67.     CBDB_LobFile lob;
  68.     lob.Open(s_LobDBFileName, "lob", CBDB_LobFile::eReadOnly);
  69.     // The safest way to read a LOB is first to retrieve the correspondent
  70.     // record and use LobSize() to get information about the BLOB size.
  71.     // When the size is known we can allocate memory and fetch the LOB
  72.     // data using GetData() function.
  73.     
  74.     EBDB_ErrCode ret = lob.Fetch(1);
  75.     if (ret == eBDB_Ok) {
  76.         unsigned size = lob.LobSize();
  77.         if (size > sizeof(buffer)) {
  78.             cout << "Insufficient buffer size!" << endl;
  79.         }
  80.         else {
  81.             ret = lob.GetData(buffer, sizeof(buffer));
  82.             assert(ret == eBDB_Ok);
  83.             for (unsigned int i = 0; i < size / sizeof(buffer[0]); ++i) {
  84.                 cout << buffer[i] << " ";
  85.             }
  86.             cout << endl;
  87.         }
  88.     } else {
  89.         cout << "BLOB 1 not found" << endl;
  90.     }
  91.     // In case we know the maximum possible BLOB size we can implement
  92.     // one phase fetch. It should work faster in many cases.
  93.     void* ptr = (void*)buffer;
  94.     ret = lob.Fetch(2, 
  95.                     &ptr, 
  96.                     sizeof(buffer), 
  97.                     CBDB_LobFile::eReallocForbidden);
  98.     if (ret == eBDB_Ok) {
  99.         unsigned size = lob.LobSize();
  100.         for (unsigned int i = 0; i < size / sizeof(buffer[0]); ++i) {
  101.             cout << buffer[i] << " ";
  102.         }
  103.         cout << endl;        
  104.     } else {
  105.         cout << "BLOB 2 not found" << endl;
  106.     }
  107. }
  108. ////////////////////////////////
  109. // BLob Demo application
  110. //
  111. class CBDB_BLobDemo1 : public CNcbiApplication
  112. {
  113. public:
  114.     void Init(void);
  115.     int Run(void);
  116. };
  117. void CBDB_BLobDemo1::Init(void)
  118. {
  119.     SetDiagPostLevel(eDiag_Warning);
  120.     SetDiagPostFlag(eDPF_File);
  121.     SetDiagPostFlag(eDPF_Line);
  122.     auto_ptr<CArgDescriptions> d(new CArgDescriptions);
  123.     d->SetUsageContext("bdb demo1",
  124.                        "Demo1 application for BDB library");
  125.     SetupArgDescriptions(d.release());
  126. }
  127. int CBDB_BLobDemo1::Run(void)
  128. {
  129.     try
  130.     {
  131.         LoadBLOB_Table();
  132.         PrintBLOB_Table();
  133.     }
  134.     catch (CBDB_ErrnoException& ex)
  135.     {
  136.         cout << "Error! DBD errno exception:" << ex.what();
  137.         return 1;
  138.     }
  139.     catch (CBDB_LibException& ex)
  140.     {
  141.         cout << "Error! DBD library exception:" << ex.what();
  142.         return 1;
  143.     }
  144.     return 0;
  145. }
  146. int main(int argc, const char* argv[])
  147. {
  148.     return CBDB_BLobDemo1().AppMain(argc, argv, 0, eDS_Default, 0);
  149. }
  150. /*
  151.  * ===========================================================================
  152.  * $Log: demo4.cpp,v $
  153.  * Revision 1000.1  2004/06/01 18:37:51  gouriano
  154.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  155.  *
  156.  * Revision 1.4  2004/05/17 20:55:18  gorelenk
  157.  * Added include of PCH ncbi_pch.hpp
  158.  *
  159.  * Revision 1.3  2003/05/27 18:07:12  kuznets
  160.  * Fixed compilation warnings
  161.  *
  162.  * Revision 1.2  2003/05/02 16:23:14  kuznets
  163.  * Cosmetic fixes
  164.  *
  165.  * Revision 1.1  2003/05/01 19:51:46  kuznets
  166.  * Initial revision
  167.  *
  168.  * ===========================================================================
  169.  */