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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: driver_mgr.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:17:54  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef DBAPI___DRIVER_MGR__HPP
  10. #define DBAPI___DRIVER_MGR__HPP
  11. /* $Id: driver_mgr.hpp,v 1000.3 2004/06/01 19:17:54 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:  Michael Kholodov, Denis Vakatov
  37.  *   
  38.  * File Description:  Driver Manager definition
  39.  *
  40.  */
  41. #include <corelib/ncbistd.hpp>
  42. #include <corelib/ncbireg.hpp>
  43. #include <dbapi/driver/driver_mgr.hpp>
  44. #include <map>
  45. /** @addtogroup DbDrvMgr
  46.  *
  47.  * @{
  48.  */
  49. BEGIN_NCBI_SCOPE
  50. /////////////////////////////////////////////////////////////////////////////
  51. //
  52. //  CDriverManager::
  53. //
  54. //  Static class for registering drivers and getting the datasource
  55. //
  56. class NCBI_DBAPI_EXPORT CDriverManager : public C_DriverMgr
  57. {
  58. public:
  59.     // Get a single instance of CDriverManager
  60.     static CDriverManager& GetInstance();
  61.     // Remove instance of CDriverManager
  62.     static void RemoveInstance();
  63.     // Create datasource object
  64.     class IDataSource* CreateDs(const string& driver_name,
  65. map<string, string> *attr = 0);
  66.     class IDataSource* CreateDsFrom(const string& drivers,
  67.     CNcbiRegistry* reg = 0);
  68.     // Destroy datasource object
  69.     void DestroyDs(const string& driver_name);
  70. protected:
  71.     // Prohibit explicit construction and destruction
  72.     CDriverManager();
  73.     virtual ~CDriverManager();
  74.     // Put the new data source into the internal list with
  75.     // corresponding driver name, return previous, if already exists
  76.     class IDataSource* RegisterDs(const string& driver_name,
  77.   class I_DriverContext* ctx);
  78.     map<string, class IDataSource*> m_ds_list;
  79. private:
  80.     static CDriverManager* sm_Instance;
  81.     DECLARE_CLASS_STATIC_MUTEX(sm_Mutex);
  82. };
  83. END_NCBI_SCOPE
  84. /* @} */
  85. /*
  86.  * ===========================================================================
  87.  * $Log: driver_mgr.hpp,v $
  88.  * Revision 1000.3  2004/06/01 19:17:54  gouriano
  89.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  90.  *
  91.  * Revision 1.7  2004/04/22 11:28:41  ivanov
  92.  * Use pointer to driver manager instance instead auto_ptr
  93.  *
  94.  * Revision 1.6  2003/12/17 14:57:00  ivanov
  95.  * Changed type of the Driver Manager instance to auto_ptr.
  96.  * Added RemoveInstance() method.
  97.  *
  98.  * Revision 1.5  2003/12/15 20:05:41  ivanov
  99.  * Added export specifier for building DLLs in MS Windows.
  100.  *
  101.  * Revision 1.4  2003/04/11 17:45:57  siyan
  102.  * Added doxygen support
  103.  *
  104.  * Revision 1.3  2003/02/10 17:21:09  kholodov
  105.  * Added: DestroyDs() method
  106.  *
  107.  * Revision 1.2  2002/04/29 19:13:14  kholodov
  108.  * Modified: using C_DriverMgr as parent class of CDriverManager
  109.  *
  110.  * Revision 1.1  2002/01/30 14:51:24  kholodov
  111.  * User DBAPI implementation, first commit
  112.  *
  113.  * ===========================================================================
  114.  */
  115. #endif  /* DBAPI___DBAPI__HPP */