office-gobmx/oox/source/helper/binarystreambase.cxx

162 lines
4.1 KiB
C++
Raw Normal View History

2008-01-17 01:06:10 -06:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2008-01-17 01:06:10 -06:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2008-01-17 01:06:10 -06:00
*
* OpenOffice.org - a multi-platform office productivity suite
2008-01-17 01:06:10 -06:00
*
* This file is part of OpenOffice.org.
2008-01-17 01:06:10 -06: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
*
* 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
*
* 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/binarystreambase.hxx"
#include <osl/diagnose.h>
2008-09-30 08:51:36 -05:00
using ::com::sun::star::uno::Reference;
2008-01-17 01:06:10 -06:00
using ::com::sun::star::uno::Exception;
2008-09-30 08:51:36 -05:00
using ::com::sun::star::io::XSeekable;
2008-01-17 01:06:10 -06:00
namespace oox {
// ============================================================================
BinaryStreamBase::~BinaryStreamBase()
{
}
2008-09-30 08:51:36 -05:00
bool BinaryStreamBase::isSeekable() const
{
return false;
}
2008-01-17 01:06:10 -06:00
sal_Int64 BinaryStreamBase::getLength() const
{
2008-09-30 08:51:36 -05:00
return -1;
}
sal_Int64 BinaryStreamBase::tell() const
{
return -1;
}
void BinaryStreamBase::seek( sal_Int64 )
{
}
sal_Int64 BinaryStreamBase::getRemaining() const
{
// do not use isSeekable(), implementations may provide stream position and size even if not seekable
sal_Int64 nPos = tell();
sal_Int64 nLen = getLength();
return ((nPos >= 0) && (nLen >= 0)) ? ::std::max< sal_Int64 >( nLen - nPos, 0 ) : -1;
}
void BinaryStreamBase::alignToBlock( sal_Int32 nBlockSize, sal_Int64 nAnchorPos )
{
sal_Int64 nStrmPos = tell();
// nothing to do, if stream is at anchor position
if( isSeekable() && (0 <= nAnchorPos) && (nAnchorPos != nStrmPos) && (nBlockSize > 1) )
{
// prevent modulo with negative arguments...
sal_Int64 nSkipSize = (nAnchorPos < nStrmPos) ?
(nBlockSize - ((nStrmPos - nAnchorPos - 1) % nBlockSize) - 1) :
((nAnchorPos - nStrmPos) % nBlockSize);
seek( nStrmPos + nSkipSize );
}
2008-09-30 08:51:36 -05:00
}
// ============================================================================
BinaryXSeekableStream::BinaryXSeekableStream( const Reference< XSeekable >& rxSeekable ) :
mxSeekable( rxSeekable )
{
}
bool BinaryXSeekableStream::isSeekable() const
{
return mxSeekable.is();
}
sal_Int64 BinaryXSeekableStream::getLength() const
{
if( mxSeekable.is() ) try
2008-01-17 01:06:10 -06:00
{
2008-09-30 08:51:36 -05:00
return mxSeekable->getLength();
2008-01-17 01:06:10 -06:00
}
catch( Exception& )
{
2008-09-30 08:51:36 -05:00
OSL_ENSURE( false, "BinaryXSeekableStream::getLength - exception caught" );
2008-01-17 01:06:10 -06:00
}
return -1;
}
2008-09-30 08:51:36 -05:00
sal_Int64 BinaryXSeekableStream::tell() const
2008-01-17 01:06:10 -06:00
{
2008-09-30 08:51:36 -05:00
if( mxSeekable.is() ) try
2008-01-17 01:06:10 -06:00
{
2008-09-30 08:51:36 -05:00
return mxSeekable->getPosition();
2008-01-17 01:06:10 -06:00
}
catch( Exception& )
{
2008-09-30 08:51:36 -05:00
OSL_ENSURE( false, "BinaryXSeekableStream::tell - exception caught" );
2008-01-17 01:06:10 -06:00
}
return -1;
}
2008-09-30 08:51:36 -05:00
void BinaryXSeekableStream::seek( sal_Int64 nPos )
2008-01-17 01:06:10 -06:00
{
2008-09-30 08:51:36 -05:00
if( mxSeekable.is() ) try
2008-01-17 01:06:10 -06:00
{
2008-09-30 08:51:36 -05:00
mbEof = false;
mxSeekable->seek( nPos );
2008-01-17 01:06:10 -06:00
}
catch( Exception& )
{
2008-09-30 08:51:36 -05:00
mbEof = true;
2008-01-17 01:06:10 -06:00
}
}
// ============================================================================
2008-09-30 08:51:36 -05:00
bool SequenceSeekableStream::isSeekable() const
{
return true;
}
sal_Int64 SequenceSeekableStream::getLength() const
{
return mrData.getLength();
}
sal_Int64 SequenceSeekableStream::tell() const
{
return mnPos;
}
void SequenceSeekableStream::seek( sal_Int64 nPos )
{
mnPos = getLimitedValue< sal_Int32, sal_Int64 >( nPos, 0, mrData.getLength() );
mbEof = mnPos != nPos;
2008-09-30 08:51:36 -05:00
}
// ============================================================================
2008-01-17 01:06:10 -06:00
} // namespace oox