⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lds_admin.hpp

📁 ncbi源码
💻 HPP
字号:
/* * =========================================================================== * PRODUCTION $Log: lds_admin.hpp,v $ * PRODUCTION Revision 1000.0  2003/10/29 21:01:14  gouriano * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.6 * PRODUCTION * =========================================================================== */#ifndef LDS_ADMIN_HPP__#define LDS_ADMIN_HPP__/*  $Id: lds_admin.hpp,v 1000.0 2003/10/29 21:01:14 gouriano Exp $ * =========================================================================== * *                            PUBLIC DOMAIN NOTICE *               National Center for Biotechnology Information * *  This software/database is a "United States Government Work" under the *  terms of the United States Copyright Act.  It was written as part of *  the author's official duties as a United States Government employee and *  thus cannot be copyrighted.  This software/database is freely available *  to the public for use. The National Library of Medicine and the U.S. *  Government have not placed any restriction on its use or reproduction. * *  Although all reasonable efforts have been taken to ensure the accuracy *  and reliability of the software and data, the NLM and the U.S. *  Government do not and cannot warrant the performance or results that *  may be obtained by using this software or data. The NLM and the U.S. *  Government disclaim all warranties, express or implied, including *  warranties of performance, merchantability or fitness for any particular *  purpose. * *  Please cite the author in any work or product based on this material. * * =========================================================================== * * Author: Anatoliy Kuznetsov * * File Description: LDS data management(admin) include file. * */#include <objtools/lds/lds.hpp>#include <objtools/lds/admin/lds_object.hpp>BEGIN_NCBI_SCOPEBEGIN_SCOPE(objects)////////////////////////////////////////////////////////////////////// LDS database maintanance(modification).//class NCBI_LDS_EXPORT CLDS_Management{public:    CLDS_Management(CLDS_Database& db);    /// Create the database. If the LDS database already exists all data will    /// be cleaned up.    void Create();    /// Recursive scanning of directories in LDS database    enum ERecurse {        eDontRecurse,        eRecurseSubDirs    };    /// CRC32 calculation mode    enum EComputeControlSum {        eNoControlSum,        eComputeControlSum    };    /// Syncronize LDS database content with directory.     /// The main workhorse function.    /// Function will do format guessing, files parsing, etc    /// Current implementation can work with only one directory.    /// If file is removed all relevant objects are cleaned up too.    /// @param dir_name    ///   directory to syncronize with    /// @param recurse    ///   subdirectories recursion mode    /// @param control_sum    ///   control sum computation    void SyncWithDir(const string&      dir_name,                      ERecurse           recurse = eRecurseSubDirs,                     EComputeControlSum control_sum = eComputeControlSum);    // Function tries to open the database, if the database does not exist    // creates it and loads all the data.    // Return pointer on new CLDS_Database object     // (caller is responsible for the destruction).    // is_created parameter receives TRUE if the database was created by     // the method.    static CLDS_Database*         OpenCreateDB(const string& dir_name,                     const string& db_name,                     bool*         is_created,                     ERecurse recurse = eRecurseSubDirs,                     EComputeControlSum control_sum = eComputeControlSum);private:    CLDS_Database&   m_lds_db; // LDS database object};END_SCOPE(objects)END_NCBI_SCOPE#endif/* * =========================================================================== * $Log: lds_admin.hpp,v $ * Revision 1000.0  2003/10/29 21:01:14  gouriano * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.6 * * Revision 1.6  2003/10/09 18:11:27  kuznets * Create() reimplemented. * * Revision 1.5  2003/10/06 20:15:47  kuznets * Added support for sub directories and option to disable CRC32 for files * * Revision 1.4  2003/07/03 18:04:25  kuznets * + newline at the end of the file to make GCC happy * * Revision 1.3  2003/06/25 18:27:47  kuznets * +OpenCreateDB() class method * * Revision 1.2  2003/06/16 16:24:16  kuznets * Fixed #include paths (lds <-> lds_admin separation) * * Revision 1.1  2003/06/16 14:54:08  kuznets * lds splitted into "lds" and "lds_admin" * * */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -