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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: driver_mgr.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 20:18:41  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.11
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef DBAPI_DRIVER___DRIVER_MGR__HPP
  10. #define DBAPI_DRIVER___DRIVER_MGR__HPP
  11. /* $Id: driver_mgr.hpp,v 1000.0 2003/10/29 20:18:41 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:  Vladimir Soussov
  37.  *
  38.  * File Description:  Driver manager
  39.  *
  40.  */
  41. #include <corelib/ncbimtx.hpp>
  42. #include <dbapi/driver/public.hpp>
  43. /** @addtogroup DbDrvMgr
  44.  *
  45.  * @{
  46.  */
  47. BEGIN_NCBI_SCOPE
  48. class NCBI_DBAPIDRIVER_EXPORT C_DriverMgr : public I_DriverMgr
  49. {
  50. public:
  51.     C_DriverMgr(unsigned int nof_drivers = 16);
  52.     FDBAPI_CreateContext GetDriver(const string& driver_name, 
  53.                                    string*       err_msg = 0);
  54.     virtual void RegisterDriver(const string&        driver_name,
  55.                                 FDBAPI_CreateContext driver_ctx_func);
  56.     I_DriverContext* GetDriverContext(const string&       driver_name, 
  57.                                       string*             err_msg = 0,
  58.                                       map<string,string>* attr    = 0);
  59.     virtual ~C_DriverMgr();
  60. };
  61. END_NCBI_SCOPE
  62. /* @} */
  63. /*
  64.  * ===========================================================================
  65.  * $Log: driver_mgr.hpp,v $
  66.  * Revision 1000.0  2003/10/29 20:18:41  gouriano
  67.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.11
  68.  *
  69.  * Revision 1.11  2003/04/11 17:46:01  siyan
  70.  * Added doxygen support
  71.  *
  72.  * Revision 1.10  2002/12/26 19:29:12  dicuccio
  73.  * Added Win32 export specifier for base DBAPI library
  74.  *
  75.  * Revision 1.9  2002/04/23 16:45:28  soussov
  76.  * GetDriverContext added
  77.  *
  78.  * Revision 1.8  2002/04/12 18:44:34  soussov
  79.  * makes driver_mgr working properly in mt environment
  80.  *
  81.  * Revision 1.7  2002/04/09 22:18:13  vakatov
  82.  * Moved code from the header
  83.  *
  84.  * Revision 1.6  2002/04/09 20:05:57  vakatov
  85.  * Identation
  86.  *
  87.  * Revision 1.5  2002/04/04 23:48:44  soussov
  88.  * return of error message from dlopen added
  89.  *
  90.  * Revision 1.4  2002/01/23 21:14:06  soussov
  91.  * replaces map with array
  92.  *
  93.  * Revision 1.3  2002/01/20 07:26:57  vakatov
  94.  * Fool-proofed to compile func_ptr/void_ptr type casts on all compilers.
  95.  * Added virtual destructor.
  96.  * Temporarily get rid of the MT-safety features -- they need to be
  97.  * implemented here more carefully (in the nearest future).
  98.  *
  99.  * Revision 1.2  2002/01/17 23:18:58  soussov
  100.  * makes gcc happy
  101.  *
  102.  * Revision 1.1  2002/01/17 22:05:56  soussov
  103.  * adds driver manager
  104.  *
  105.  * ===========================================================================
  106.  */
  107. #endif  /* DBAPI_DRIVER___DRIVER_MGR__HPP */