2010-10-12 15:56:41 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2008-01-17 07:06:10 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 14:42:51 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:42:51 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:42:51 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2008-01-17 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:42:51 +00: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 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:42:51 +00: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 07:06:10 +00:00
|
|
|
*
|
2008-04-10 14:42:51 +00: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 07:06:10 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "oox/helper/binarystreambase.hxx"
|
|
|
|
|
2010-08-05 16:01:52 +02:00
|
|
|
#include <osl/diagnose.h>
|
2008-01-17 07:06:10 +00:00
|
|
|
|
|
|
|
namespace oox {
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
|
2010-08-05 16:01:52 +02:00
|
|
|
using namespace ::com::sun::star::io;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
|
2008-01-17 07:06:10 +00:00
|
|
|
BinaryStreamBase::~BinaryStreamBase()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-09-30 13:51:36 +00:00
|
|
|
bool BinaryStreamBase::isSeekable() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-01-17 07:06:10 +00:00
|
|
|
sal_Int64 BinaryStreamBase::getLength() const
|
|
|
|
{
|
2008-09-30 13:51:36 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Int64 BinaryStreamBase::tell() const
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BinaryStreamBase::seek( sal_Int64 )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Int64 BinaryStreamBase::getRemaining() const
|
|
|
|
{
|
2010-04-14 17:31:33 +02:00
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2010-04-14 19:14:53 +02:00
|
|
|
void BinaryStreamBase::alignToBlock( sal_Int32 nBlockSize, sal_Int64 nAnchorPos )
|
2010-04-14 17:31:33 +02:00
|
|
|
{
|
|
|
|
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 13:51:36 +00: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 07:06:10 +00:00
|
|
|
{
|
2008-09-30 13:51:36 +00:00
|
|
|
return mxSeekable->getLength();
|
2008-01-17 07:06:10 +00:00
|
|
|
}
|
|
|
|
catch( Exception& )
|
|
|
|
{
|
2011-03-12 11:43:16 +01:00
|
|
|
OSL_FAIL( "BinaryXSeekableStream::getLength - exception caught" );
|
2008-01-17 07:06:10 +00:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-09-30 13:51:36 +00:00
|
|
|
sal_Int64 BinaryXSeekableStream::tell() const
|
2008-01-17 07:06:10 +00:00
|
|
|
{
|
2008-09-30 13:51:36 +00:00
|
|
|
if( mxSeekable.is() ) try
|
2008-01-17 07:06:10 +00:00
|
|
|
{
|
2008-09-30 13:51:36 +00:00
|
|
|
return mxSeekable->getPosition();
|
2008-01-17 07:06:10 +00:00
|
|
|
}
|
|
|
|
catch( Exception& )
|
|
|
|
{
|
2011-03-12 11:43:16 +01:00
|
|
|
OSL_FAIL( "BinaryXSeekableStream::tell - exception caught" );
|
2008-01-17 07:06:10 +00:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-09-30 13:51:36 +00:00
|
|
|
void BinaryXSeekableStream::seek( sal_Int64 nPos )
|
2008-01-17 07:06:10 +00:00
|
|
|
{
|
2008-09-30 13:51:36 +00:00
|
|
|
if( mxSeekable.is() ) try
|
2008-01-17 07:06:10 +00:00
|
|
|
{
|
2008-09-30 13:51:36 +00:00
|
|
|
mbEof = false;
|
|
|
|
mxSeekable->seek( nPos );
|
2008-01-17 07:06:10 +00:00
|
|
|
}
|
|
|
|
catch( Exception& )
|
|
|
|
{
|
2008-09-30 13:51:36 +00:00
|
|
|
mbEof = true;
|
2008-01-17 07:06:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
|
2008-09-30 13:51:36 +00: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() );
|
2010-04-14 17:31:33 +02:00
|
|
|
mbEof = mnPos != nPos;
|
2008-09-30 13:51:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
|
2008-01-17 07:06:10 +00:00
|
|
|
} // namespace oox
|
|
|
|
|
2010-10-12 15:56:41 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|