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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: numeric_convert.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:19:16  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: numeric_convert.cpp,v 1000.2 2004/06/01 19:19:16 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:  Vladimir Soussov
  35.  *
  36.  * File Description: Numeric conversions
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <corelib/ncbistd.hpp>
  41. #include <string>
  42. #include <stdio.h>
  43. BEGIN_NCBI_SCOPE
  44. #define MAXPRECISION  50
  45. static int s_NumericBytesPerPrec[] =
  46. {2, 2, 3, 3, 4, 4, 4, 5, 5, 6, 6, 6, 7, 7, 8, 8, 9, 9, 9,
  47.  10, 10, 11, 11, 11, 12, 12, 13, 13, 14, 14, 14, 15, 15,
  48.  16, 16, 16, 17, 17, 18, 18, 19, 19, 19, 20, 20, 21, 21, 21,
  49.  22, 22, 23, 23, 24, 24, 24, 25, 25, 26, 26, 26};
  50. NCBI_DBAPIDRIVER_EXPORT
  51. unsigned char*  longlong_to_numeric (Int8 l_num, unsigned int prec, unsigned char* cs_num)
  52. {
  53.     bool needs_del= false;
  54.     if(prec == 0) return 0;
  55.     if (cs_num == 0) {
  56.         cs_num= new unsigned char[MAXPRECISION];
  57.         needs_del= true;
  58.     }
  59.     memset (cs_num, 0, prec);
  60.     int BYTE_NUM = s_NumericBytesPerPrec[prec-1];
  61.     unsigned char* number = &cs_num[BYTE_NUM - 1];
  62.     if (l_num != 0) {
  63.         if (l_num < 0) {
  64.             l_num *= (-1);
  65.             cs_num[0] = 0x1;
  66.         }
  67.         while (l_num != 0 && number >= cs_num) {
  68.             Int8 rem = l_num%256;
  69.             *number = (unsigned char)rem;
  70.             l_num = l_num/256;
  71.             number--;
  72.             if (number <= cs_num) {
  73.                 if(needs_del) delete cs_num;
  74.                 return 0;
  75.             }
  76.         }
  77.     }
  78.     return cs_num;
  79. }
  80. NCBI_DBAPIDRIVER_EXPORT
  81. Int8 numeric_to_longlong(unsigned int precision, unsigned char* cs_num)
  82. {
  83.     if(precision == 0) return 0;
  84.     int BYTE_NUM = s_NumericBytesPerPrec[precision - 1];
  85.     Int8 my_long = 0;
  86.     if (BYTE_NUM <= 9) {
  87.         for (int i = 1; i < BYTE_NUM; i++) {
  88.             my_long = my_long*256 + cs_num[i];
  89.         }
  90.         if (cs_num[0] != 0) {
  91.             my_long*= -1;
  92.         }
  93.     } else {
  94.         return 0;
  95.     }
  96.     return my_long;
  97. }
  98. NCBI_DBAPIDRIVER_EXPORT
  99. void swap_numeric_endian(unsigned int precision, unsigned char* num)
  100. {
  101.     if(precision == 0) return;
  102.     int BYTE_NUM= s_NumericBytesPerPrec[precision - 1] - 1;
  103.     unsigned char c;
  104.     int i, j;
  105.     for(i= 0, j= BYTE_NUM-1; i < j; i++, j--) {
  106.         c= num[i];
  107.         num[i]= num[j];
  108.         num[j]= c;
  109.     }
  110. }
  111. END_NCBI_SCOPE
  112. /*
  113.  * ===========================================================================
  114.  * $Log: numeric_convert.cpp,v $
  115.  * Revision 1000.2  2004/06/01 19:19:16  gouriano
  116.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  117.  *
  118.  * Revision 1.10  2004/05/17 21:11:38  gorelenk
  119.  * Added include of PCH ncbi_pch.hpp
  120.  *
  121.  * Revision 1.9  2004/03/15 20:44:52  gorelenk
  122.  * Added NCBI_DBAPIDRIVER_EXPORT prefix for functions definitions.
  123.  *
  124.  * Revision 1.8  2003/03/20 20:08:06  soussov
  125.  * fixed typo in longlong_to_numeric
  126.  *
  127.  * Revision 1.7  2003/03/20 19:54:09  vakatov
  128.  * Indented. Added CVS Log.
  129.  *
  130.  * ===========================================================================
  131.  */