Files
libreoffice/package/source/zipapi/ByteGrabber.cxx

174 lines
5.1 KiB
C++
Raw Normal View History

2000-11-13 12:38:03 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-11-13 12:38:03 +00:00
*
* Copyright 2008 by Sun Microsystems, Inc.
2000-11-13 12:38:03 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-11-13 12:38:03 +00:00
*
* $RCSfile: ByteGrabber.cxx,v $
* $Revision: 1.16 $
2000-11-13 12:38:03 +00:00
*
* This file is part of OpenOffice.org.
2000-11-13 12:38:03 +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.
2000-11-13 12:38:03 +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).
2000-11-13 12:38:03 +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.
2000-11-13 12:38:03 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_package.hxx"
2001-11-15 19:12:15 +00:00
#include <ByteGrabber.hxx>
#include <com/sun/star/io/XSeekable.hpp>
#include <com/sun/star/io/XInputStream.hpp>
2000-11-13 12:38:03 +00:00
using namespace ::com::sun::star;
/** ByteGrabber implements the >> operators on an XOutputStream. This is
* potentially quite slow and may need to be optimised
*/
ByteGrabber::ByteGrabber(uno::Reference < io::XInputStream > xIstream)
: xStream(xIstream)
, xSeek (xIstream, uno::UNO_QUERY )
2001-05-31 08:46:36 +00:00
, aSequence ( 4 )
2000-11-13 12:38:03 +00:00
{
2001-05-31 08:46:36 +00:00
pSequence = aSequence.getArray();
2000-11-13 12:38:03 +00:00
}
2001-05-31 08:46:36 +00:00
2000-11-13 12:38:03 +00:00
ByteGrabber::~ByteGrabber()
{
}
void ByteGrabber::setInputStream (uno::Reference < io::XInputStream > xNewStream)
{
xStream = xNewStream;
xSeek = uno::Reference < io::XSeekable > (xNewStream, uno::UNO_QUERY);
}
2000-11-13 12:38:03 +00:00
// XInputStream chained
sal_Int32 SAL_CALL ByteGrabber::readBytes( uno::Sequence< sal_Int8 >& aData,
sal_Int32 nBytesToRead )
throw(io::NotConnectedException, io::BufferSizeExceededException, io::IOException, uno::RuntimeException)
{
return xStream->readBytes(aData, nBytesToRead );
}
// XSeekable chained...
sal_Int64 SAL_CALL ByteGrabber::seek( sal_Int64 location )
throw(lang::IllegalArgumentException, io::IOException, uno::RuntimeException)
{
if (xSeek.is() )
{
2000-12-01 09:50:49 +00:00
sal_Int64 nLen = xSeek->getLength();
if ( location < 0 || location > nLen )
throw lang::IllegalArgumentException();
2000-11-13 12:38:03 +00:00
if (location > nLen )
location = nLen;
xSeek->seek( location );
return location;
}
else
2000-11-22 13:57:44 +00:00
throw io::IOException();
2000-11-13 12:38:03 +00:00
}
sal_Int64 SAL_CALL ByteGrabber::getPosition( )
throw(io::IOException, uno::RuntimeException)
{
if (xSeek.is() )
return xSeek->getPosition();
else
2000-11-22 13:57:44 +00:00
throw io::IOException();
2000-11-13 12:38:03 +00:00
}
sal_Int64 SAL_CALL ByteGrabber::getLength( )
throw(io::IOException, uno::RuntimeException)
{
if (xSeek.is() )
return xSeek->getLength();
else
2000-11-22 13:57:44 +00:00
throw io::IOException();
2000-11-13 12:38:03 +00:00
}
ByteGrabber& ByteGrabber::operator >> (sal_Int8& rInt8)
{
2000-11-29 12:47:18 +00:00
if (xStream->readBytes(aSequence,1) != 1)
rInt8 = 0;
2001-05-31 08:46:36 +00:00
else
rInt8 = aSequence[0] & 0xFF;
2000-11-13 12:38:03 +00:00
return *this;
}
ByteGrabber& ByteGrabber::operator >> (sal_Int16& rInt16)
{
2001-05-31 08:46:36 +00:00
if (xStream->readBytes ( aSequence, 2) != 2)
2000-11-29 12:47:18 +00:00
rInt16 = 0;
2001-05-31 08:46:36 +00:00
else
{
pSequence = aSequence.getConstArray();
2001-05-31 08:46:36 +00:00
rInt16 = static_cast <sal_Int16>
( pSequence[0] & 0xFF
| (pSequence[1] & 0xFF) << 8);
}
2000-11-13 12:38:03 +00:00
return *this;
}
ByteGrabber& ByteGrabber::operator >> (sal_Int32& rInt32)
{
2000-11-29 12:47:18 +00:00
if (xStream->readBytes(aSequence, 4) != 4)
rInt32 = 0;
2001-05-31 08:46:36 +00:00
else
{
pSequence = aSequence.getConstArray();
2001-05-31 08:46:36 +00:00
rInt32 = static_cast < sal_Int32 >
( pSequence[0] & 0xFF
| ( pSequence[1] & 0xFF ) << 8
| ( pSequence[2] & 0xFF ) << 16
| ( pSequence[3] & 0xFF ) << 24 );
}
2000-11-13 12:38:03 +00:00
return *this;
}
2001-05-31 08:46:36 +00:00
ByteGrabber& ByteGrabber::operator >> (sal_uInt8& rInt8)
2000-11-13 12:38:03 +00:00
{
2000-11-29 12:47:18 +00:00
if (xStream->readBytes(aSequence,1) != 1)
2001-05-31 08:46:36 +00:00
rInt8 = 0;
else
rInt8 = static_cast < sal_uInt8 > (aSequence[0] & 0xFF );
2000-11-13 12:38:03 +00:00
return *this;
}
2001-05-31 08:46:36 +00:00
ByteGrabber& ByteGrabber::operator >> (sal_uInt16& rInt16)
2000-11-13 12:38:03 +00:00
{
2000-11-29 12:47:18 +00:00
if (xStream->readBytes(aSequence, 2) != 2)
2001-05-31 08:46:36 +00:00
rInt16 = 0;
else
{
pSequence = aSequence.getConstArray();
2001-05-31 08:46:36 +00:00
rInt16 = static_cast <sal_uInt16>
( pSequence[0] & 0xFF
| (pSequence[1] & 0xFF) << 8);
}
2000-11-13 12:38:03 +00:00
return *this;
}
ByteGrabber& ByteGrabber::operator >> (sal_uInt32& ruInt32)
{
2000-11-29 12:47:18 +00:00
if (xStream->readBytes(aSequence, 4) != 4)
ruInt32 = 0;
2001-05-31 08:46:36 +00:00
else
{
pSequence = aSequence.getConstArray();
2001-05-31 08:46:36 +00:00
ruInt32 = static_cast < sal_uInt32 >
( pSequence[0] & 0xFF
| ( pSequence[1] & 0xFF ) << 8
| ( pSequence[2] & 0xFF ) << 16
| ( pSequence[3] & 0xFF ) << 24 );
}
2000-11-13 12:38:03 +00:00
return *this;
}