Files
libreoffice/comphelper/source/streaming/seqstream.cxx

257 lines
9.4 KiB
C++
Raw Normal View History

2000-09-29 10:28:15 +00:00
/*************************************************************************
*
* $RCSfile: seqstream.cxx,v $
*
2001-02-02 15:10:26 +00:00
* $Revision: 1.3 $
2000-09-29 10:28:15 +00:00
*
2001-02-02 15:10:26 +00:00
* last change: $Author: oj $ $Date: 2001-02-02 16:10:26 $
2000-09-29 10:28:15 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* 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.
*
* 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.
*
* 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
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifndef _COMPHELPER_SEQSTREAM_HXX
#include <comphelper/seqstream.hxx>
#endif
#include <memory.h> // for memcpy
namespace comphelper
{
2001-02-02 13:56:32 +00:00
using namespace ::com::sun::star::io;
using namespace ::com::sun::star::uno;
using namespace ::osl;
2000-09-29 10:28:15 +00:00
//---------------------------------------------------------------------------------------------
// class SequenceInputStream
//---------------------------------------------------------------------------------------------
//------------------------------------------------------------------
SequenceInputStream::SequenceInputStream(const ByteSequence& rData)
: m_aData(rData)
, m_nPos(0)
{
}
// checks if closed, returns available size, not mutex-protected
//------------------------------------------------------------------
inline sal_Int32 SequenceInputStream::avail()
{
if (m_nPos == -1)
2001-02-02 13:56:32 +00:00
throw NotConnectedException(::rtl::OUString(), *this);
2000-09-29 10:28:15 +00:00
return m_aData.getLength() - m_nPos;
}
// com::sun::star::io::XInputStream
//------------------------------------------------------------------
2001-02-02 13:56:32 +00:00
sal_Int32 SAL_CALL SequenceInputStream::readBytes( Sequence<sal_Int8>& aData, sal_Int32 nBytesToRead )
throw(NotConnectedException, BufferSizeExceededException,
IOException, RuntimeException)
2000-09-29 10:28:15 +00:00
{
::osl::MutexGuard aGuard( m_aMutex );
sal_Int32 nAvail = avail();
if (nBytesToRead < 0)
2001-02-02 13:56:32 +00:00
throw BufferSizeExceededException(::rtl::OUString(),*this);
2000-09-29 10:28:15 +00:00
if (nAvail < nBytesToRead)
nBytesToRead = nAvail;
aData.realloc(nBytesToRead);
memcpy(aData.getArray(), m_aData.getConstArray() + m_nPos, nBytesToRead);
m_nPos += nBytesToRead;
return nBytesToRead;
}
//------------------------------------------------------------------
2001-02-02 13:56:32 +00:00
sal_Int32 SAL_CALL SequenceInputStream::readSomeBytes( Sequence<sal_Int8>& aData, sal_Int32 nMaxBytesToRead )
throw(NotConnectedException, BufferSizeExceededException,
IOException, RuntimeException)
2000-09-29 10:28:15 +00:00
{
// all data is available at once
return readBytes(aData, nMaxBytesToRead);
}
//------------------------------------------------------------------
void SAL_CALL SequenceInputStream::skipBytes( sal_Int32 nBytesToSkip )
2001-02-02 13:56:32 +00:00
throw(NotConnectedException, BufferSizeExceededException,
IOException, RuntimeException)
2000-09-29 10:28:15 +00:00
{
::osl::MutexGuard aGuard( m_aMutex );
sal_Int32 nAvail = avail();
if (nBytesToSkip < 0)
2001-02-02 13:56:32 +00:00
throw BufferSizeExceededException(::rtl::OUString(),*this);
2000-09-29 10:28:15 +00:00
if (nAvail < nBytesToSkip)
nBytesToSkip = nAvail;
m_nPos += nBytesToSkip;
}
//------------------------------------------------------------------
sal_Int32 SAL_CALL SequenceInputStream::available( )
2001-02-02 13:56:32 +00:00
throw(NotConnectedException, IOException, RuntimeException)
2000-09-29 10:28:15 +00:00
{
::osl::MutexGuard aGuard( m_aMutex );
return avail();
}
//------------------------------------------------------------------
void SAL_CALL SequenceInputStream::closeInput( )
2001-02-02 13:56:32 +00:00
throw(NotConnectedException, IOException, RuntimeException)
2000-09-29 10:28:15 +00:00
{
if (m_nPos == -1)
2001-02-02 13:56:32 +00:00
throw NotConnectedException(::rtl::OUString(), *this);
2000-09-29 10:28:15 +00:00
m_nPos = -1;
}
2001-02-02 13:56:32 +00:00
//--------------------------------------------------------------------------
OSequenceOutputStream::OSequenceOutputStream(Sequence< sal_Int8 >& _rSeq, double _nResizeFactor, sal_Int32 _nMinimumResize, sal_Int32 _nMaximumResize)
:m_rSequence(_rSeq)
,m_nResizeFactor(_nResizeFactor)
,m_nMinimumResize(_nMinimumResize)
,m_nMaximumResize(_nMaximumResize)
,m_nSize(0) // starting at position 0
,m_bConnected(sal_True)
{
OSL_ENSHURE(m_nResizeFactor > 1, "OSequenceOutputStream::OSequenceOutputStream : invalid resize factor !");
OSL_ENSHURE((m_nMaximumResize < 0) || (m_nMaximumResize > m_nMinimumResize),
"OSequenceOutputStream::OSequenceOutputStream : these limits don't make any sense !");
if (m_nResizeFactor <= 1)
m_nResizeFactor = 1.3;
if ((m_nMaximumResize >= 0) && (m_nMaximumResize <= m_nMinimumResize))
m_nMaximumResize = m_nMinimumResize * 2;
// this heuristic is as good as any other ... supply better parameters if you don't like it :)
}
//--------------------------------------------------------------------------
void SAL_CALL OSequenceOutputStream::writeBytes( const Sequence< sal_Int8 >& _rData ) throw(NotConnectedException, BufferSizeExceededException, IOException, RuntimeException)
{
MutexGuard aGuard(m_aMutex);
if (!m_bConnected)
throw NotConnectedException();
// ensure the sequence has enoungh space left
2001-02-02 15:10:26 +00:00
if (m_nSize + _rData.getLength() > m_rSequence.getLength())
2001-02-02 13:56:32 +00:00
{
sal_Int32 nCurrentLength = m_rSequence.getLength();
sal_Int32 nNewLength = nCurrentLength * m_nResizeFactor;
if (m_nMinimumResize > nNewLength - nCurrentLength)
// we have a minimum so it's not too inefficient for small sequences and small write requests
nNewLength = nCurrentLength + m_nMinimumResize;
if ((m_nMaximumResize > 0) && (nNewLength - nCurrentLength > m_nMaximumResize))
// such a large step is not allowed
nNewLength = nCurrentLength + m_nMaximumResize;
if (nNewLength < m_nSize + _rData.getLength())
{ // it's not enough .... the data would not fit
// let's take the double amount of the length of the data to be written, as the next write
// request could be as large as this one
sal_Int32 nNewGrowth = _rData.getLength() * 2;
if ((m_nMaximumResize > 0) && (nNewGrowth > m_nMaximumResize))
{ // we came to the limit, again ...
nNewGrowth = m_nMaximumResize;
if (nNewGrowth + nCurrentLength < m_nSize + _rData.getLength())
// but it would not fit if we respect the limit
nNewGrowth = m_nSize + _rData.getLength() - nCurrentLength;
}
nNewLength = nCurrentLength + nNewGrowth;
}
// round it off to the next multiple of 4 ...
nNewLength = (nNewLength + 3) / 4 * 4;
m_rSequence.realloc(nNewLength);
}
OSL_ENSHURE(m_rSequence.getLength() >= m_nSize + _rData.getLength(),
"ooops ... the realloc algorithm seems to be wrong :( !");
memcpy(m_rSequence.getArray() + m_nSize, _rData.getConstArray(), _rData.getLength());
m_nSize += _rData.getLength();
}
//--------------------------------------------------------------------------
void SAL_CALL OSequenceOutputStream::flush( ) throw(NotConnectedException, BufferSizeExceededException, IOException, RuntimeException)
{
MutexGuard aGuard(m_aMutex);
if (!m_bConnected)
throw NotConnectedException();
// nothing to do here
}
//--------------------------------------------------------------------------
void SAL_CALL OSequenceOutputStream::closeOutput( ) throw(NotConnectedException, BufferSizeExceededException, IOException, RuntimeException)
{
MutexGuard aGuard(m_aMutex);
if (!m_bConnected)
throw NotConnectedException();
// cut the sequence to the real size
m_rSequence.realloc(m_nSize);
// and don't allow any further accesses
m_bConnected = sal_False;
}
2000-09-29 10:28:15 +00:00
} // namespace comphelper