my_compress.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* Written by Sinisa Milivojevic <sinisa@mysql.com> */
  14. #include <my_global.h>
  15. #ifdef HAVE_COMPRESS
  16. #include <my_sys.h>
  17. #ifndef SCO
  18. #include <m_string.h>
  19. #endif
  20. #include <zlib.h>
  21. /*
  22. ** This replaces the packet with a compressed packet
  23. ** Returns 1 on error
  24. ** *complen is 0 if the packet wasn't compressed
  25. */
  26. my_bool my_compress(byte *packet, ulong *len, ulong *complen)
  27. {
  28.   DBUG_ENTER("my_compress");
  29.   if (*len < MIN_COMPRESS_LENGTH)
  30.   {
  31.     *complen=0;
  32.     DBUG_PRINT("note",("Packet too short: Not compressed"));
  33.   }
  34.   else
  35.   {
  36.     byte *compbuf=my_compress_alloc(packet,len,complen);
  37.     if (!compbuf)
  38.       DBUG_RETURN(*complen ? 0 : 1);
  39.     memcpy(packet,compbuf,*len);
  40.     my_free(compbuf,MYF(MY_WME));   }
  41.   DBUG_RETURN(0);
  42. }
  43. byte *my_compress_alloc(const byte *packet, ulong *len, ulong *complen)
  44. {
  45.   byte *compbuf;
  46.   *complen=  *len * 120 / 100 + 12;
  47.   if (!(compbuf= (byte *) my_malloc(*complen,MYF(MY_WME))))
  48.     return 0; /* Not enough memory */
  49.   if (compress((Bytef*) compbuf,(ulong *) complen, (Bytef*) packet,
  50.        (uLong) *len ) != Z_OK)
  51.   {
  52.     my_free(compbuf,MYF(MY_WME));
  53.     return 0;
  54.   }
  55.   if (*complen >= *len)
  56.   {
  57.     *complen= 0;
  58.     my_free(compbuf, MYF(MY_WME));
  59.     DBUG_PRINT("note",("Packet got longer on compression; Not compressed"));
  60.     return 0;
  61.   }
  62.   swap_variables(ulong, *len, *complen);       /* *len is now packet length */
  63.   return compbuf;
  64. }
  65. my_bool my_uncompress (byte *packet, ulong *len, ulong *complen)
  66. {
  67.   DBUG_ENTER("my_uncompress");
  68.   if (*complen) /* If compressed */
  69.   {
  70.     byte *compbuf= (byte *) my_malloc(*complen,MYF(MY_WME));
  71.     int error;
  72.     if (!compbuf)
  73.       DBUG_RETURN(1); /* Not enough memory */
  74.     if ((error=uncompress((Bytef*) compbuf, complen, (Bytef*) packet, *len))
  75. != Z_OK)
  76.     { /* Probably wrong packet */
  77.       DBUG_PRINT("error",("Can't uncompress packet, error: %d",error));
  78.       my_free(compbuf, MYF(MY_WME));
  79.       DBUG_RETURN(1);
  80.     }
  81.     *len= *complen;
  82.     memcpy(packet, compbuf, *len);
  83.     my_free(compbuf, MYF(MY_WME));
  84.   }
  85.   DBUG_RETURN(0);
  86. }
  87. #endif /* HAVE_COMPRESS */