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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ascii85.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:39:50  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: ascii85.cpp,v 1000.1 2004/06/01 19:39:50 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author: Peter Meric
  35.  *
  36.  * File Description:
  37.  *    ASCII base-85 conversion functions
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <util/ascii85.hpp>
  42. BEGIN_NCBI_SCOPE
  43. size_t CAscii85::s_Encode(const char* src_buf, size_t src_len,
  44.                           char* dst_buf, size_t dst_len
  45.                          )
  46. {
  47.     if (!src_buf || !src_len) {
  48.         return 0;
  49.     }
  50.     if (!dst_buf || !dst_len) {
  51.         return 0;
  52.     }
  53.     char* dst_ptr = dst_buf;
  54.     union UVal
  55.     {
  56.         long num;
  57.         char chars[4];
  58.     };
  59.     for (const char* src_ptr = src_buf, *src_end = src_buf + src_len;
  60.          dst_len != 0 && src_ptr < src_end;
  61.          src_len -= 4
  62.         )
  63.     {
  64.         const unsigned int l = src_len > 4 ? 4 : src_len;
  65.         const unsigned int grplen = l + 1;
  66.         unsigned long val = 0;
  67.         for (int shft = 8 * (l - 1); shft >= 0; shft -= 8, ++src_ptr) {
  68.             val |= ((unsigned char) *src_ptr) << shft;
  69.         }
  70.         // special case - if values are all zero, output 'z'
  71.         if (val == 0 && grplen == 5) {
  72.             *dst_ptr++ = 'z';
  73.             --dst_len;
  74.             continue;
  75.         }
  76.         char out[5] = { 0 };
  77.         for (int i = 4; i >= 0; --i) {
  78.             const unsigned long quot = val / 85;
  79.             const unsigned long rem = val - quot * 85; // val % 85
  80.             val = quot;
  81.             out[i] = rem + '!';
  82.         }
  83.         if (dst_len < grplen) {
  84.             _TRACE(Info << "insufficient buffer space providedn");
  85.             break;
  86.         }
  87.         memcpy(dst_ptr, out, grplen);
  88.         dst_ptr += grplen;
  89.         dst_len -= grplen;
  90.     }
  91.     if (dst_len < 2) {
  92.         _TRACE(Info << "insufficient buffer space providedn");
  93.     }
  94.     else {
  95.         *dst_ptr++ = '~';
  96.         *dst_ptr++ = '>';
  97.     }
  98.     return dst_ptr - dst_buf;
  99. }
  100. END_NCBI_SCOPE
  101. /*
  102.  * ===========================================================================
  103.  * $Log: ascii85.cpp,v $
  104.  * Revision 1000.1  2004/06/01 19:39:50  gouriano
  105.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  106.  *
  107.  * Revision 1.2  2004/05/17 21:06:02  gorelenk
  108.  * Added include of PCH ncbi_pch.hpp
  109.  *
  110.  * Revision 1.1  2003/07/16 20:05:58  meric
  111.  * Initial version
  112.  *
  113.  * ===========================================================================
  114.  */