Coverage Report

Created: 2025-12-31 10:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/include/unotools/tempfile.hxx
Line
Count
Source
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
 * This file is part of the LibreOffice project.
4
 *
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/.
8
 *
9
 * This file incorporates work covered by the following license notice:
10
 *
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 .
18
 */
19
#pragma once
20
21
#include <unotools/unotoolsdllapi.h>
22
#include <com/sun/star/io/XInputStream.hpp>
23
#include <com/sun/star/io/XOutputStream.hpp>
24
#include <com/sun/star/io/XStream.hpp>
25
#include <com/sun/star/io/XSeekable.hpp>
26
#include <com/sun/star/io/XTruncate.hpp>
27
#include <comphelper/bytereader.hxx>
28
#include <cppuhelper/implbase.hxx>
29
#include <tools/stream.hxx>
30
#include <memory>
31
#include <mutex>
32
#include <optional>
33
34
namespace utl
35
{
36
37
38
/**
39
  This is the "fast" temp file. Different OSes have different ideas how this should work, so this
40
  class presents an interface that is fast across Windows and Unix (which differ in how they want
41
  temp files to work).
42
  The key point is that such a temporary file is only a readable/writeable stream, and does not have
43
  a filename, or a location in the filesystem hierarchy.
44
  If you need a name or a URL, you should use TempFileNamed, which is slower, but creates an actual
45
  file in the filesystem.
46
*/
47
class UNOTOOLS_DLLPUBLIC TempFileFast
48
{
49
    std::unique_ptr<SvFileStream> mxStream;
50
51
public:
52
                    TempFileFast();
53
                    TempFileFast(TempFileFast && other) noexcept;
54
                    ~TempFileFast();
55
56
                    /**
57
                    Returns a stream to the tempfiles data; the stream is owned by the tempfile object, so you have to keep this
58
                    alive as long as you want to use the stream.
59
                    */
60
    SvStream*       GetStream( StreamMode eMode );
61
62
                    /**
63
                    Close and destroy the owned stream object if any.
64
                    */
65
    void            CloseStream();
66
67
};
68
69
/**
70
Only create a "physical" file name for a temporary file that would be valid at that moment.
71
Should only be used for 3rd party code with a file name interface that wants to create the file by itself.
72
If you want to convert file name into a URL, always use class LocalFileHelper, but never use any
73
conversion functions of osl.
74
*/
75
UNOTOOLS_DLLPUBLIC OUString CreateTempName();
76
77
UNOTOOLS_DLLPUBLIC OUString CreateTempURL( const OUString* pParent=nullptr, bool bDirectory=false );
78
79
/**
80
Same as above; additionally the name starts with some given characters followed by a counter ( example:
81
rLeadingChars="abc" means "abc0","abc1" and so on, depending on existing files in the folder ).
82
The extension string may be f.e. ".txt" or "", if no extension string is given, ".tmp" is used
83
    @param  _bStartWithZero If set to false names will be generated like "abc","abc0","abc1"
84
    @param  bCreateParentDirs If rLeadingChars contains a slash, this will create the required
85
            parent directories.
86
*/
87
UNOTOOLS_DLLPUBLIC OUString CreateTempURL( std::u16string_view rLeadingChars, bool _bStartWithZero=true, std::u16string_view pExtension={},
88
                          const OUString* pParent=nullptr, bool bCreateParentDirs=false );
89
90
/**
91
The TempNameBaseDirectory is a subfolder in the folder that is passed as a "physical" file name in the
92
SetTempNameBaseDirectory method.
93
This subfolder will be used if a TempFile or TempName is created without a parent name or a parent name
94
that does not belong to the local file system.
95
The caller of the SetTempNameBase is responsible for deleting this folder and all temporary files in it.
96
The return value of both methods is the complete "physical" name of the tempname base folder.
97
It is not a URL because all URLs must be "UCB compatible", so there may be no suitable URL at all.
98
*/
99
UNOTOOLS_DLLPUBLIC OUString SetTempNameBaseDirectory( const OUString &rBaseName );
100
101
// Return the URL of the temp directory (the one set with SetTempNameBaseDirectory or the
102
// default tempfile folder):
103
UNOTOOLS_DLLPUBLIC OUString GetTempNameBaseDirectory();
104
105
/**
106
    The class TempFile gives access to temporary files in the local file system. Sometimes they are needed because a 3rd party
107
    code has a file name based interface, or some file access has to be done locally without transferring tons of bytes to or
108
    from a remote system.
109
    Creating a UCB content on a TempFile is only possible if a UCP for the local file system is present.
110
    TempFiles can always be accessed by SvFileStreams or Sot/SvStorages using the "physical" file name ( not the URL, because
111
    this may be a non-file URL, see below ), but if a UCB content can be created, it is also possible to take the URL and use
112
    the UCB helper classes for streams. For convenience use UcbStreamHelper.
113
    A Tempfile always has a "physical" file name ( a file name in the local computers host notation ) but it has a
114
    "UCB compatible" URL only if a UCP for the local file system exists. This URL may have its own URL scheme
115
    ( not necessarily "file://" ! ). The TempFile class methods take this into account, but other simple conversions like
116
    the osl functions do not.
117
    So it is a potential error to convert between the filename and the URL of a TempFile object using functions or methods
118
    outside this class.
119
*/
120
class UNOTOOLS_DLLPUBLIC TempFileNamed
121
{
122
    OUString    aName;
123
    std::unique_ptr<SvStream>
124
                pStream;
125
    bool        bIsDirectory;
126
    bool        bKillingFileEnabled;
127
128
public:
129
                    /**
130
                    Create a temporary file or directory, in the default tempfile folder or if possible in a given folder.
131
                    This given folder ( the "parent" parameter ( if not NULL ) ) must be a "UCB compatible" URL.
132
                    The temporary object is created in the local file system, even if there is no UCB that can access it.
133
                    If the given folder is part of the local file system, the TempFile is created in this folder.
134
                    */
135
                    TempFileNamed( const OUString* pParent=nullptr, bool bDirectory=false );
136
137
                    /**
138
                    Same as above; additionally the name starts with some given characters followed by a counter ( example:
139
                    rLeadingChars="abc" means "abc0","abc1" and so on, depending on existing files in the folder ).
140
                    The extension string may be f.e. ".txt" or "", if no extension string is given, ".tmp" is used
141
                        @param  _bStartWithZero If set to false names will be generated like "abc","abc0","abc1"
142
                        @param  bCreateParentDirs If rLeadingChars contains a slash, this will create the required
143
                                parent directories.
144
                    */
145
                    TempFileNamed( std::u16string_view rLeadingChars, bool _bStartWithZero=true, std::u16string_view pExtension={},
146
                              const OUString* pParent = nullptr, bool bCreateParentDirs=false );
147
148
                    TempFileNamed(TempFileNamed && other) noexcept;
149
150
                    /**
151
                    TempFile will be removed from disk in dtor if EnableKillingFile(true) was called before.
152
                    Temporary directories will be removed recursively in that case.
153
                    */
154
                    ~TempFileNamed();
155
156
                    /**
157
                    Returns sal_True if it has a valid file name.
158
                    */
159
    bool            IsValid() const;
160
161
                    /**
162
                    Returns the URL of the tempfile object.
163
                    If you want to have the system path file name, use the GetFileName() method of this object
164
                    */
165
    OUString const & GetURL() const;
166
167
                    /**
168
                    Returns the system path name of the tempfile in host notation
169
                    If you want to have the URL, use the GetURL() method of this object.
170
                    */
171
    OUString        GetFileName() const;
172
173
                    /**
174
                    Returns a stream to the tempfiles data; the stream is owned by the tempfile object, so you have to keep this
175
                    alive as long as you want to use the stream. If the TempFile object is destroyed, it also destroys the
176
                    stream object, the underlying file is only deleted if EnableKillingFile(true) has been called before!
177
                    */
178
    SvStream*       GetStream( StreamMode eMode );
179
180
                    /**
181
                    Let the TempFile object close and destroy the owned stream object if any.
182
                    */
183
    void            CloseStream();
184
185
                    /**
186
                    If enabled the file will be removed from disk when the dtor is called ( default is not enabled )
187
                    */
188
    void            EnableKillingFile( bool bEnable=true )
189
511k
                    { bKillingFileEnabled = bEnable; }
190
191
};
192
193
194
typedef ::cppu::WeakImplHelper<
195
     css::io::XStream
196
    , css::io::XSeekable
197
    , css::io::XInputStream
198
    , css::io::XOutputStream
199
    , css::io::XTruncate> TempFileFastService_Base;
200
class UNOTOOLS_DLLPUBLIC TempFileFastService final : public TempFileFastService_Base,
201
    public comphelper::ByteReader, public comphelper::ByteWriter
202
{
203
    std::optional<utl::TempFileFast> mpTempFile;
204
    std::mutex maMutex;
205
    SvStream* mpStream;
206
    bool mbInClosed;
207
    bool mbOutClosed;
208
209
    SAL_DLLPRIVATE void checkError () const;
210
    SAL_DLLPRIVATE void checkConnected ();
211
212
public:
213
    explicit TempFileFastService ();
214
    SAL_DLLPRIVATE virtual ~TempFileFastService () override;
215
216
    // XInputStream
217
    virtual ::sal_Int32 SAL_CALL readBytes( css::uno::Sequence< ::sal_Int8 >& aData, ::sal_Int32 nBytesToRead ) override;
218
    SAL_DLLPRIVATE virtual ::sal_Int32 SAL_CALL readSomeBytes( css::uno::Sequence< ::sal_Int8 >& aData, ::sal_Int32 nMaxBytesToRead ) override;
219
    SAL_DLLPRIVATE virtual void SAL_CALL skipBytes( ::sal_Int32 nBytesToSkip ) override;
220
    SAL_DLLPRIVATE virtual ::sal_Int32 SAL_CALL available(  ) override;
221
    SAL_DLLPRIVATE virtual void SAL_CALL closeInput(  ) override;
222
    // XOutputStream
223
    virtual void SAL_CALL writeBytes( const css::uno::Sequence< ::sal_Int8 >& aData ) override;
224
    SAL_DLLPRIVATE virtual void SAL_CALL flush(  ) override;
225
    virtual void SAL_CALL closeOutput(  ) override;
226
    // XSeekable
227
    virtual void SAL_CALL seek( sal_Int64 location ) override;
228
    virtual sal_Int64 SAL_CALL getPosition(  ) override;
229
    SAL_DLLPRIVATE virtual sal_Int64 SAL_CALL getLength(  ) override;
230
    // XStream
231
    virtual css::uno::Reference< css::io::XInputStream > SAL_CALL getInputStream(  ) override;
232
    virtual css::uno::Reference< css::io::XOutputStream > SAL_CALL getOutputStream(  ) override;
233
    // XTruncate
234
    SAL_DLLPRIVATE virtual void SAL_CALL truncate() override;
235
236
    // comphelper::ByteReader
237
    virtual sal_Int32 readSomeBytes(sal_Int8* aData, sal_Int32 nBytesToRead) override;
238
    // comphelper::ByteWriter
239
    virtual void writeBytes(const sal_Int8* aData, sal_Int32 nBytesToWrite) override;
240
241
};
242
243
244
}
245
246
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */