2011-10-01 15:54:09 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-22 17:51:25 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
2011-10-01 15:54:09 +02:00
|
|
|
*
|
2012-06-22 17:51:25 +01:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-10-01 15:54:09 +02:00
|
|
|
*
|
2012-06-22 17:51:25 +01:00
|
|
|
* This file incorporates work covered by the following license notice:
|
2011-10-01 15:54:09 +02:00
|
|
|
*
|
2012-06-22 17:51:25 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2011-10-01 15:54:09 +02:00
|
|
|
|
|
|
|
#include "ucbhelper/fd_inputstream.hxx"
|
|
|
|
|
|
|
|
#include <rtl/alloc.h>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
using namespace com::sun::star::uno;
|
|
|
|
using namespace com::sun::star::lang;
|
|
|
|
using namespace com::sun::star::io;
|
|
|
|
|
|
|
|
namespace ucbhelper
|
|
|
|
{
|
2013-06-04 11:27:18 +01:00
|
|
|
FdInputStream::FdInputStream( oslFileHandle tmpfl )
|
2013-06-01 17:16:49 +00:00
|
|
|
: m_tmpfl(tmpfl)
|
|
|
|
, m_nLength( 0 )
|
2011-10-01 15:54:09 +02:00
|
|
|
{
|
2013-06-01 17:16:49 +00:00
|
|
|
if ( !m_tmpfl )
|
|
|
|
osl_createTempFile( NULL, &m_tmpfl, NULL );
|
|
|
|
OSL_ENSURE( m_tmpfl, "input stream without tempfile!" );
|
|
|
|
|
|
|
|
if ( osl_setFilePos( m_tmpfl, osl_Pos_End, 0 ) == osl_File_E_None )
|
|
|
|
{
|
|
|
|
sal_uInt64 nFileSize = 0;
|
|
|
|
if ( osl_getFilePos( m_tmpfl, &nFileSize ) == osl_File_E_None )
|
|
|
|
m_nLength = nFileSize;
|
2013-06-04 11:27:18 +01:00
|
|
|
oslFileError rc = osl_setFilePos( m_tmpfl, osl_Pos_Absolut, 0 );
|
|
|
|
SAL_WARN_IF(rc != osl_File_E_None, "ucbhelper", "osl_setFilePos failed");
|
2013-06-01 17:16:49 +00:00
|
|
|
}
|
2011-10-01 15:54:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
FdInputStream::~FdInputStream()
|
|
|
|
{
|
|
|
|
if ( 0 != m_tmpfl)
|
2013-06-01 17:16:49 +00:00
|
|
|
osl_closeFile(m_tmpfl);
|
2011-10-01 15:54:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sal_Int32 SAL_CALL FdInputStream::readBytes(Sequence< sal_Int8 >& aData,
|
|
|
|
sal_Int32 nBytesToRead)
|
|
|
|
throw(NotConnectedException,
|
|
|
|
BufferSizeExceededException,
|
|
|
|
IOException,
|
2014-02-25 21:31:58 +01:00
|
|
|
RuntimeException, std::exception)
|
2011-10-01 15:54:09 +02:00
|
|
|
{
|
|
|
|
osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
|
2013-06-01 17:16:49 +00:00
|
|
|
sal_uInt64 nBeforePos( 0 );
|
|
|
|
sal_uInt64 nBytesRequested( nBytesToRead );
|
|
|
|
sal_uInt64 nBytesRead( 0 );
|
|
|
|
|
|
|
|
osl_getFilePos( m_tmpfl, &nBeforePos );
|
|
|
|
|
|
|
|
if ( 0 == ( nBytesRequested = std::min< sal_uInt64 >( m_nLength - nBeforePos, nBytesRequested ) ) )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ( 0 <= nBytesToRead && aData.getLength() < nBytesToRead )
|
|
|
|
aData.realloc( nBytesToRead );
|
2011-10-01 15:54:09 +02:00
|
|
|
|
2013-06-01 17:16:49 +00:00
|
|
|
if ( osl_readFile( m_tmpfl, aData.getArray(), nBytesRequested, &nBytesRead ) != osl_File_E_None )
|
2011-10-01 15:54:09 +02:00
|
|
|
throw IOException();
|
|
|
|
|
2013-06-01 17:16:49 +00:00
|
|
|
return sal_Int32( nBytesRead );
|
2011-10-01 15:54:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sal_Int32 SAL_CALL FdInputStream::readSomeBytes( Sequence< sal_Int8 >& aData,
|
|
|
|
sal_Int32 nMaxBytesToRead )
|
|
|
|
throw( NotConnectedException,
|
|
|
|
BufferSizeExceededException,
|
|
|
|
IOException,
|
2014-02-25 21:31:58 +01:00
|
|
|
RuntimeException, std::exception)
|
2011-10-01 15:54:09 +02:00
|
|
|
{
|
|
|
|
return readBytes(aData,nMaxBytesToRead);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SAL_CALL FdInputStream::skipBytes(sal_Int32 nBytesToSkip)
|
|
|
|
throw(NotConnectedException,
|
|
|
|
BufferSizeExceededException,
|
|
|
|
IOException,
|
2014-02-25 21:31:58 +01:00
|
|
|
RuntimeException, std::exception)
|
2011-10-01 15:54:09 +02:00
|
|
|
{
|
|
|
|
osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
if(!m_tmpfl)
|
|
|
|
throw IOException();
|
|
|
|
|
2013-06-04 11:27:18 +01:00
|
|
|
oslFileError rc = osl_setFilePos( m_tmpfl, osl_Pos_Current, nBytesToSkip );
|
|
|
|
SAL_WARN_IF(rc != osl_File_E_None, "ucbhelper", "osl_setFilePos failed");
|
2011-10-01 15:54:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sal_Int32 SAL_CALL FdInputStream::available(void)
|
|
|
|
throw(NotConnectedException,
|
|
|
|
IOException,
|
2014-02-25 21:31:58 +01:00
|
|
|
RuntimeException, std::exception)
|
2011-10-01 15:54:09 +02:00
|
|
|
{
|
|
|
|
return sal::static_int_cast<sal_Int32>(m_nLength - getPosition());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SAL_CALL FdInputStream::closeInput(void)
|
|
|
|
throw(NotConnectedException,
|
|
|
|
IOException,
|
2014-02-25 21:31:58 +01:00
|
|
|
RuntimeException, std::exception)
|
2011-10-01 15:54:09 +02:00
|
|
|
{
|
|
|
|
osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
if(m_tmpfl)
|
2013-06-04 11:27:18 +01:00
|
|
|
osl_closeFile(m_tmpfl),m_tmpfl = 0;
|
2011-10-01 15:54:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SAL_CALL FdInputStream::seek(sal_Int64 location)
|
|
|
|
throw( IllegalArgumentException,
|
|
|
|
IOException,
|
2014-02-25 21:31:58 +01:00
|
|
|
RuntimeException, std::exception )
|
2011-10-01 15:54:09 +02:00
|
|
|
{
|
|
|
|
osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
if(!m_tmpfl)
|
|
|
|
throw IOException();
|
|
|
|
|
2013-06-04 11:27:18 +01:00
|
|
|
oslFileError rc = osl_setFilePos( m_tmpfl, osl_Pos_Absolut, location );
|
|
|
|
SAL_WARN_IF(rc != osl_File_E_None, "ucbhelper", "osl_setFilePos failed");
|
2011-10-01 15:54:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sal_Int64 SAL_CALL
|
|
|
|
FdInputStream::getPosition(
|
|
|
|
void )
|
|
|
|
throw( IOException,
|
2014-02-25 21:31:58 +01:00
|
|
|
RuntimeException, std::exception )
|
2011-10-01 15:54:09 +02:00
|
|
|
{
|
|
|
|
osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
if(!m_tmpfl)
|
|
|
|
throw IOException();
|
|
|
|
|
2013-06-01 17:16:49 +00:00
|
|
|
sal_uInt64 nFilePos = 0;
|
|
|
|
osl_getFilePos( m_tmpfl, &nFilePos );
|
|
|
|
return nFilePos;
|
2011-10-01 15:54:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sal_Int64 SAL_CALL FdInputStream::getLength(
|
|
|
|
void
|
|
|
|
) throw(
|
2014-02-25 21:31:58 +01:00
|
|
|
IOException,RuntimeException, std::exception
|
2011-10-01 15:54:09 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
return m_nLength;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|