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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: bdb_util.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:13:35  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef BDB_UTIL_HPP__
  10. #define BDB_UTIL_HPP__
  11. /* $Id: bdb_util.hpp,v 1000.1 2004/04/12 17:13:35 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author:  Anatoliy Kuznetsov
  37.  *   
  38.  * File Description: BDB library utilities. 
  39.  *                   
  40.  *
  41.  */
  42. #include <bdb/bdb_file.hpp>
  43. #include <bdb/bdb_cursor.hpp>
  44. BEGIN_NCBI_SCOPE
  45. /** @addtogroup BDB_Util
  46.  *
  47.  * @{
  48.  */
  49. /// Template algorithm function to iterate the BDB File.
  50. /// Func() is called for every dbf record.
  51. template<class FL, class Func> 
  52. void BDB_iterate_file(FL& dbf, Func& func)
  53. {
  54.     CBDB_FileCursor cur(dbf);
  55.     cur.SetCondition(CBDB_FileCursor::eFirst);
  56.     while (cur.Fetch() == eBDB_Ok) {
  57.         func(dbf);
  58.     }
  59. }
  60. class CBoyerMooreMatcher;
  61. /// Find index of field containing the specified value
  62. /// Search condition is specified by CBoyerMooreMatcher
  63. ///
  64. /// @param dbf
  65. ///    Database to search in. Should be positioned on some
  66. ///    record by Fetch or another method
  67. /// @param matcher
  68. ///    Search condition substring matcher
  69. /// @return 
  70. ///    0 if value not found
  71. CBDB_File::TUnifiedFieldIndex NCBI_BDB_EXPORT 
  72. BDB_find_field(const CBDB_File& dbf, 
  73.                const CBoyerMooreMatcher& matcher);
  74. /// Return record id (integer key)
  75. ///
  76. /// @return 
  77. ///    record integer key or 0 if it cannot be retrived
  78. int NCBI_BDB_EXPORT BDB_get_rowid(const CBDB_File& dbf);
  79. /* @} */
  80. END_NCBI_SCOPE
  81. /*
  82.  * ===========================================================================
  83.  * $Log: bdb_util.hpp,v $
  84.  * Revision 1000.1  2004/04/12 17:13:35  gouriano
  85.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.4
  86.  *
  87.  * Revision 1.4  2004/03/10 14:02:55  kuznets
  88.  * + BDB_get_rowid
  89.  *
  90.  * Revision 1.3  2004/03/08 13:33:19  kuznets
  91.  * + BDB_find_field
  92.  *
  93.  * Revision 1.2  2003/06/10 20:07:27  kuznets
  94.  * Fixed header files not to repeat information from the README file
  95.  *
  96.  * Revision 1.1  2003/06/06 16:34:57  kuznets
  97.  * Initial revision
  98.  *
  99.  *
  100.  * ===========================================================================
  101.  */
  102. #endif