libzypp 17.37.17
MediaSetAccess.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
9
10#ifndef ZYPP_MediaSetAccess_H
11#define ZYPP_MediaSetAccess_H
12
13#include <iosfwd>
14#include <string>
15#include <vector>
16#include <zypp/base/Function.h>
17
20#include <zypp/base/Flags.h>
21#include <zypp/base/PtrTypes.h>
23#include <zypp/Pathname.h>
24#include <zypp/CheckSum.h>
25#include <zypp-core/OnMediaLocation>
26#include <zypp/ManagedFile.h>
28
30namespace zypp
31{
32
34
36 //
37 // CLASS NAME : MediaSetAccess
38 //
82 {
83 friend std::ostream & operator<<( std::ostream & str, const MediaSetAccess & obj );
84
85 public:
93 MediaSetAccess( Url url, Pathname prefered_attach_point = "" );
95 MediaSetAccess( std::string label_r, Url url, Pathname prefered_attach_point = "" );
96
104 MediaSetAccess( MirroredOrigin origin, Pathname prefered_attach_point = "" );
106 MediaSetAccess( std::string label_r, MirroredOrigin origin, Pathname prefered_attach_point = "" );
107
108
113
114 ~MediaSetAccess() override;
115
119 void setVerifier( unsigned media_nr, const media::MediaVerifierRef& verifier );
120
124 const std::string & label() const;
125
129 void setLabel( const std::string & label_r );
130
140
151 void precacheFiles(const std::vector<OnMediaLocation> &files);
152
180 Pathname provideFile( const OnMediaLocation & resource, ProvideFileOptions options = PROVIDE_DEFAULT );
181
185 ZYPP_DEPRECATED Pathname provideFile( const OnMediaLocation & resource, ProvideFileOptions options, const Pathname &deltafile );
186
207 Pathname provideFile(const Pathname & file, unsigned media_nr = 1, ProvideFileOptions options = PROVIDE_DEFAULT );
208
216 Pathname provideOptionalFile( const Pathname & file, unsigned media_nr = 1 );
217
235 static ManagedFile provideFileFromUrl( const Url & file_url, ProvideFileOptions options = PROVIDE_DEFAULT );
236
244 static ManagedFile provideOptionalFileFromUrl( const Url & file_url );
245
252 void releaseFile( const OnMediaLocation &resource );
253
254
262 void releaseFile(const Pathname & file, unsigned media_nr = 1 );
263
280 {
284 : _media( media_r )
285 , _loc( loc_r )
286 {}
288 { _media.releaseFile( _loc ); }
289 private:
292 };
293
311 Pathname provideDir(const Pathname & dir, bool recursive, unsigned media_nr = 1, ProvideFileOptions options = PROVIDE_DEFAULT );
312
327 bool doesFileExist(const Pathname & file, unsigned media_nr = 1 );
328
332 void dirInfo( filesystem::DirContent &retlist, const Pathname &dirname,
333 bool dots = true, unsigned media_nr = 1 );
334
340 void release();
341
356 static Url rewriteUrl (const Url & url_r, const media::MediaNr medianr);
357
358 protected:
374 Pathname provideFileInternal( const OnMediaLocation &resource, ProvideFileOptions options );
375
376 using ProvideOperation = function<void (media::MediaAccessId, const OnMediaLocation &)>;
377
378 void provide( const ProvideOperation& op, const OnMediaLocation &resource, ProvideFileOptions options );
379
381 std::ostream & dumpOn( std::ostream & str ) const override;
382
383 private:
384 class Impl;
386 std::unique_ptr<Impl> _pimpl;
387 };
388
389 ZYPP_DECLARE_OPERATORS_FOR_FLAGS(MediaSetAccess::ProvideFileOptions);
390
392 inline std::ostream & operator<<( std::ostream & str, const MediaSetAccess & obj )
393 { return obj.dumpOn( str ); }
394
395
396} // namespace zypp
398#endif // ZYPP_SOURCE_MediaSetAccess_H
Media access layer responsible for handling files distributed on a set of media with media change and...
MediaSetAccess(const MediaSetAccess &)=delete
ZYPP_DECLARE_FLAGS(ProvideFileOptions, ProvideFileOption)
media::MediaAccessId getMediaAccessId(media::MediaNr medianr)
Pathname provideDir(const Pathname &dir, bool recursive, unsigned media_nr=1, ProvideFileOptions options=PROVIDE_DEFAULT)
Provides direcotry dir from media number media_nr.
void precacheFiles(const std::vector< OnMediaLocation > &files)
Tries to fetch the given files and precaches them.
friend std::ostream & operator<<(std::ostream &str, const MediaSetAccess &obj)
void setVerifier(unsigned media_nr, const media::MediaVerifierRef &verifier)
Sets a MediaVerifier verifier for given media number.
MediaSetAccess(Url url, Pathname prefered_attach_point="")
Creates a callback enabled media access for specified url.
MediaSetAccess & operator=(const MediaSetAccess &)=delete
static ManagedFile provideFileFromUrl(const Url &file_url, ProvideFileOptions options=PROVIDE_DEFAULT)
Provides file from url.
void provide(const ProvideOperation &op, const OnMediaLocation &resource, ProvideFileOptions options)
std::unique_ptr< Impl > _pimpl
Pointer to implementation.
@ PROVIDE_DEFAULT
The user is not asked anything, and the error exception is just propagated.
Pathname provideFile(const OnMediaLocation &resource, ProvideFileOptions options=PROVIDE_DEFAULT)
Provides a file from a media location.
void setLabel(const std::string &label_r)
Set the label identifing this media set and to be sent in a media change request.
Pathname provideOptionalFile(const Pathname &file, unsigned media_nr=1)
Provides an optional file from media media_nr.
static ManagedFile provideOptionalFileFromUrl(const Url &file_url)
Provides an optional file from url.
bool doesFileExist(const Pathname &file, unsigned media_nr=1)
Checks if a file exists on the specified media, with user callbacks.
void dirInfo(filesystem::DirContent &retlist, const Pathname &dirname, bool dots=true, unsigned media_nr=1)
Fills retlist with directory information.
MediaSetAccess & operator=(MediaSetAccess &&)=delete
void release()
Release all attached media of this set.
Pathname provideFileInternal(const OnMediaLocation &resource, ProvideFileOptions options)
Provides the file from medium number media_nr and returns its local path.
function< void(media::MediaAccessId, const OnMediaLocation &)> ProvideOperation
static Url rewriteUrl(const Url &url_r, const media::MediaNr medianr)
Replaces media number in specified url with given medianr.
MediaSetAccess(MediaSetAccess &&)=delete
std::ostream & dumpOn(std::ostream &str) const override
Overload to realize std::ostream & operator<<.
void releaseFile(const OnMediaLocation &resource)
Release file from media.
const std::string & label() const
The label identifing this media set and to be sent in a media change request.
Manages a data source characterized by an authoritative URL and a list of mirror URLs.
Describes a resource file located on a medium.
Url manipulation class.
Definition Url.h:93
Base class for reference counted objects.
String related utilities and Regular expression matching.
boost::noncopyable NonCopyable
Ensure derived classes cannot be copied.
Definition NonCopyable.h:26
std::list< DirEntry > DirContent
Returned by readdir.
Definition PathInfo.h:526
unsigned int MediaNr
unsigned int MediaAccessId
Media manager access Id type.
Definition MediaSource.h:30
zypp::RW_pointer< MediaVerifierBase > MediaVerifierRef
A shared reference to the MediaVerifier implementation.
Url details namespace.
Definition UrlBase.cc:58
Easy-to use interface to the ZYPP dependency resolver.
AutoDispose< const Pathname > ManagedFile
A Pathname plus associated cleanup code to be executed when path is no longer needed.
Definition ManagedFile.h:27
std::ostream & dumpOn(std::ostream &str, const Capability &obj)
const Arch Arch_armv7hnl Arch_armv7nhl ZYPP_API
Definition Arch.h:247
ReleaseFileGuard(MediaSetAccess &media_r, const OnMediaLocation &loc_r)
#define ZYPP_DEPRECATED
The ZYPP_DEPRECATED macro can be used to trigger compile-time warnings with gcc >= 3....
Definition Globals.h:112
#define ZYPP_DECLARE_OPERATORS_FOR_FLAGS(Name)
Definition Flags.h:177
#define DEFINE_PTR_TYPE(NAME)
Forward declaration of Ptr types.
Definition PtrTypes.h:639