* contrib/gtqtc/gtqtc1.cpp
* contrib/gtwvg/gtwgud.c
* contrib/gtwvw/wvwdraw.c
* contrib/hbamf/amfdec.c
* contrib/hbamf/amfstdio.c
* contrib/hbbz2io/bz2io.c
* contrib/hbgzio/gzio.c
* contrib/hbhpdf/core.c
* contrib/hbmemio/memio.c
* contrib/hbmisc/irm.c
* contrib/hbmisc/spd.c
* contrib/hbnetio/netiosrv.c
* contrib/hbssl/ssl_sock.c
* contrib/hbwin/olecore.c
* contrib/hbwin/wapi_commctrl.c
* contrib/hbwin/wapi_winuser.c
* contrib/hbwin/win_bmpd.c
* contrib/hbwin/win_misc.c
* contrib/hbzebra/qrcode.c
* contrib/rddads/ads1.c
* contrib/rddads/adsfunc.c
* contrib/rddsql/sqlmix.c
* contrib/sddfb/core.c
* contrib/xhb/cstructc.c
* contrib/xhb/hboutdbg.c
* contrib/xhb/hbserv.c
* include/hbdefs.h
* include/hbexprb.c
* include/hbrddcdx.h
* include/hbthread.h
* include/hbwmain.c
* src/common/hbffind.c
* src/compiler/complex.c
* src/compiler/hbmain.c
* src/compiler/hbopt.c
* src/debug/dbgentry.c
* src/rdd/dbf1.c
* src/rdd/dbfcdx/dbfcdx1.c
* src/rdd/dbffpt/dbffpt1.c
* src/rdd/dbfnsx/dbfnsx1.c
* src/rdd/dbfntx/dbfntx1.c
* src/rdd/hbsix/sxcompr.c
* src/rdd/wacore.c
* src/rdd/workarea.c
* src/rtl/cputime.c
* src/rtl/dates.c
* src/rtl/gtchrmap.c
* src/rtl/gtcrs/gtcrs.c
* src/rtl/gtpca/gtpca.c
* src/rtl/gtsln/gtsln.c
* src/rtl/gtsln/kbsln.c
* src/rtl/gtsln/keytrans.c
* src/rtl/gtstd/gtstd.c
* src/rtl/gttrm/gttrm.c
* src/rtl/gtwvt/gtwvt.c
* src/rtl/gtxwc/gtxwc.c
* src/rtl/hbcom.c
* src/rtl/hbproces.c
* src/rtl/itemseri.c
* src/rtl/langapi.c
* src/rtl/run.c
* src/rtl/sha1.c
* src/rtl/space.c
* src/vm/classes.c
* src/vm/hvm.c
* src/vm/itemapi.c
* src/vm/set.c
* src/vm/thread.c
* convert commented C code to #if 0 blocks, or clean them up in
different ways
136 lines
4.2 KiB
C
136 lines
4.2 KiB
C
/*
|
|
* Reading AMFIO data from standard input pipe
|
|
*
|
|
* Copyright 2011 Ilina Stoilkovska <anili100/at/gmail.com>
|
|
* Copyright 2012 Aleksander Czajczynski <hb/at/fki.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 program; see the file LICENSE.txt. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA (or visit https://www.gnu.org/licenses/).
|
|
*
|
|
* 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 "hbapigt.h"
|
|
#include "hbapifs.h"
|
|
|
|
#define SINGLEBUF 32768
|
|
#define MAXLEN ( 16 * 1024 * 1024 )
|
|
|
|
static int s_nCount = 0;
|
|
|
|
static void countCheck( int n )
|
|
{
|
|
/* yes, this is flow-control */
|
|
|
|
s_nCount += n;
|
|
|
|
while( s_nCount >= SINGLEBUF )
|
|
{
|
|
hb_conOutStd( "\0\0\0\0", 4 );
|
|
s_nCount -= SINGLEBUF;
|
|
}
|
|
}
|
|
|
|
HB_FUNC( AMFSTDIO_READ )
|
|
{
|
|
char * pszStrIn = ( char * ) hb_xgrab( SINGLEBUF );
|
|
char * pszLenPrefix = ( char * ) hb_xgrab( 5 );
|
|
#if 0
|
|
char * pszBuf; = ( char * ) hb_xgrab( SINGLEBUF );
|
|
#endif
|
|
char * pszBuf;
|
|
char * pszTmp = pszLenPrefix;
|
|
HB_USHORT nBytes;
|
|
int nTotal = 0;
|
|
int nLen;
|
|
int nToRead;
|
|
HB_FHANDLE hStdIn = hb_fsGetOsHandle( HB_STDIN_HANDLE );
|
|
|
|
while( nTotal < 4 )
|
|
{
|
|
nToRead = ( s_nCount + 4 - nTotal > SINGLEBUF ? SINGLEBUF - s_nCount : 4 - nTotal );
|
|
nBytes = hb_fsRead( hStdIn, pszStrIn, ( HB_USHORT ) nToRead );
|
|
|
|
countCheck( nBytes );
|
|
|
|
memcpy( pszTmp, pszStrIn, nBytes );
|
|
nTotal += nBytes;
|
|
pszTmp = pszLenPrefix + nTotal;
|
|
}
|
|
|
|
pszLenPrefix[ 4 ] = '\0';
|
|
nLen = HB_GET_LE_UINT32( pszLenPrefix );
|
|
|
|
if( nLen >= MAXLEN )
|
|
{
|
|
hb_ret();
|
|
return;
|
|
}
|
|
|
|
nTotal = 0;
|
|
pszBuf = ( char * ) hb_xgrab( nLen + 1 );
|
|
pszTmp = pszBuf;
|
|
|
|
while( nTotal < nLen )
|
|
{
|
|
/*
|
|
* here it's being decided that nToRead is never over 32768 bytes long,
|
|
* so hb_fsRead() is fine, no hb_fsReadLarge() needed
|
|
*/
|
|
|
|
if( nLen - nTotal > SINGLEBUF )
|
|
nToRead = SINGLEBUF - s_nCount;
|
|
else
|
|
nToRead = ( s_nCount + nLen - nTotal > SINGLEBUF ? SINGLEBUF - s_nCount : nLen - nTotal );
|
|
|
|
nBytes = hb_fsRead( hStdIn, pszStrIn, ( HB_USHORT ) nToRead );
|
|
|
|
countCheck( nBytes );
|
|
|
|
memcpy( pszTmp, pszStrIn, nBytes );
|
|
nTotal += nBytes;
|
|
pszTmp = pszBuf + nTotal;
|
|
}
|
|
|
|
hb_xfree( pszStrIn );
|
|
hb_xfree( pszLenPrefix );
|
|
hb_retclen_buffer( pszBuf, nLen );
|
|
}
|