libzypp  17.14.0
TmpPath.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_TMPPATH_H
13 #define ZYPP_TMPPATH_H
14 
15 #include <iosfwd>
16 
17 #include "zypp/Pathname.h"
18 #include "zypp/base/PtrTypes.h"
19 #include "zypp/ManagedFile.h"
20 
21 namespace 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 
69  Pathname
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 &
157  defaultPrefix();
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 &
201  defaultPrefix();
202  };
204 
205  } // namespace filesystem
206 
208  Pathname myTmpDir(); // implemented in ZYppImpl.cc
209 
210 } // namespace zypp
211 
212 #endif // ZYPP_TMPPATH_H