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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: lds_files.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 21:01:24  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef LDS_FILES_HPP__
  10. #define LDS_FILES_HPP__
  11. /*  $Id: lds_files.hpp,v 1000.0 2003/10/29 21:01:24 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: Different operations on LDS File table
  39.  *
  40.  */
  41. #include <corelib/ncbistd.hpp>
  42. #include <objtools/lds/lds_db.hpp>
  43. #include <objtools/lds/lds_set.hpp>
  44. #include <objtools/lds/lds_expt.hpp>
  45. BEGIN_NCBI_SCOPE
  46. BEGIN_SCOPE(objects)
  47. //////////////////////////////////////////////////////////////////
  48. //
  49. // SLDS_FileDB related methods.
  50. //
  51. class NCBI_LDS_EXPORT CLDS_File
  52. {
  53. public:
  54.     CLDS_File(SLDS_TablesCollection& lds_tables)
  55.     : m_db(lds_tables),
  56.       m_FileDB(lds_tables.file_db),
  57.       m_MaxRecId(0)
  58.     {}
  59.     /// Scan the given directory, calculate timestamp and control sums for 
  60.     /// every file, update "File" database table.
  61.     /// Method returns set of row ids deleted from files, and set of row ids
  62.     /// to be updated.
  63.     void SyncWithDir(const string& path, 
  64.                      CLDS_Set* deleted, 
  65.                      CLDS_Set* updated,
  66.                      bool recurse_subdirs,
  67.                      bool compute_check_sum);
  68.     // Delete all records with ids belonging to record_set
  69.     void Delete(const CLDS_Set& record_set);
  70.     void UpdateEntry(int    file_id, 
  71.                      const  string& file_name,
  72.                      Uint4  crc,
  73.                      int    timestamp,
  74.                      size_t file_size,
  75.                      bool   compute_check_sum);
  76.     // Return max record id. 0 if no record found.
  77.     int FindMaxRecId();
  78. private:
  79.     void x_SyncWithDir(const string& path, 
  80.                        CLDS_Set*    deleted, 
  81.                        CLDS_Set*    updated,
  82.                        set<string>* scanned_files,
  83.                        bool recurse_subdirs,
  84.                        bool compute_check_sum);
  85. private:
  86.     CLDS_File(const CLDS_File&);
  87.     CLDS_File& operator=(const CLDS_File&);
  88. private:
  89.     SLDS_TablesCollection& m_db;
  90.     SLDS_FileDB&           m_FileDB;
  91.     int                    m_MaxRecId;
  92. };
  93. END_SCOPE(objects)
  94. END_NCBI_SCOPE
  95. /*
  96.  * ===========================================================================
  97.  * $Log: lds_files.hpp,v $
  98.  * Revision 1000.0  2003/10/29 21:01:24  gouriano
  99.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.7
  100.  *
  101.  * Revision 1.7  2003/10/06 20:15:47  kuznets
  102.  * Added support for sub directories and option to disable CRC32 for files
  103.  *
  104.  * Revision 1.6  2003/06/16 14:54:08  kuznets
  105.  * lds splitted into "lds" and "lds_admin"
  106.  *
  107.  * Revision 1.5  2003/06/03 19:14:02  kuznets
  108.  * Added lds dll export/import specifications
  109.  *
  110.  * Revision 1.4  2003/06/03 14:07:46  kuznets
  111.  * Include paths changed to reflect the new directory structure
  112.  *
  113.  * Revision 1.3  2003/05/23 20:33:33  kuznets
  114.  * Bulk changes in lds library, code reorganizations, implemented top level
  115.  * objects read, metainformation persistance implemented for top level objects...
  116.  *
  117.  * Revision 1.2  2003/05/22 18:57:17  kuznets
  118.  * Work in progress
  119.  *
  120.  * Revision 1.1  2003/05/22 13:24:45  kuznets
  121.  * Initial revision
  122.  *
  123.  *
  124.  * ===========================================================================
  125.  */
  126. #endif