Bump version to 6.4.7.2.M8
[LibreOffice.git] / ucbhelper / source / provider / fd_inputstream.cxx
blob795c2dcaea7c8227505c0415f4c2d9379d8d2fa6
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <ucbhelper/fd_inputstream.hxx>
22 #include <com/sun/star/io/IOException.hpp>
23 #include <osl/diagnose.h>
24 #include <sal/log.hxx>
25 #include <algorithm>
27 using namespace com::sun::star::uno;
28 using namespace com::sun::star::lang;
29 using namespace com::sun::star::io;
31 namespace ucbhelper
33 FdInputStream::FdInputStream( oslFileHandle tmpfl )
34 : m_tmpfl(tmpfl)
35 , m_nLength( 0 )
37 if ( !m_tmpfl )
38 osl_createTempFile( nullptr, &m_tmpfl, nullptr );
39 OSL_ENSURE( m_tmpfl, "input stream without tempfile!" );
41 if ( osl_setFilePos( m_tmpfl, osl_Pos_End, 0 ) == osl_File_E_None )
43 sal_uInt64 nFileSize = 0;
44 if ( osl_getFilePos( m_tmpfl, &nFileSize ) == osl_File_E_None )
45 m_nLength = nFileSize;
46 oslFileError rc = osl_setFilePos( m_tmpfl, osl_Pos_Absolut, 0 );
47 SAL_WARN_IF(rc != osl_File_E_None, "ucbhelper", "osl_setFilePos failed");
51 FdInputStream::~FdInputStream()
53 if ( nullptr != m_tmpfl)
54 osl_closeFile(m_tmpfl);
57 sal_Int32 SAL_CALL FdInputStream::readBytes(Sequence< sal_Int8 >& aData,
58 sal_Int32 nBytesToRead)
60 osl::MutexGuard aGuard(m_aMutex);
62 sal_uInt64 nBeforePos( 0 );
63 sal_uInt64 nBytesRequested( nBytesToRead );
64 sal_uInt64 nBytesRead( 0 );
66 osl_getFilePos( m_tmpfl, &nBeforePos );
68 if ( 0 == ( nBytesRequested = std::min< sal_uInt64 >( m_nLength - nBeforePos, nBytesRequested ) ) )
69 return 0;
71 if ( 0 <= nBytesToRead && aData.getLength() < nBytesToRead )
72 aData.realloc( nBytesToRead );
74 if ( osl_readFile( m_tmpfl, aData.getArray(), nBytesRequested, &nBytesRead ) != osl_File_E_None )
75 throw IOException();
77 return sal_Int32( nBytesRead );
81 sal_Int32 SAL_CALL FdInputStream::readSomeBytes( Sequence< sal_Int8 >& aData,
82 sal_Int32 nMaxBytesToRead )
84 return readBytes(aData,nMaxBytesToRead);
88 void SAL_CALL FdInputStream::skipBytes(sal_Int32 nBytesToSkip)
90 osl::MutexGuard aGuard(m_aMutex);
91 if(!m_tmpfl)
92 throw IOException();
94 oslFileError rc = osl_setFilePos( m_tmpfl, osl_Pos_Current, nBytesToSkip );
95 SAL_WARN_IF(rc != osl_File_E_None, "ucbhelper", "osl_setFilePos failed");
99 sal_Int32 SAL_CALL FdInputStream::available()
101 return std::min<sal_Int64>(SAL_MAX_INT32, m_nLength - getPosition());
105 void SAL_CALL FdInputStream::closeInput()
107 osl::MutexGuard aGuard(m_aMutex);
108 if(m_tmpfl)
110 osl_closeFile(m_tmpfl);
111 m_tmpfl = nullptr;
116 void SAL_CALL FdInputStream::seek(sal_Int64 location)
118 osl::MutexGuard aGuard(m_aMutex);
119 if(!m_tmpfl)
120 throw IOException();
122 oslFileError rc = osl_setFilePos( m_tmpfl, osl_Pos_Absolut, location );
123 SAL_WARN_IF(rc != osl_File_E_None, "ucbhelper", "osl_setFilePos failed");
127 sal_Int64 SAL_CALL
128 FdInputStream::getPosition()
130 osl::MutexGuard aGuard(m_aMutex);
131 if(!m_tmpfl)
132 throw IOException();
134 sal_uInt64 nFilePos = 0;
135 osl_getFilePos( m_tmpfl, &nFilePos );
136 return nFilePos;
140 sal_Int64 SAL_CALL FdInputStream::getLength()
142 return m_nLength;
146 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */