libzypp  13.10.6
MediaDIR.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_MEDIA_MEDIADIR_H
13 #define ZYPP_MEDIA_MEDIADIR_H
14 
16 
17 namespace zypp {
18  namespace media {
19 
21  //
22  // CLASS NAME : MediaDIR
23 
28  class MediaDIR : public MediaHandler {
29 
30  protected:
31 
32  virtual void attachTo (bool next = false);
33  virtual void releaseFrom( const std::string & ejectDev );
34  virtual void getFile( const Pathname & filename ) const;
35  virtual void getDir( const Pathname & dirname, bool recurse_r ) const;
36  virtual void getDirInfo( std::list<std::string> & retlist,
37  const Pathname & dirname, bool dots = true ) const;
38  virtual void getDirInfo( filesystem::DirContent & retlist,
39  const Pathname & dirname, bool dots = true ) const;
40  virtual bool getDoesFileExist( const Pathname & filename ) const;
41 
42  public:
43 
44  MediaDIR( const Url & url_r,
45  const Pathname & attach_point_hint_r );
46 
47  virtual ~MediaDIR() { try { release(); } catch(...) {} }
48  };
49 
51 
52  } // namespace media
53 } // namespace zypp
54 
55 #endif // ZYPP_MEDIA_MEDIADIR_H
virtual void releaseFrom(const std::string &ejectDev)
Call concrete handler to release the media.
Definition: MediaDIR.cc:120
MediaDIR(const Url &url_r, const Pathname &attach_point_hint_r)
Definition: MediaDIR.cc:42
virtual void getDirInfo(std::list< std::string > &retlist, const Pathname &dirname, bool dots=true) const
Call concrete handler to provide a content list of directory on media via retlist.
Definition: MediaDIR.cc:158
virtual void getFile(const Pathname &filename) const
Call concrete handler to provide file below attach point.
Definition: MediaDIR.cc:133
Implementation class for DIR MediaHandler.
Definition: MediaDIR.h:28
Abstract base class for &#39;physical&#39; MediaHandler like MediaCD, etc.
Definition: MediaHandler.h:45
std::list< DirEntry > DirContent
Returned by readdir.
Definition: PathInfo.h:544
virtual bool getDoesFileExist(const Pathname &filename) const
check if a file exists
Definition: MediaDIR.cc:178
virtual void attachTo(bool next=false)
Call concrete handler to attach the media.
Definition: MediaDIR.cc:65
virtual ~MediaDIR()
Definition: MediaDIR.h:47
void release(const std::string &ejectDev="")
Use concrete handler to release the media.
virtual void getDir(const Pathname &dirname, bool recurse_r) const
Call concrete handler to provide directory content (not recursive!) below attach point.
Definition: MediaDIR.cc:145
Url manipulation class.
Definition: Url.h:87