Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / ucb / source / ucp / file / filstr.hxx
blobacef94aa8c6d06dd0de76023f8169e2b1e62865a
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 .
19 #pragma once
21 #include <rtl/ustring.hxx>
22 #include <com/sun/star/io/XSeekable.hpp>
23 #include <com/sun/star/io/XTruncate.hpp>
24 #include <com/sun/star/io/XInputStream.hpp>
25 #include <com/sun/star/io/XOutputStream.hpp>
26 #include <com/sun/star/io/XStream.hpp>
27 #include <com/sun/star/io/XAsyncOutputMonitor.hpp>
28 #include <com/sun/star/lang/XUnoTunnel.hpp>
29 #include <comphelper/bytereader.hxx>
30 #include <cppuhelper/implbase.hxx>
31 #include <mutex>
33 #include "filrec.hxx"
35 namespace fileaccess {
37 // forward:
38 class TaskManager;
40 class XStream_impl : public cppu::WeakImplHelper<
41 css::io::XStream,
42 css::io::XSeekable,
43 css::io::XInputStream,
44 css::io::XOutputStream,
45 css::io::XTruncate,
46 css::io::XAsyncOutputMonitor >,
47 public comphelper::ByteReader
50 public:
52 XStream_impl( const OUString& aUncPath, bool bLock );
54 /**
55 * Returns an error code as given by filerror.hxx
58 sal_Int32 CtorSuccess() const { return m_nErrorCode;}
59 sal_Int32 getMinorError() const { return m_nMinorErrorCode;}
61 virtual ~XStream_impl() override;
63 // XStream
65 virtual css::uno::Reference< css::io::XInputStream > SAL_CALL
66 getInputStream() override;
68 virtual css::uno::Reference< css::io::XOutputStream > SAL_CALL
69 getOutputStream() override;
72 // XTruncate
74 virtual void SAL_CALL truncate() override;
77 // XInputStream
79 sal_Int32 SAL_CALL
80 readBytes(
81 css::uno::Sequence< sal_Int8 >& aData,
82 sal_Int32 nBytesToRead ) override;
84 sal_Int32 SAL_CALL
85 readSomeBytes(
86 css::uno::Sequence< sal_Int8 >& aData,
87 sal_Int32 nMaxBytesToRead ) override;
90 void SAL_CALL
91 skipBytes( sal_Int32 nBytesToSkip ) override;
93 sal_Int32 SAL_CALL
94 available() override;
96 void SAL_CALL
97 closeInput() override;
99 // XSeekable
101 void SAL_CALL
102 seek( sal_Int64 location ) override;
104 sal_Int64 SAL_CALL
105 getPosition() override;
107 sal_Int64 SAL_CALL
108 getLength() override;
111 // XOutputStream
113 void SAL_CALL
114 writeBytes( const css::uno::Sequence< sal_Int8 >& aData ) override;
117 void SAL_CALL
118 flush() override;
121 void SAL_CALL
122 closeOutput() override;
124 virtual void SAL_CALL waitForCompletion() override;
126 // utl::ByteReader
127 virtual sal_Int32
128 readSomeBytes(
129 sal_Int8* aData,
130 sal_Int32 nMaxBytesToRead ) override;
132 private:
134 std::mutex m_aMutex;
135 bool m_bInputStreamCalled,m_bOutputStreamCalled;
136 bool m_nIsOpen;
138 ReconnectingFile m_aFile;
140 sal_Int32 m_nErrorCode;
141 sal_Int32 m_nMinorErrorCode;
143 // Implementation methods
145 /// @throws css::io::NotConnectedException
146 /// @throws css::io::IOException
147 /// @throws css::uno::RuntimeException
148 void
149 closeStream();
153 } // end namespace XStream_impl
155 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */