2008-01-17 01:06:10 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 09:42:20 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2008-01-17 01:06:10 -06:00
|
|
|
*
|
2008-04-10 09:42:20 -05:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2008-01-17 01:06:10 -06:00
|
|
|
*
|
2008-04-10 09:42:20 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2008-01-17 01:06:10 -06:00
|
|
|
*
|
2008-04-10 09:42:20 -05:00
|
|
|
* $RCSfile: binaryoutputstream.cxx,v $
|
|
|
|
* $Revision: 1.4 $
|
2008-01-17 01:06:10 -06:00
|
|
|
*
|
2008-04-10 09:42:20 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2008-01-17 01:06:10 -06:00
|
|
|
*
|
2008-04-10 09:42:20 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2008-01-17 01:06:10 -06:00
|
|
|
*
|
2008-04-10 09:42:20 -05:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2008-01-17 01:06:10 -06:00
|
|
|
*
|
2008-04-10 09:42:20 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2008-01-17 01:06:10 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "oox/helper/binaryoutputstream.hxx"
|
|
|
|
#include <osl/diagnose.h>
|
|
|
|
#include <com/sun/star/io/XOutputStream.hpp>
|
|
|
|
#include "oox/helper/binaryinputstream.hxx"
|
2008-02-04 06:36:34 -06:00
|
|
|
#include <string.h>
|
2008-01-17 01:06:10 -06:00
|
|
|
|
|
|
|
using ::com::sun::star::uno::Reference;
|
|
|
|
using ::com::sun::star::uno::Sequence;
|
|
|
|
using ::com::sun::star::uno::Exception;
|
|
|
|
using ::com::sun::star::io::XOutputStream;
|
|
|
|
|
|
|
|
namespace oox {
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
BinaryOutputStream::BinaryOutputStream( const Reference< XOutputStream >& rxOutStrm, bool bAutoClose ) :
|
|
|
|
BinaryStreamBase( rxOutStrm ),
|
|
|
|
mxOutStrm( rxOutStrm ),
|
|
|
|
mbAutoClose( bAutoClose )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
BinaryOutputStream::~BinaryOutputStream()
|
|
|
|
{
|
|
|
|
if( mbAutoClose )
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BinaryOutputStream::write( const Sequence< sal_Int8 >& rBuffer )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
OSL_ENSURE( mxOutStrm.is(), "BinaryOutputStream::write - invalid call" );
|
|
|
|
mxOutStrm->writeBytes( rBuffer );
|
|
|
|
}
|
|
|
|
catch( Exception& )
|
|
|
|
{
|
|
|
|
OSL_ENSURE( false, "BinaryOutputStream::write - stream read error" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BinaryOutputStream::write( const void* pBuffer, sal_Int32 nBytes )
|
|
|
|
{
|
|
|
|
if( nBytes > 0 )
|
|
|
|
{
|
|
|
|
maBuffer.realloc( nBytes );
|
|
|
|
memcpy( maBuffer.getArray(), pBuffer, static_cast< size_t >( nBytes ) );
|
|
|
|
write( maBuffer );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BinaryOutputStream::copy( BinaryInputStream& rInStrm, sal_Int64 nBytes )
|
|
|
|
{
|
|
|
|
if( rInStrm.is() && (nBytes > 0) )
|
|
|
|
{
|
|
|
|
sal_Int32 nBufferSize = getLimitedValue< sal_Int32, sal_Int64 >( nBytes, 0, 0x8000 );
|
|
|
|
Sequence< sal_Int8 > aBuffer( nBufferSize );
|
|
|
|
while( nBytes > 0 )
|
|
|
|
{
|
|
|
|
sal_Int32 nReadSize = getLimitedValue< sal_Int32, sal_Int64 >( nBytes, 0, nBufferSize );
|
|
|
|
sal_Int32 nBytesRead = rInStrm.read( aBuffer, nReadSize );
|
|
|
|
write( aBuffer );
|
|
|
|
if( nReadSize == nBytesRead )
|
|
|
|
nBytes -= nReadSize;
|
|
|
|
else
|
|
|
|
nBytes = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BinaryOutputStream::close()
|
|
|
|
{
|
|
|
|
if( mxOutStrm.is() ) try
|
|
|
|
{
|
|
|
|
mxOutStrm->flush();
|
|
|
|
mxOutStrm->closeOutput();
|
|
|
|
}
|
|
|
|
catch( Exception& )
|
|
|
|
{
|
|
|
|
OSL_ENSURE( false, "BinaryOutputStream::close - closing output stream failed" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
} // namespace oox
|
|
|
|
|