Line data Source code
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 : #ifndef _TOOLS_TEMPFILE_HXX
20 : #define _TOOLS_TEMPFILE_HXX
21 :
22 : #include <rtl/ustring.hxx>
23 : #include "tools/toolsdllapi.h"
24 :
25 : struct TempFile_Impl;
26 : class TOOLS_DLLPUBLIC TempFile
27 : {
28 : TempFile_Impl* pImp;
29 : bool bKillingFileEnabled;
30 :
31 : public:
32 : /** Create a temporary file in the default tempfile folder. */
33 : TempFile();
34 :
35 : /** Create a temporary file in the default tempfile folder; its name starts
36 : with some given characters followed by a counter ( example:
37 : rLeadingChars="abc" means "abc0", "abc1" and so on, depending on
38 : existing files in that folder ).
39 :
40 : The extension string may be f.e. ".txt" or "", if no extension string is
41 : given, ".tmp" is used.
42 : */
43 : TempFile( const OUString& rLeadingChars, const OUString* pExtension=NULL );
44 :
45 : /** TempFile will be removed from disk in dtor if EnableKillingTempFile was
46 : called before. TempDirs will be removed recursively in that case. */
47 : ~TempFile();
48 :
49 : bool IsValid() const;
50 :
51 : /** Returns the real name of the tempfile in file URL scheme. */
52 : OUString GetName() const;
53 :
54 : /** If enabled the file will be removed from disk when the dtor is called
55 : (default is not enabled) */
56 0 : void EnableKillingFile( bool bEnable=true ) { bKillingFileEnabled = bEnable; }
57 :
58 : bool IsKillingFileEnabled() const { return bKillingFileEnabled; }
59 :
60 : /** Only create a name for a temporary file that would be valid at that moment. */
61 : static OUString CreateTempName();
62 : };
63 :
64 : #endif
65 :
66 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|