Cleanup and remove deprecated interface methods
[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        * \note interaction with the user does not ocurr if
139        * \ref ProvideFileOptions::NON_INTERACTIVE is set.
140        *
141        * \note OnMediaLocation::optional() hint has no effect on the transfer.
142        *
143        * \see zypp::media::MediaManager::provideFile()
144        */
145       Pathname provideFile( const OnMediaLocation & resource, ProvideFileOptions options = PROVIDE_DEFAULT );
146
147       /**
148        * Provides \a file from media \a media_nr.
149        *
150        * \param file path to the file relative to media URL
151        * \param media_nr the media number in the media set
152        * \return local pathname of the requested file
153        *
154        * \note interaction with the user does not ocurr if
155        * \ref ProvideFileOptions::NON_INTERACTIVE is set.
156        *
157        * \note OnMediaLocation::optional() hint has no effect on the transfer.
158        *
159        * \throws MediaException if a problem occured and user has chosen to
160        *         abort the operation. The calling code should take care
161        *         to quit the current operation.
162        * \throws SkipRequestException if a problem occured and user has chosen
163        *         to skip the current operation. The calling code should continue
164        *         with the next one, if possible.
165        * \see zypp::media::MediaManager::provideFile()
166        */
167       Pathname provideFile(const Pathname & file, unsigned media_nr = 1, ProvideFileOptions options = PROVIDE_DEFAULT );
168
169       /**
170        * Release file from media.
171        * This signal that file is not needed anymore.
172        *
173        * \param resource location of the file on media
174        */
175       void releaseFile( const OnMediaLocation &resource );
176
177
178       /**
179        * Release file from media.
180        * This signal that file is not needed anymore.
181        *
182        * \param file path to the file relative to media URL
183        * \param media_nr the media number in the media set
184        */
185       void releaseFile(const Pathname & file, unsigned media_nr = 1 );
186
187       /**
188        * Provides direcotry \a dir from media number \a media_nr.
189        *
190        * \param dir path to the directory relative to media URL
191        * \param recursive whether to provide the whole directory subtree
192        * \param media_nr the media number in the media set
193        * \return local pathname of the requested directory
194        *
195        * \throws MediaException if a problem occured and user has chosen to
196        *         abort the operation. The calling code should take care
197        *         to quit the current operation.
198        * \todo throw SkipRequestException if a problem occured and user has chosen
199        *         to skip the current operation. The calling code should continue
200        *         with the next one, if possible.
201        * \see zypp::media::MediaManager::provideDir()
202        * \see zypp::media::MediaManager::provideDirTree()
203        */
204       Pathname provideDir(const Pathname & dir, bool recursive, unsigned media_nr = 1, ProvideFileOptions options = PROVIDE_DEFAULT );
205
206       /**
207        * Checks if a file exists on the specified media, with user callbacks.
208        *
209        * \param file file to check
210        * \param media_nr Media number
211        *
212        * \throws MediaException if a problem occured and user has chosen to
213        *         abort the operation. The calling code should take care
214        *         to quit the current operation.
215        * \throws SkipRequestException if a problem occured and user has chosen
216        *         to skip the current operation. The calling code should continue
217        *         with the next one, if possible.
218        * \see zypp::media::MediaManager::doesFileExist(MediaAccessId,const Pathname&)
219        */
220       bool doesFileExist(const Pathname & file, unsigned media_nr = 1 );
221
222       /**
223        * Fills \ref retlist with directory information.
224        */
225       void dirInfo( filesystem::DirContent &retlist, const Pathname &dirname,
226                     bool dots = true, unsigned media_nr = 1 );
227
228       /**
229        * Release all attached media of this set.
230        *
231        * \throws MediaNotOpenException for invalid access IDs.
232        */
233       void release();
234
235       /**
236        * Replaces media number in specified url with given \a medianr.
237        *
238        * Media number in the URL is searched for with regex
239        * <tt> "^(.*(cd|dvd))([0-9]+)(\\.iso)$" </tt> for iso scheme and
240        * with <tt> "^(.*(cd|dvd))([0-9]+)(/?)$" </tt> for other schemes.
241        *
242        * For cd and dvd scheme it returns the original URL, as well as for
243        * URL which do not match the above regexes.
244        *
245        * \param url_r   original URL
246        * \param medianr requested media number
247        * \return        rewritten URL if applicable, the original URL otherwise
248        */
249       static Url rewriteUrl (const Url & url_r, const media::MediaNr medianr);
250
251     protected:
252       /**
253        * Provides the \a file from medium number \a media_nr and returns its
254        * local path.
255        *
256        * \note   The method must not throw if \a checkonly is <tt>true</tt>.
257        *
258        * \throws MediaException \a checkonly is <tt>false</tt> and
259        *         a problem occured and user has chosen to
260        *         abort the operation. The calling code should take care
261        *         to quit the current operation.
262        * \throws SkipRequestException \a checkonly is <tt>false</tt> and
263        *         a problem occured and user has chosen
264        *         to skip the current operation. The calling code should continue
265        *         with the next one, if possible.
266        */
267       Pathname provideFileInternal( const OnMediaLocation &resource, ProvideFileOptions options );
268
269       typedef function<void( media::MediaAccessId, const Pathname & )> ProvideOperation;
270
271       void provide( ProvideOperation op, const OnMediaLocation &resource, ProvideFileOptions options );
272
273       media::MediaAccessId getMediaAccessId (media::MediaNr medianr);
274       virtual std::ostream & dumpOn( std::ostream & str ) const;
275
276     private:
277       /** Media or media set URL */
278       Url _url;
279
280       /**
281        * Prefered mount point.
282        *
283        * \see MediaManager::open(Url,Pathname)
284        * \see MediaHandler::_attachPoint
285        */
286       Pathname _prefAttachPoint;
287
288       std::string _label;
289
290       typedef std::map<media::MediaNr, media::MediaAccessId> MediaMap;
291       typedef std::map<media::MediaNr, media::MediaVerifierRef > VerifierMap;
292
293       /** Mapping between media number and Media Access ID */
294       MediaMap _medias;
295       /** Mapping between media number and corespondent verifier */
296       VerifierMap _verifiers;
297     };
298     ///////////////////////////////////////////////////////////////////
299     ZYPP_DECLARE_OPERATORS_FOR_FLAGS(MediaSetAccess::ProvideFileOptions);
300
301     /** \relates MediaSetAccess Stream output */
302     inline std::ostream & operator<<( std::ostream & str, const MediaSetAccess & obj )
303     { return obj.dumpOn( str ); }
304
305
306 } // namespace zypp
307 ///////////////////////////////////////////////////////////////////
308 #endif // ZYPP_SOURCE_MediaSetAccess_H