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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: checksum.inl,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:29:18  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #if defined(CHECKSUM__HPP)  &&  !defined(CHECKSUM__INL)
  10. #define CHECKSUM__INL
  11. /*  $Id: checksum.inl,v 1000.0 2003/10/29 15:29:18 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. *   CRC32 calculation inline methods
  40. */
  41. inline
  42. CChecksum::EMethod CChecksum::GetMethod(void) const
  43. {
  44.     return m_Method;
  45. }
  46. inline
  47. bool CChecksum::Valid(void) const
  48. {
  49.     return GetMethod() != eNone;
  50. }
  51. inline
  52. CNcbiOstream& operator<<(CNcbiOstream& out, const CChecksum& checksum)
  53. {
  54.     return checksum.WriteChecksum(out);
  55. }
  56. inline
  57. void CChecksum::AddLine(const char* line, size_t length)
  58. {
  59.     AddChars(line, length);
  60.     NextLine();
  61. }
  62. inline
  63. void CChecksum::AddLine(const string& line)
  64. {
  65.     AddLine(line.data(), line.size());
  66. }
  67. inline
  68. bool CChecksum::ValidChecksumLine(const char* line, size_t length) const
  69. {
  70.     return length > kMinimumChecksumLength &&
  71.         line[0] == '/' && line[1] == '*' && // first four letter of checksum
  72.         line[2] == ' ' && line[3] == 'O' && // see sx_Start in checksum.cpp
  73.         ValidChecksumLineLong(line, length); // complete check
  74. }
  75. inline
  76. bool CChecksum::ValidChecksumLine(const string& line) const
  77. {
  78.     return ValidChecksumLine(line.data(), line.size());
  79. }
  80. inline Uint4 CChecksum::GetChecksum() const
  81. {
  82.     _ASSERT(GetMethod() == eCRC32);
  83.     return m_Checksum.m_CRC32;
  84. }
  85. inline void CChecksum::GetMD5Digest(unsigned char digest[16]) const
  86. {
  87.     _ASSERT(GetMethod() == eMD5);
  88.     m_Checksum.m_MD5->Finalize(digest);
  89. }
  90. /*
  91. * ===========================================================================
  92. *
  93. * $Log: checksum.inl,v $
  94. * Revision 1000.0  2003/10/29 15:29:18  gouriano
  95. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.5
  96. *
  97. * Revision 1.5  2003/07/29 22:11:42  vakatov
  98. * Typo fixed (extra return op)
  99. *
  100. * Revision 1.4  2003/07/29 21:29:26  ucko
  101. * Add MD5 support (cribbed from the C Toolkit)
  102. *
  103. * Revision 1.3  2003/04/15 16:12:09  kuznets
  104. * GetChecksum() method implemented
  105. *
  106. * Revision 1.2  2001/01/05 20:08:52  vasilche
  107. * Added util directory for various algorithms and utility classes.
  108. *
  109. * Revision 1.1  2000/11/22 16:26:22  vasilche
  110. * Added generation/checking of checksum to user files.
  111. *
  112. * ===========================================================================
  113. */
  114. #endif /* def CHECKSUM__HPP  &&  ndef CHECKSUM__INL */