1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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>
27 using namespace com::sun::star::uno
;
28 using namespace com::sun::star::lang
;
29 using namespace com::sun::star::io
;
33 FdInputStream::FdInputStream( oslFileHandle 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
) ) )
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
)
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
);
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
);
110 osl_closeFile(m_tmpfl
);
116 void SAL_CALL
FdInputStream::seek(sal_Int64 location
)
118 osl::MutexGuard
aGuard(m_aMutex
);
122 oslFileError rc
= osl_setFilePos( m_tmpfl
, osl_Pos_Absolut
, location
);
123 SAL_WARN_IF(rc
!= osl_File_E_None
, "ucbhelper", "osl_setFilePos failed");
128 FdInputStream::getPosition()
130 osl::MutexGuard
aGuard(m_aMutex
);
134 sal_uInt64 nFilePos
= 0;
135 osl_getFilePos( m_tmpfl
, &nFilePos
);
140 sal_Int64 SAL_CALL
FdInputStream::getLength()
146 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */