libzypp 17.31.23
TmpPath.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#ifndef ZYPP_CORE_FS_TMPPATH_H
13#define ZYPP_CORE_FS_TMPPATH_H
14
15#include <iosfwd>
16
17#include <zypp-core/Pathname.h>
18#include <zypp-core/base/PtrTypes.h>
19#include <zypp-core/ManagedFile.h>
20
21namespace zypp {
22 namespace filesystem {
23
25 //
26 // CLASS NAME : TmpPath
40 class TmpPath
41 {
42 public:
46 TmpPath();
47
51 explicit
52 TmpPath( const Pathname & tmpPath_r );
53
57 virtual
58 ~TmpPath();
59
64 explicit operator bool() const;
65
70 path() const;
71
75 operator Pathname() const
76 { return path(); }
77
81 bool autoCleanup() const;
82
86 void autoCleanup( bool yesno_r );
87
88 public:
93 static const Pathname &
95
96 protected:
97 class Impl;
99
100 };
102
106 inline std::ostream &
107 operator<<( std::ostream & str, const TmpPath & obj )
108 { return str << static_cast<Pathname>(obj); }
109
111
113 //
114 // CLASS NAME : TmpFile
127 class TmpFile : public TmpPath
128 {
129 public:
133 explicit
134 TmpFile( const Pathname & inParentDir_r = defaultLocation(),
135 const std::string & prefix_r = defaultPrefix() );
136
144 static TmpFile makeSibling( const Pathname & sibling_r );
145
150 static ManagedFile asManagedFile ();
151
152 public:
156 static const std::string &
158
159 };
161
163 //
164 // CLASS NAME : TmpDir
177 class TmpDir : public TmpPath
178 {
179 public:
183 explicit
184 TmpDir( const Pathname & inParentDir_r = defaultLocation(),
185 const std::string & prefix_r = defaultPrefix() );
186
194 static TmpDir makeSibling( const Pathname & sibling_r );
195
196 public:
200 static const std::string &
202 };
204
205 } // namespace filesystem
206
208 Pathname myTmpDir(); // implemented in ZYppImpl.cc
209
210} // namespace zypp
211
212#endif // ZYPP_CORE_FS_TMPPATH_H
RepoManager implementation.
Provide a new empty temporary directory and recursively delete it when no longer needed.
Definition: TmpPath.h:178
static const std::string & defaultPrefix()
Definition: TmpPath.cc:313
static TmpDir makeSibling(const Pathname &sibling_r)
Provide a new empty temporary directory as sibling.
Definition: TmpPath.cc:295
Provide a new empty temporary file and delete it when no longer needed.
Definition: TmpPath.h:128
static TmpFile makeSibling(const Pathname &sibling_r)
Provide a new empty temporary directory as sibling.
Definition: TmpPath.cc:218
static ManagedFile asManagedFile()
Create a temporary file and convert it to a automatically cleaned up ManagedFile.
Definition: TmpPath.cc:230
static const std::string & defaultPrefix()
Definition: TmpPath.cc:244
Automaticaly deletes files or directories when no longer needed.
Definition: TmpPath.h:41
static const Pathname & defaultLocation()
Definition: TmpPath.cc:157
RW_pointer< Impl > _impl
Definition: TmpPath.h:98
virtual ~TmpPath()
Dtor.
Definition: TmpPath.cc:125
Pathname path() const
Definition: TmpPath.cc:146
TmpPath()
Default Ctor.
Definition: TmpPath.cc:108
bool autoCleanup() const
Whether path is valid and deleted when the last reference drops.
Definition: TmpPath.cc:163
String related utilities and Regular expression matching.
std::ostream & operator<<(std::ostream &str, const Glob &obj)
Definition: Glob.cc:53
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2
Pathname myTmpDir()
Global access to the zypp.TMPDIR (created on demand, deleted when libzypp is unloaded)
Definition: ZYppImpl.cc:237
Wrapper for const correct access via Smart pointer types.
Definition: PtrTypes.h:286