libzypp  12.16.5
MediaInfoDownloader.cc
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
9 
10 #include <fstream>
11 #include "zypp/base/String.h"
12 #include "zypp/base/Logger.h"
13 #include "zypp/base/Function.h"
14 
15 #include "MediaInfoDownloader.h"
17 
18 using namespace std;
19 
20 namespace zypp
21 {
22 namespace repo
23 {
24 
25 void downloadMediaInfo( const Pathname &dest_dir,
26  MediaSetAccess &media,
27  const ProgressData::ReceiverFnc & progressrcv )
28 {
29  Fetcher fetcher;
30  fetcher.enqueue( OnMediaLocation("/media.1/media") );
31  fetcher.start( dest_dir, media, progressrcv );
32  // ready, go!
33  fetcher.reset();
34 }
35 
36 }// ns repo
37 } // ns zypp
38 
39 
40