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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: rsmeta_impl.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 20:26:12  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef _RSMETA_IMPL_HPP_
  10. #define _RSMETA_IMPL_HPP_
  11. /* $Id: rsmeta_impl.hpp,v 1000.0 2003/10/29 20:26:12 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. * File Name:  $Id: rsmeta_impl.hpp,v 1000.0 2003/10/29 20:26:12 gouriano Exp $
  37. *
  38. * Author:  Michael Kholodov
  39. *   
  40. * File Description:  Resultset metadata implementation
  41. *
  42. *
  43. * $Log: rsmeta_impl.hpp,v $
  44. * Revision 1000.0  2003/10/29 20:26:12  gouriano
  45. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.7
  46. *
  47. * Revision 1.7  2002/11/27 16:56:20  ucko
  48. * Use [...] instead of .at(...) for G++ 2.x compatibility.
  49. *
  50. * Revision 1.6  2002/11/25 15:32:06  kholodov
  51. * Modified: using STL vector istead of CDynamicArray.
  52. *
  53. * Revision 1.5  2002/09/18 18:49:27  kholodov
  54. * Modified: class declaration and Action method to reflect
  55. * direct inheritance of CActiveObject from IEventListener
  56. *
  57. * Revision 1.4  2002/09/09 20:48:57  kholodov
  58. * Added: Additional trace output about object life cycle
  59. * Added: CStatement::Failed() method to check command status
  60. *
  61. * Revision 1.3  2002/06/11 18:21:52  kholodov
  62. * Fixed: column numbers are one-based for metadata
  63. *
  64. * Revision 1.2  2002/02/05 17:24:02  kholodov
  65. * Put into NCBI scope
  66. *
  67. * Revision 1.1  2002/01/30 14:51:23  kholodov
  68. * User DBAPI implementation, first commit
  69. *
  70. *
  71. *
  72. */
  73. #include <dbapi/dbapi.hpp>
  74. #include "dbexception.hpp"
  75. #include "active_obj.hpp"
  76. #include <vector>
  77. BEGIN_NCBI_SCOPE
  78. class CDB_Result;
  79. class CResultSetMetaData : public CActiveObject, 
  80.    public IResultSetMetaData
  81. {
  82. public:
  83.   CResultSetMetaData(CDB_Result *rs);
  84.   virtual ~CResultSetMetaData();
  85.   
  86.   virtual unsigned int GetTotalColumns() const;
  87.   virtual EDB_Type GetType(unsigned int idx) const;
  88.   virtual int GetMaxSize(unsigned int idx) const;
  89.   virtual string GetName(unsigned int idx) const;
  90.   // Interface IEventListener implementation
  91.   virtual void Action(const CDbapiEvent& e);
  92. private:
  93.   struct SColMetaData 
  94.   {
  95.     SColMetaData(const string& name,
  96.  EDB_Type type,
  97.  int maxSize)
  98.       : m_name(name), m_type(type), m_maxSize(maxSize) {}
  99.     string m_name;
  100.     EDB_Type m_type;
  101.     int m_maxSize;
  102.   };
  103.   
  104.   unsigned int m_totalColumns;
  105.   vector<SColMetaData> m_colInfo;
  106. };
  107. //====================================================================
  108. inline
  109. unsigned int CResultSetMetaData::GetTotalColumns() const 
  110. {
  111.   return m_totalColumns;
  112. }
  113. inline
  114. EDB_Type CResultSetMetaData::GetType(unsigned int idx) const 
  115. {
  116.   return m_colInfo[idx-1].m_type;
  117. }
  118. inline
  119. int CResultSetMetaData::GetMaxSize(unsigned int idx) const 
  120. {
  121.   return m_colInfo[idx-1].m_maxSize;
  122. }
  123. inline
  124. string CResultSetMetaData::GetName(unsigned int idx) const 
  125. {
  126.   return m_colInfo[idx-1].m_name;
  127. }
  128. //====================================================================
  129. END_NCBI_SCOPE
  130. #endif // _RSMETA_IMPL_HPP_