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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: lightstr.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:29:57  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef LIGHTSTR__HPP
  10. #define LIGHTSTR__HPP
  11. /*  $Id: lightstr.hpp,v 1000.0 2003/10/29 15:29:57 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: Eugene Vasilchenko
  37. *
  38. * File Description:
  39. *   CLightString - class with "light" strings: char pointer + string length
  40. *
  41. * ---------------------------------------------------------------------------
  42. * $Log: lightstr.hpp,v $
  43. * Revision 1000.0  2003/10/29 15:29:57  gouriano
  44. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.5
  45. *
  46. * Revision 1.5  2003/04/17 17:50:18  siyan
  47. * Added doxygen support
  48. *
  49. * Revision 1.4  2001/01/05 20:08:52  vasilche
  50. * Added util directory for various algorithms and utility classes.
  51. *
  52. * Revision 1.3  2000/07/03 18:42:34  vasilche
  53. * Added interface to typeinfo via CObjectInfo and CConstObjectInfo.
  54. * Reduced header dependency.
  55. *
  56. * Revision 1.2  2000/06/01 20:43:53  vasilche
  57. * cstring header is missing on IRIX.
  58. *
  59. * Revision 1.1  2000/06/01 19:06:56  vasilche
  60. * Added parsing of XML data.
  61. *
  62. * ===========================================================================
  63. */
  64. #include <corelib/ncbistd.hpp>
  65. #include <string.h>
  66. /** @addtogroup LightStr
  67.  *
  68.  * @{
  69.  */
  70. BEGIN_NCBI_SCOPE
  71. class CLightString
  72. {
  73. public:
  74.     CLightString(void)
  75.         : m_String(""), m_Length(0)
  76.         {
  77.         }
  78.     CLightString(const char* str)
  79.         : m_String(str), m_Length(strlen(str))
  80.         {
  81.         }
  82.     CLightString(const char* str, size_t length)
  83.         : m_String(str), m_Length(length)
  84.         {
  85.         }
  86.     CLightString(const string& str)
  87.         : m_String(str.data()), m_Length(str.size())
  88.         {
  89.         }
  90.     const char* GetString(void) const
  91.         {
  92.             _ASSERT(m_String);
  93.             return m_String;
  94.         }
  95.     size_t GetLength(void) const
  96.         {
  97.             return m_Length;
  98.         }
  99.     bool Empty(void) const
  100.         {
  101.             return m_Length == 0;
  102.         }
  103.     operator string(void) const
  104.         {
  105.             return string(GetString(), GetLength());
  106.         }
  107.     bool operator<(const CLightString& cmp) const
  108.         {
  109.             size_t len = GetLength();
  110.             size_t cmpLen = cmp.GetLength();
  111.             if ( len == cmpLen )
  112.                 return memcmp(GetString(), cmp.GetString(), len) < 0;
  113.             else
  114.                 return len < cmpLen;
  115.         }
  116.     bool EqualTo(const CLightString& cmp) const
  117.         {
  118.             size_t l = cmp.GetLength();
  119.             return GetLength() == l &&
  120.                 memcmp(GetString(), cmp.GetString(), l) == 0;
  121.         }
  122.     bool EqualTo(const string& cmp) const
  123.         {
  124.             size_t l = cmp.size();
  125.             return GetLength() == l &&
  126.                 memcmp(GetString(), cmp.data(), l) == 0;
  127.         }
  128.     bool EqualTo(const char* s, size_t l) const
  129.         {
  130.             return GetLength() == l &&
  131.                 memcmp(GetString(), s, l) == 0;
  132.         }
  133.     bool operator==(const CLightString& cmp) const
  134.         {
  135.             return EqualTo(cmp);
  136.         }
  137.     bool operator==(const string& cmp) const
  138.         {
  139.             return EqualTo(cmp);
  140.         }
  141.     bool operator==(const char* cmp) const
  142.         {
  143.             return EqualTo(cmp, strlen(cmp));
  144.         }
  145.     bool operator!=(const CLightString& cmp) const
  146.         {
  147.             return !EqualTo(cmp);
  148.         }
  149.     bool operator!=(const string& cmp) const
  150.         {
  151.             return !EqualTo(cmp);
  152.         }
  153.     bool operator!=(const char* cmp) const
  154.         {
  155.             return !EqualTo(cmp, strlen(cmp));
  156.         }
  157. private:
  158.     const char* m_String;
  159.     size_t m_Length;
  160. };
  161. /* @} */
  162. //#include <util/lightstr.inl>
  163. END_NCBI_SCOPE
  164. #endif  /* LIGHTSTR__HPP */