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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: id2_compress.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 17:33:44  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef NCBI_OBJMGR_SPLIT_ID2_COMPRESS__HPP
  10. #define NCBI_OBJMGR_SPLIT_ID2_COMPRESS__HPP
  11. /*  $Id: id2_compress.hpp,v 1000.0 2004/04/12 17:33:44 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. *   Application for splitting blobs withing ID1 cache
  40. *
  41. * ===========================================================================
  42. */
  43. #include <corelib/ncbistd.hpp>
  44. #include <vector>
  45. #include <list>
  46. BEGIN_NCBI_SCOPE
  47. BEGIN_SCOPE(objects)
  48. struct SSplitterParams;
  49. class CId2Compressor
  50. {
  51. public:
  52.     static void Compress(const SSplitterParams& params,
  53.                          list<vector<char>*>& dst,
  54.                          const char* data, size_t size);
  55.     static void Compress(const SSplitterParams& params,
  56.                          vector<char>& dst,
  57.                          const char* data, size_t size);
  58.     static void CompressHeader(const SSplitterParams& params,
  59.                                vector<char>& dst,
  60.                                size_t size);
  61.     static void CompressFooter(const SSplitterParams& params,
  62.                                vector<char>& dst,
  63.                                size_t size);
  64.     static void CompressChunk(const SSplitterParams& params,
  65.                               vector<char>& dst,
  66.                               const char* data, size_t size);
  67.     static void sx_Append(vector<char>& dst,
  68.                           const char* data, size_t size);
  69. };
  70. END_SCOPE(objects)
  71. END_NCBI_SCOPE
  72. /*
  73. * ---------------------------------------------------------------------------
  74. * $Log: id2_compress.hpp,v $
  75. * Revision 1000.0  2004/04/12 17:33:44  gouriano
  76. * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.1
  77. *
  78. * Revision 1.1  2003/12/30 16:06:14  vasilche
  79. * Compression methods moved to separate header: id2_compress.hpp.
  80. *
  81. *
  82. * ===========================================================================
  83. */
  84. #endif//NCBI_OBJMGR_SPLIT_ID2_COMPRESS__HPP