Bump version to 5.0-14
[LibreOffice.git] / package / source / xstor / selfterminatefilestream.cxx
blob6ba6e6845b522035fcd52341ca47107839286b29
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 <com/sun/star/ucb/SimpleFileAccess.hpp>
22 #include "selfterminatefilestream.hxx"
23 #include <comphelper/processfactory.hxx>
25 using namespace ::com::sun::star;
27 OSelfTerminateFileStream::OSelfTerminateFileStream( const uno::Reference< uno::XComponentContext > xContext, const OUString& aURL )
28 : m_aURL( aURL )
30 uno::Reference< uno::XComponentContext > xOwnContext = xContext;
31 if ( !xOwnContext.is() )
32 xOwnContext.set( ::comphelper::getProcessComponentContext(), uno::UNO_SET_THROW );
34 // IMPORTANT: The implementation is based on idea that m_xFileAccess, m_xInputStream and m_xSeekable are always set
35 // otherwise an exception is thrown in constructor
37 m_xFileAccess.set( ucb::SimpleFileAccess::create(xOwnContext) );
39 m_xInputStream.set( m_xFileAccess->openFileRead( aURL ), uno::UNO_SET_THROW );
40 m_xSeekable.set( m_xInputStream, uno::UNO_QUERY_THROW );
43 OSelfTerminateFileStream::~OSelfTerminateFileStream()
45 CloseStreamDeleteFile();
48 void OSelfTerminateFileStream::CloseStreamDeleteFile()
50 try
52 m_xInputStream->closeInput();
54 catch( uno::Exception& )
57 try
59 m_xFileAccess->kill( m_aURL );
61 catch( uno::Exception& )
65 sal_Int32 SAL_CALL OSelfTerminateFileStream::readBytes( uno::Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead )
66 throw ( io::NotConnectedException,
67 io::BufferSizeExceededException,
68 io::IOException,
69 uno::RuntimeException, std::exception )
71 return m_xInputStream->readBytes( aData, nBytesToRead );
74 sal_Int32 SAL_CALL OSelfTerminateFileStream::readSomeBytes( uno::Sequence< sal_Int8 >& aData, sal_Int32 nMaxBytesToRead )
75 throw ( io::NotConnectedException,
76 io::BufferSizeExceededException,
77 io::IOException,
78 uno::RuntimeException, std::exception )
80 return m_xInputStream->readSomeBytes( aData, nMaxBytesToRead );
83 void SAL_CALL OSelfTerminateFileStream::skipBytes( sal_Int32 nBytesToSkip )
84 throw ( io::NotConnectedException,
85 io::BufferSizeExceededException,
86 io::IOException,
87 uno::RuntimeException, std::exception )
89 return m_xInputStream->skipBytes( nBytesToSkip );
92 sal_Int32 SAL_CALL OSelfTerminateFileStream::available( )
93 throw ( io::NotConnectedException,
94 io::IOException,
95 uno::RuntimeException, std::exception )
97 return m_xInputStream->available();
100 void SAL_CALL OSelfTerminateFileStream::closeInput( )
101 throw ( io::NotConnectedException,
102 io::IOException,
103 uno::RuntimeException, std::exception )
105 CloseStreamDeleteFile();
108 void SAL_CALL OSelfTerminateFileStream::seek( sal_Int64 location )
109 throw ( lang::IllegalArgumentException,
110 io::IOException,
111 uno::RuntimeException, std::exception )
113 m_xSeekable->seek( location );
116 sal_Int64 SAL_CALL OSelfTerminateFileStream::getPosition()
117 throw ( io::IOException,
118 uno::RuntimeException, std::exception)
120 return m_xSeekable->getPosition();
123 sal_Int64 SAL_CALL OSelfTerminateFileStream::getLength()
124 throw ( io::IOException,
125 uno::RuntimeException, std::exception )
127 return m_xSeekable->getLength();
130 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */