Files
libreoffice/basic/source/comp/buffer.cxx

229 lines
5.3 KiB
C++
Raw Normal View History

2000-09-18 15:18:56 +00:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: buffer.cxx,v $
*
* $Revision: 1.9 $
2000-09-18 15:18:56 +00:00
*
* last change: $Author: obo $ $Date: 2006-09-17 10:01:05 $
2000-09-18 15:18:56 +00:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2000-09-18 15:18:56 +00:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2000-09-18 15:18:56 +00:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
2000-09-18 15:18:56 +00:00
*
* This library 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
* Lesser General Public License for more details.
2000-09-18 15:18:56 +00:00
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
2000-09-18 15:18:56 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_basic.hxx"
2000-09-18 15:18:56 +00:00
#include "sbcomp.hxx"
#include "buffer.hxx"
#include <string.h>
// Der SbiBuffer wird in Inkrements von mindestens 16 Bytes erweitert.
// Dies ist notwendig, da viele Klassen von einer Pufferlaenge
// von x*16 Bytes ausgehen.
SbiBuffer::SbiBuffer( SbiParser* p, short n )
{
pParser = p;
n = ( (n + 15 ) / 16 ) * 16;
if( !n ) n = 16;
pBuf = NULL;
pCur = NULL;
nInc = n;
nSize =
nOff = 0;
}
SbiBuffer::~SbiBuffer()
{
delete[] pBuf;
2000-09-18 15:18:56 +00:00
}
// Rausreichen des Puffers
// Dies fuehrt zur Loeschung des Puffers!
char* SbiBuffer::GetBuffer()
{
char* p = pBuf;
pBuf = NULL;
pCur = NULL;
return p;
}
// Test, ob der Puffer n Bytes aufnehmen kann.
// Im Zweifelsfall wird er vergroessert
BOOL SbiBuffer::Check( USHORT n )
{
if( !n ) return TRUE;
if( ((long) nOff + n ) > (long) nSize )
{
if( nInc == 0 )
return FALSE;
2000-09-18 15:18:56 +00:00
USHORT nn = 0;
while( nn < n ) nn += nInc;
char* p;
if( ((long) nSize + nn ) > 0xFF00L ) p = NULL;
else p = new char [nSize + nn];
if( !p )
{
pParser->Error( SbERR_PROG_TOO_LARGE );
nInc = 0;
delete[] pBuf; pBuf = NULL;
2000-09-18 15:18:56 +00:00
return FALSE;
}
else
{
if( nSize ) memcpy( p, pBuf, nSize );
delete[] pBuf;
2000-09-18 15:18:56 +00:00
pBuf = p;
pCur = pBuf + nOff;
nSize += nn;
}
}
return TRUE;
}
// Angleich des Puffers auf die uebergebene Byte-Grenze
void SbiBuffer::Align( short n )
{
if( nOff % n ) {
USHORT nn =( ( nOff + n ) / n ) * n;
if( nn <= 0xFF00 )
{
nn -= nOff;
if( Check( nn ) )
{
memset( pCur, 0, nn );
pCur += nn;
nOff += nn;
}
}
}
}
// Patch einer Location
void SbiBuffer::Patch( USHORT off, UINT16 val )
{
if( ( off + sizeof( UINT16 ) ) < nOff )
{
BYTE* p = (BYTE*) pBuf + off;
*p++ = (char) ( val & 0xFF );
*p = (char) ( val >> 8 );
}
}
// Forward References auf Labels und Prozeduren
// bauen eine Kette auf. Der Anfang der Kette ist beim uebergebenen
// Parameter, das Ende der Kette ist 0.
void SbiBuffer::Chain( USHORT off )
{
if( off && pBuf )
{
BYTE *ip;
USHORT i = off;
USHORT val = nOff;
do
{
ip = (BYTE*) pBuf + i;
i = ( *ip ) | ( *(ip+1) << 8 );
if( i >= nOff )
{
pParser->Error( SbERR_INTERNAL_ERROR, "BACKCHAIN" );
break;
}
*ip++ = (char) ( val & 0xFF );
*ip = (char) ( val >> 8 );
} while( i );
}
}
BOOL SbiBuffer::operator +=( INT8 n )
{
if( Check( 1 ) )
{
*pCur++ = (char) n; nOff++; return TRUE;
} else return FALSE;
}
BOOL SbiBuffer::operator +=( UINT8 n )
{
if( Check( 1 ) )
{
*pCur++ = (char) n; nOff++; return TRUE;
} else return FALSE;
}
BOOL SbiBuffer::operator +=( INT16 n )
{
if( Check( 2 ) )
{
*pCur++ = (char) ( n & 0xFF );
*pCur++ = (char) ( n >> 8 );
nOff += 2; return TRUE;
} else return FALSE;
}
BOOL SbiBuffer::operator +=( UINT16 n )
{
if( Check( 2 ) )
{
*pCur++ = (char) ( n & 0xFF );
*pCur++ = (char) ( n >> 8 );
nOff += 2; return TRUE;
} else return FALSE;
}
BOOL SbiBuffer::operator +=( const String& n )
{
USHORT l = n.Len() + 1;
if( Check( l ) )
{
ByteString aByteStr( n, gsl_getSystemTextEncoding() );
memcpy( pCur, aByteStr.GetBuffer(), l );
pCur += l;
nOff += l;
return TRUE;
}
else return FALSE;
}
BOOL SbiBuffer::Add( const void* p, USHORT len )
{
if( Check( len ) )
{
memcpy( pCur, p, len );
pCur += len;
nOff += len;
return TRUE;
} else return FALSE;
}