Imported Upstream version 14.48.2
[platform/upstream/libzypp.git] / devel / devel.dmacvicar / testbed.cc
index a546814..f0ebf04 100644 (file)
@@ -8,16 +8,42 @@
 #include <zypp/ZYppFactory.h>
 
 #include "zypp/Product.h"
-#include "zypp/detail/PackageImplIf.h"
 #include "zypp/Package.h"
-#include "zypp/SourceFactory.h"
-#include "zypp2/source/cached/CachedSourceImpl.h"
-#include "zypp/data/ResolvableData.h"
+#include "zypp/Fetcher.h"
+#include "zypp/TmpPath.h"
+#include "zypp/ProgressData.h"
+
+#include "zypp/sat/Pool.h"
+
+#include "zypp/ZYppCallbacks.h"
 
 using namespace std;
 using namespace zypp;
-using namespace zypp::source;
-using namespace zypp::source::cached;
+using namespace zypp::repo;
+using zypp::media::MediaChangeReport;
+
+
+bool result_cb( const ResObject::Ptr &r )
+{
+  cout << r << endl;
+}
+
+struct MediaChangeReportReceiver : public zypp::callback::ReceiveReport<MediaChangeReport>
+  {
+    virtual MediaChangeReport::Action
+    requestMedia(zypp::Url & url,
+                 unsigned                         mediumNr,
+                 const std::string &              label,
+                 MediaChangeReport::Error         error,
+                 const std::string &              description,
+                 const std::vector<std::string> & devices,
+                 unsigned int &                   index)
+    {
+      cout << std::endl;
+      MIL << "media problem, url: " << url.asString() << std::endl;
+      return MediaChangeReport::IGNORE;
+    }
+  };
 
 
 int main(int argc, char **argv)
@@ -26,15 +52,21 @@ int main(int argc, char **argv)
     {
       ZYpp::Ptr z = getZYpp();
     
-      Pathname dbpath = Pathname(getenv("PWD"));
-      
-      SourceImpl_Ptr sourceImpl(new CachedSourceImpl(dbpath));
-      SourceFactory factory;
-      Source_Ref source = factory.createFrom(sourceImpl);
-      ResStore dbres = source.resolvables();
+      MediaChangeReportReceiver report;
+      report.connect();
       
-      MIL << dbres.size() << " resolvables" << endl;
 
+      Fetcher fetcher;
+      MediaSetAccess access(Url("http://ftp.kernel.org/pub"));
+      filesystem::TmpDir tmp;
+      
+      OnMediaLocation loc;
+      loc.setLocation("/README2");
+      loc.setOptional(true);
+      
+      fetcher.enqueue(loc);
+      fetcher.start(tmp.path(), access);
+      
     }
     catch ( const Exception &e )
     {