libzypp 17.37.17
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>
20
21namespace zypp {
22 namespace filesystem {
23
25 //
26 // CLASS NAME : TmpPath
41 {
42 public:
46 TmpPath();
47
51 explicit
52 TmpPath( 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 &
94 defaultLocation();
95
96 protected:
97 class Impl;
99
100 };
101
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 ZYPP_API 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 );
148 static TmpFile makeSibling( const Pathname & sibling_r, unsigned mode );
149
154 static ManagedFile asManagedFile ();
155
160 static ManagedFile asManagedFile ( const Pathname & inParentDir_r, const std::string & prefix_r = defaultPrefix() );
161
162 public:
166 static const std::string &
168
169 };
170
171
173 //
174 // CLASS NAME : TmpDir
187 class ZYPP_API TmpDir : public TmpPath
188 {
189 public:
193 explicit
194 TmpDir( const Pathname & inParentDir_r = defaultLocation(),
195 const std::string & prefix_r = defaultPrefix() );
196
204 static TmpDir makeSibling( const Pathname & sibling_r );
208 static TmpDir makeSibling( const Pathname & sibling_r, unsigned mode );
209
210 public:
214 static const std::string &
216 };
217
218
219 } // namespace filesystem
220
223
224} // namespace zypp
225
226#endif // ZYPP_CORE_FS_TMPPATH_H
static const std::string & defaultPrefix()
Definition TmpPath.cc:332
TmpDir(const Pathname &inParentDir_r=defaultLocation(), const std::string &prefix_r=defaultPrefix())
Ctor.
Definition TmpPath.cc:276
static TmpDir makeSibling(const Pathname &sibling_r)
Provide a new empty temporary directory as sibling.
Definition TmpPath.cc:308
TmpFile(const Pathname &inParentDir_r=defaultLocation(), const std::string &prefix_r=defaultPrefix())
Ctor.
Definition TmpPath.cc:187
static TmpFile makeSibling(const Pathname &sibling_r)
Provide a new empty temporary directory as sibling.
Definition TmpPath.cc:222
static ManagedFile asManagedFile()
Create a temporary file and convert it to a automatically cleaned up ManagedFile.
Definition TmpPath.cc:240
static const std::string & defaultPrefix()
Definition TmpPath.cc:259
Automaticaly deletes files or directories when no longer needed.
Definition TmpPath.h:41
static const Pathname & defaultLocation()
Definition TmpPath.cc:163
RW_pointer< Impl > _impl
Definition TmpPath.h:98
Pathname path() const
Definition TmpPath.cc:152
TmpPath()
Default Ctor.
Definition TmpPath.cc:114
String related utilities and Regular expression matching.
Types and functions for filesystem operations.
Definition Glob.cc:24
std::ostream & operator<<(std::ostream &str, const Glob &obj)
Definition Glob.cc:53
Easy-to use interface to the ZYPP dependency resolver.
Pathname myTmpDir()
Global access to the zypp.TMPDIR (created on demand, deleted when libzypp is unloaded)
Definition TmpPath.cc:340
AutoDispose< const Pathname > ManagedFile
A Pathname plus associated cleanup code to be executed when path is no longer needed.
Definition ManagedFile.h:27
const Arch Arch_armv7hnl Arch_armv7nhl ZYPP_API
Definition Arch.h:247
Wrapper for const correct access via Smart pointer types.
Definition PtrTypes.h:293