Files
harbour-core/src/rtl/hbzlibgz.c
Viktor Szakats 58faf91453 2016-01-14 19:17 UTC+0100 Viktor Szakats (vszakats users.noreply.github.com)
* *
    % remove brandings and homepage [1] from copyright header. Pass 1 - using script.
      [1] nobody has access to it anymore AFAIK - and it's also just
          a redirect since long
    ! update url in copyright header
    ; this should make the diff between 3.4 and 3.2 easier to manage
2016-01-14 19:18:17 +01:00

565 lines
12 KiB
C

/*
* GZIP functions wrapper
*
* Copyright 2007 Przemyslaw Czerpak <druzus / at / priv.onet.pl>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING.txt. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site https://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
#include "hbapi.h"
#include "hbapiitm.h"
#include "hbapierr.h"
#include "hbapistr.h"
#include "hbvm.h"
#include <zlib.h>
#if !defined( HB_NO_GZLIB ) && \
defined( HB_OS_WIN_CE ) && defined( _MSC_VER ) && ZLIB_VERNUM >= 0x1240
#define HB_NO_GZLIB
#endif
#ifndef HB_NO_GZLIB
/* GZIP stream destructor */
static HB_GARBAGE_FUNC( hb_gz_Destructor )
{
gzFile * gzHolder = ( gzFile * ) Cargo;
if( *gzHolder )
{
hb_vmUnlock();
gzclose( *gzHolder );
hb_vmLock();
*gzHolder = NULL;
}
}
static const HB_GC_FUNCS s_gcGZFuncs =
{
hb_gz_Destructor,
hb_gcDummyMark
};
static gzFile hb_gzParam( int iParam )
{
gzFile * gzHolder = ( gzFile * ) hb_parptrGC( &s_gcGZFuncs, iParam );
if( gzHolder && *gzHolder )
return *gzHolder;
hb_errRT_BASE_SubstR( EG_ARG, 3012, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
return NULL;
}
#endif
/*
* hb_gzOpen( <cFile>, <cMode> ) => <pGZipStream> or NIL on Error
*/
HB_FUNC( HB_GZOPEN )
{
#ifndef HB_NO_GZLIB
const char * cFile = hb_parc( 1 ), * cMode = hb_parc( 2 );
if( cFile && cMode )
{
gzFile gz;
hb_vmUnlock();
#if defined( HB_OS_WIN ) && ZLIB_VERNUM >= 0x1270
{
void * hFile;
gz = gzopen_w( hb_parstr_u16( 1, HB_CDP_ENDIAN_NATIVE, &hFile, NULL ), cMode );
hb_strfree( hFile );
}
#else
gz = gzopen( cFile, cMode );
#endif
hb_vmLock();
if( gz )
{
gzFile * gzHolder = ( gzFile * ) hb_gcAllocate( sizeof( gzFile ),
&s_gcGZFuncs );
*gzHolder = gz;
hb_retptrGC( gzHolder );
}
}
else
hb_errRT_BASE_SubstR( EG_ARG, 3012, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
#endif
}
/*
* hb_gzDOpen( <hFile>, <cMode> ) => <pGZipStream> or NIL on Error
*/
HB_FUNC( HB_GZDOPEN )
{
#ifndef HB_NO_GZLIB
const char * cMode = hb_parc( 2 );
if( HB_ISNUM( 1 ) && cMode )
{
gzFile gz;
hb_vmUnlock();
gz = gzdopen( hb_parni( 1 ), cMode );
hb_vmLock();
if( gz )
{
gzFile * gzHolder = ( gzFile * ) hb_gcAllocate( sizeof( gzFile ),
&s_gcGZFuncs );
*gzHolder = gz;
hb_retptrGC( gzHolder );
}
}
else
hb_errRT_BASE_SubstR( EG_ARG, 3012, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
#endif
}
/*
* hb_gzClose( <pGZipStream> ) => <nResult>
*/
HB_FUNC( HB_GZCLOSE )
{
#ifndef HB_NO_GZLIB
gzFile * gzHolder = ( gzFile * ) hb_parptrGC( &s_gcGZFuncs, 1 );
if( gzHolder )
{
gzFile gz = *gzHolder;
int iResult;
*gzHolder = NULL;
hb_vmUnlock();
iResult = gzclose( gz );
hb_vmLock();
hb_retni( iResult );
}
else
hb_errRT_BASE_SubstR( EG_ARG, 3012, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
#endif
}
/*
* hb_gzSetParams( <pGZipStream>, <nLevel>, <nStrategy> ) => <nResult>
*/
HB_FUNC( HB_GZSETPARAMS )
{
#ifndef HB_NO_GZLIB
if( HB_ISNUM( 2 ) && HB_ISNUM( 3 ) )
{
gzFile gz = hb_gzParam( 1 );
if( gz )
hb_retni( gzsetparams( gz, hb_parni( 2 ), hb_parni( 3 ) ) );
}
else
hb_errRT_BASE_SubstR( EG_ARG, 3012, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
#endif
}
/*
* hb_gzRead( <pGZipStream>, <@cData>, [ <nLen> ] ) => <nResult>
*/
HB_FUNC( HB_GZREAD )
{
#ifndef HB_NO_GZLIB
PHB_ITEM pBuffer = HB_ISBYREF( 2 ) ? hb_param( 2, HB_IT_STRING ) : NULL;
char * szBuffer;
HB_SIZE nLen;
if( pBuffer && hb_itemGetWriteCL( pBuffer, &szBuffer, &nLen ) )
{
gzFile gz = hb_gzParam( 1 );
if( gz )
{
int iResult;
if( HB_ISNUM( 3 ) )
{
HB_SIZE nLim = hb_parns( 3 );
if( nLim < nLen )
nLen = nLim;
}
hb_vmUnlock();
iResult = gzread( gz, szBuffer, ( unsigned ) nLen );
hb_vmLock();
hb_retni( iResult );
}
}
else
hb_errRT_BASE_SubstR( EG_ARG, 3012, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
#endif
}
/*
* hb_gzWrite( <pGZipStream>, <cData>, [ <nLen> ] ) => <nResult>
*/
HB_FUNC( HB_GZWRITE )
{
#ifndef HB_NO_GZLIB
const char * szData = hb_parc( 2 );
if( szData )
{
gzFile gz = hb_gzParam( 1 );
if( gz )
{
int iResult;
hb_vmUnlock();
iResult = gzwrite( gz, szData,
HB_ISNUM( 3 ) ? ( unsigned ) hb_parns( 3 ) :
( unsigned ) hb_parclen( 2 ) );
hb_vmLock();
hb_retni( iResult );
}
}
else
hb_errRT_BASE_SubstR( EG_ARG, 3012, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
#endif
}
/*
* hb_gzGetS( <pGZipStream>, <nMaxBytes> ) => <cLine> or NIL on error
*/
HB_FUNC( HB_GZGETS )
{
#ifndef HB_NO_GZLIB
int iLen = hb_parni( 2 );
if( iLen > 0 )
{
gzFile gz = hb_gzParam( 1 );
if( gz )
{
char * szBuffer = ( char * ) hb_xalloc( iLen + 1 );
if( szBuffer )
{
char * szBuff;
hb_vmUnlock();
szBuff = gzgets( gz, szBuffer, iLen );
hb_vmLock();
if( szBuff != Z_NULL )
hb_retc_buffer( szBuffer );
else
hb_xfree( szBuffer );
}
}
}
else
hb_errRT_BASE_SubstR( EG_ARG, 3012, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
#endif
}
/*
* hb_gzPutS( <pGZipStream>, <cData> ) => <nResult>
*/
HB_FUNC( HB_GZPUTS )
{
#ifndef HB_NO_GZLIB
const char * szData = hb_parc( 2 );
if( szData )
{
gzFile gz = hb_gzParam( 1 );
if( gz )
{
int iResult;
hb_vmUnlock();
iResult = gzputs( gz, szData );
hb_vmLock();
hb_retni( iResult );
}
}
else
hb_errRT_BASE_SubstR( EG_ARG, 3012, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
#endif
}
/*
* hb_gzPutC( <pGZipStream>, <nByte> ) => <nResult>
*/
HB_FUNC( HB_GZPUTC )
{
#ifndef HB_NO_GZLIB
if( HB_ISNUM( 2 ) )
{
gzFile gz = hb_gzParam( 1 );
if( gz )
{
int iResult;
hb_vmUnlock();
iResult = gzputc( gz, hb_parni( 2 ) );
hb_vmLock();
hb_retni( iResult );
}
}
else
hb_errRT_BASE_SubstR( EG_ARG, 3012, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
#endif
}
/*
* hb_gzGetC( <pGZipStream> ) => <nByte>
*/
HB_FUNC( HB_GZGETC )
{
#ifndef HB_NO_GZLIB
gzFile gz = hb_gzParam( 1 );
if( gz )
{
int iResult;
hb_vmUnlock();
iResult = gzgetc( gz );
hb_vmLock();
hb_retni( iResult );
}
#endif
}
/*
* hb_gzUnGetC( <nByte>, <pGZipStream> ) => <nByte>
*/
HB_FUNC( HB_GZUNGETC )
{
#ifndef HB_NO_GZLIB
if( HB_ISNUM( 1 ) )
{
#if ZLIB_VERNUM >= 0x1202
gzFile gz = hb_gzParam( 2 );
if( gz )
{
int iResult;
hb_vmUnlock();
iResult = gzungetc( hb_parni( 1 ), gz );
hb_vmLock();
hb_retni( iResult );
}
#endif
}
else
hb_errRT_BASE_SubstR( EG_ARG, 3012, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
#endif
}
/*
* hb_gzFlush( <pGZipStream>, [ <nFlush> ] ) => <nResult>
*/
HB_FUNC( HB_GZFLUSH )
{
#ifndef HB_NO_GZLIB
gzFile gz = hb_gzParam( 1 );
if( gz )
{
int iResult;
hb_vmUnlock();
iResult = gzflush( gz, hb_parnidef( 2, Z_SYNC_FLUSH ) );
hb_vmLock();
hb_retni( iResult );
}
#endif
}
/*
* hb_gzSeek( <pGZipStream>, <nOffset>, [ <nWhence> ] ) => <nOffset>
*/
HB_FUNC( HB_GZSEEK )
{
#ifndef HB_NO_GZLIB
if( HB_ISNUM( 2 ) )
{
gzFile gz = hb_gzParam( 1 );
if( gz )
{
HB_MAXINT nResult;
hb_vmUnlock();
nResult = gzseek( gz, ( z_off_t ) hb_parnint( 2 ),
hb_parnidef( 3, SEEK_SET ) );
hb_vmLock();
hb_retnint( nResult );
}
}
else
hb_errRT_BASE_SubstR( EG_ARG, 3012, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
#endif
}
/*
* hb_gzRewind( <pGZipStream> ) => <nResult>
*/
HB_FUNC( HB_GZREWIND )
{
#ifndef HB_NO_GZLIB
gzFile gz = hb_gzParam( 1 );
if( gz )
{
int iResult;
hb_vmUnlock();
iResult = gzrewind( gz );
hb_vmLock();
hb_retni( iResult );
}
#endif
}
/*
* hb_gzTell( <pGZipStream> ) => <nResult>
*/
HB_FUNC( HB_GZTELL )
{
#ifndef HB_NO_GZLIB
gzFile gz = hb_gzParam( 1 );
if( gz )
{
HB_MAXINT nResult;
hb_vmUnlock();
nResult = gztell( gz );
hb_vmLock();
hb_retnint( nResult );
}
#endif
}
/*
* hb_gzEof( <pGZipStream> ) => <lResult>
*/
HB_FUNC( HB_GZEOF )
{
#ifndef HB_NO_GZLIB
gzFile gz = hb_gzParam( 1 );
if( gz )
{
int iResult;
hb_vmUnlock();
iResult = gzeof( gz );
hb_vmLock();
hb_retl( iResult != 0 );
}
#endif
}
/*
* hb_gzDirect( <pGZipStream> ) => <lResult>
*/
HB_FUNC( HB_GZDIRECT )
{
#ifndef HB_NO_GZLIB
#if ZLIB_VERNUM >= 0x1230
gzFile gz = hb_gzParam( 1 );
if( gz )
{
int iResult;
hb_vmUnlock();
iResult = gzdirect( gz );
hb_vmLock();
hb_retl( iResult != 0 );
}
#endif
#endif
}
/*
* hb_gzError( <pGZipStream>, [ <@nError> ] ) => <cError>
*/
HB_FUNC( HB_GZERROR )
{
#ifndef HB_NO_GZLIB
gzFile gz = hb_gzParam( 1 );
if( gz )
{
int iErrNum = 0;
hb_retc( gzerror( gz, &iErrNum ) );
hb_storni( iErrNum, 2 );
}
#endif
}
/*
* hb_gzClearErr( <pGZipStream> ) => NIL
*/
HB_FUNC( HB_GZCLEARERR )
{
#ifndef HB_NO_GZLIB
#if ZLIB_VERNUM >= 0x1202
gzFile gz = hb_gzParam( 1 );
if( gz )
gzclearerr( gz );
#endif
#endif
}