Imported Upstream version 14.45.0
[platform/upstream/libzypp.git] / zypp / MediaSetAccess.h
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
18 #include "zypp/base/ReferenceCounted.h"
19 #include "zypp/base/NonCopyable.h"
20 #include "zypp/base/Flags.h"
21 #include "zypp/base/PtrTypes.h"
22 #include "zypp/media/MediaManager.h"
23 #include "zypp/Pathname.h"
24 #include "zypp/CheckSum.h"
25 #include "zypp/OnMediaLocation.h"
26
27 ///////////////////////////////////////////////////////////////////
28 namespace zypp
29 { /////////////////////////////////////////////////////////////////
30
31     DEFINE_PTR_TYPE(MediaSetAccess);
32
33     ///////////////////////////////////////////////////////////////////
34     //
35     //  CLASS NAME : MediaSetAccess
36     //
37     /**
38      * Media access layer responsible for handling files distributed on a set
39      * of media with media change and abort/retry/ingore user callback handling.
40      *
41      * This is provided as a means to handle CD or DVD sets accessible through
42      * dir, iso, nfs or other URL schemes other than cd/dvd (see
43      * \ref MediaManager for info on different implemented media backends).
44      * Currently it handles URLs containing cdN, CDN, dvdN, and DVDN strings,
45      * where N is the number of particular media in the set.
46      *
47      * Examples:
48      * \code
49      * "iso:/?iso=/path/to/iso/images/openSUSE-10.3-Alpha2plus-DVD-x86_64-DVD1.iso"
50      * "dir:/path/to/cdset/sources/openSUSE-10.3/Alpha2plus/CD1"
51      * \endcode
52      *
53      * MediaSetAccess accesses files on desired media by rewriting
54      * the original URL, replacing the digit (usually) 1 with requested media
55      * number and uses \ref MediaManager to get the files from the new URL.
56      *
57      * Additionaly, each media number can be assined a media verifier which
58      * checks if the media we are trying to access is the desired one. See
59      * \ref MediaVerifierBase for more info.
60      *
61      * Code example:
62      * \code
63      * Url url("dir:/path/to/cdset/sources/openSUSE-10.3/Alpha2plus/CD1");
64      *
65      * MediaSetAccess access(url);
66      *
67      * access.setVerifier(1, media1VerifierRef);
68      * access.setVerifier(2, media2VerifierRef);
69      *
70      * Pathname file1 = "/some/file/on/media1";
71      * Pathname providedfile1 = access.provideFile(file1, 1);
72      * Pathname file2 = "/some/file/on/media2";
73      * Pathname providedfile2 = access.provideFile(file1, 2);
74      *
75      * \endcode
76      */
77     class MediaSetAccess : public base::ReferenceCounted, private base::NonCopyable
78     {
79       friend std::ostream & operator<<( std::ostream & str, const MediaSetAccess & obj );
80
81     public:
82       /**
83        * Creates a callback enabled media access for specified \a url.
84        *
85        * \param url
86        * \param prefered_attach_point Prefered attach (mount) point. Use, if
87        *        you want to mount the media to a specific directory.
88        */
89       MediaSetAccess( const Url &url, const Pathname & prefered_attach_point = "" );
90       /** \overload Also taking a \ref label. */
91       MediaSetAccess( const std::string & label_r, const Url &url, const Pathname & prefered_attach_point = "" );
92       ~MediaSetAccess();
93
94       /**
95        * Sets a \ref MediaVerifier verifier for given media number.
96        */
97       void setVerifier( unsigned media_nr, media::MediaVerifierRef verifier );
98
99       /**
100        * The label identifing this media set and to be sent in a media change request.
101        */
102       const std::string & label() const
103       { return _label; }
104
105       /**
106        * Set the label identifing this media set and to be sent in a media change request.
107        */
108       void setLabel( const std::string & label_r )
109       { _label = label_r; }
110
111       enum ProvideFileOption
112       {
113         /**
114          * The user is not asked anything, and the error
115          * exception is just propagated */
116         PROVIDE_DEFAULT = 0x0,
117         PROVIDE_NON_INTERACTIVE = 0x1
118       };
119       ZYPP_DECLARE_FLAGS(ProvideFileOptions,ProvideFileOption);
120
121       /**
122        * Provides a file from a media location.
123        *
124        * \param resource location of the file on media
125        * \return local pathname of the requested file
126        *
127        * \throws MediaException if a problem occured and user has chosen to
128        *         abort the operation. The calling code should take care
129        *         to quit the current operation.
130        * \throws SkipRequestException if a problem occured and user has chosen
131        *         to skip the current operation. The calling code should continue
132        *         with the next one, if possible.
133        *
134        *
135        * If the resource is marked as optional, no Exception is thrown
136        * and Pathname() is returned
137        *
138        * the optional deltafile argument describes a file that can
139        * be used for delta download algorithms.
140        *
141        * \note interaction with the user does not ocurr if
142        * \ref ProvideFileOptions::NON_INTERACTIVE is set.
143        *
144        * \note OnMediaLocation::optional() hint has no effect on the transfer.
145        *
146        * \see zypp::media::MediaManager::provideFile()
147        */
148       Pathname provideFile( const OnMediaLocation & resource, ProvideFileOptions options = PROVIDE_DEFAULT, const Pathname &deltafile = Pathname() );
149
150       /**
151        * Provides \a file from media \a media_nr.
152        *
153        * \param file path to the file relative to media URL
154        * \param media_nr the media number in the media set
155        * \return local pathname of the requested file
156        *
157        * \note interaction with the user does not ocurr if
158        * \ref ProvideFileOptions::NON_INTERACTIVE is set.
159        *
160        * \note OnMediaLocation::optional() hint has no effect on the transfer.
161        *
162        * \throws MediaException if a problem occured and user has chosen to
163        *         abort the operation. The calling code should take care
164        *         to quit the current operation.
165        * \throws SkipRequestException if a problem occured and user has chosen
166        *         to skip the current operation. The calling code should continue
167        *         with the next one, if possible.
168        * \see zypp::media::MediaManager::provideFile()
169        */
170       Pathname provideFile(const Pathname & file, unsigned media_nr = 1, ProvideFileOptions options = PROVIDE_DEFAULT );
171
172       /**
173        * Release file from media.
174        * This signal that file is not needed anymore.
175        *
176        * \param resource location of the file on media
177        */
178       void releaseFile( const OnMediaLocation &resource );
179
180
181       /**
182        * Release file from media.
183        * This signal that file is not needed anymore.
184        *
185        * \param file path to the file relative to media URL
186        * \param media_nr the media number in the media set
187        */
188       void releaseFile(const Pathname & file, unsigned media_nr = 1 );
189
190       /**
191        * Provides direcotry \a dir from media number \a media_nr.
192        *
193        * \param dir path to the directory relative to media URL
194        * \param recursive whether to provide the whole directory subtree
195        * \param media_nr the media number in the media set
196        * \return local pathname of the requested directory
197        *
198        * \throws MediaException if a problem occured and user has chosen to
199        *         abort the operation. The calling code should take care
200        *         to quit the current operation.
201        * \todo throw SkipRequestException if a problem occured and user has chosen
202        *         to skip the current operation. The calling code should continue
203        *         with the next one, if possible.
204        * \see zypp::media::MediaManager::provideDir()
205        * \see zypp::media::MediaManager::provideDirTree()
206        */
207       Pathname provideDir(const Pathname & dir, bool recursive, unsigned media_nr = 1, ProvideFileOptions options = PROVIDE_DEFAULT );
208
209       /**
210        * Checks if a file exists on the specified media, with user callbacks.
211        *
212        * \param file file to check
213        * \param media_nr Media number
214        *
215        * \throws MediaException if a problem occured and user has chosen to
216        *         abort the operation. The calling code should take care
217        *         to quit the current operation.
218        * \throws SkipRequestException if a problem occured and user has chosen
219        *         to skip the current operation. The calling code should continue
220        *         with the next one, if possible.
221        * \see zypp::media::MediaManager::doesFileExist(MediaAccessId,const Pathname&)
222        */
223       bool doesFileExist(const Pathname & file, unsigned media_nr = 1 );
224
225       /**
226        * Fills \ref retlist with directory information.
227        */
228       void dirInfo( filesystem::DirContent &retlist, const Pathname &dirname,
229                     bool dots = true, unsigned media_nr = 1 );
230
231       /**
232        * Release all attached media of this set.
233        *
234        * \throws MediaNotOpenException for invalid access IDs.
235        */
236       void release();
237
238       /**
239        * Replaces media number in specified url with given \a medianr.
240        *
241        * Media number in the URL is searched for with regex
242        * <tt> "^(.*(cd|dvd))([0-9]+)(\\.iso)$" </tt> for iso scheme and
243        * with <tt> "^(.*(cd|dvd))([0-9]+)(/?)$" </tt> for other schemes.
244        *
245        * For cd and dvd scheme it returns the original URL, as well as for
246        * URL which do not match the above regexes.
247        *
248        * \param url_r   original URL
249        * \param medianr requested media number
250        * \return        rewritten URL if applicable, the original URL otherwise
251        */
252       static Url rewriteUrl (const Url & url_r, const media::MediaNr medianr);
253
254     protected:
255       /**
256        * Provides the \a file from medium number \a media_nr and returns its
257        * local path.
258        *
259        * \note   The method must not throw if \a checkonly is <tt>true</tt>.
260        *
261        * \throws MediaException \a checkonly is <tt>false</tt> and
262        *         a problem occured and user has chosen to
263        *         abort the operation. The calling code should take care
264        *         to quit the current operation.
265        * \throws SkipRequestException \a checkonly is <tt>false</tt> and
266        *         a problem occured and user has chosen
267        *         to skip the current operation. The calling code should continue
268        *         with the next one, if possible.
269        */
270       Pathname provideFileInternal( const OnMediaLocation &resource, ProvideFileOptions options );
271
272       typedef function<void( media::MediaAccessId, const Pathname & )> ProvideOperation;
273
274       void provide( ProvideOperation op, const OnMediaLocation &resource, ProvideFileOptions options, const Pathname &deltafile );
275
276       media::MediaAccessId getMediaAccessId (media::MediaNr medianr);
277       virtual std::ostream & dumpOn( std::ostream & str ) const;
278
279     private:
280       /** Media or media set URL */
281       Url _url;
282
283       /**
284        * Prefered mount point.
285        *
286        * \see MediaManager::open(Url,Pathname)
287        * \see MediaHandler::_attachPoint
288        */
289       Pathname _prefAttachPoint;
290
291       std::string _label;
292
293       typedef std::map<media::MediaNr, media::MediaAccessId> MediaMap;
294       typedef std::map<media::MediaNr, media::MediaVerifierRef > VerifierMap;
295
296       /** Mapping between media number and Media Access ID */
297       MediaMap _medias;
298       /** Mapping between media number and corespondent verifier */
299       VerifierMap _verifiers;
300     };
301     ///////////////////////////////////////////////////////////////////
302     ZYPP_DECLARE_OPERATORS_FOR_FLAGS(MediaSetAccess::ProvideFileOptions);
303
304     /** \relates MediaSetAccess Stream output */
305     inline std::ostream & operator<<( std::ostream & str, const MediaSetAccess & obj )
306     { return obj.dumpOn( str ); }
307
308
309 } // namespace zypp
310 ///////////////////////////////////////////////////////////////////
311 #endif // ZYPP_SOURCE_MediaSetAccess_H