remove some interfaces, cleanup
[platform/upstream/libzypp.git] / zypp / RepoManager.cc
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file       zypp/RepoManager.cc
10  *
11 */
12
13 #include <cstdlib>
14 #include <iostream>
15 #include <fstream>
16 #include <sstream>
17 #include <list>
18 #include <algorithm>
19 #include "zypp/base/InputStream.h"
20 #include "zypp/base/Logger.h"
21 #include "zypp/base/Gettext.h"
22 #include "zypp/base/Function.h"
23 #include "zypp/base/Regex.h"
24 #include "zypp/PathInfo.h"
25 #include "zypp/TmpPath.h"
26
27 #include "zypp/repo/RepoException.h"
28 #include "zypp/RepoManager.h"
29
30 #include "zypp/cache/SolvStore.h"
31 #include "zypp/repo/cached/RepoImpl.h"
32 #include "zypp/media/MediaManager.h"
33 #include "zypp/MediaSetAccess.h"
34 #include "zypp/ExternalProgram.h"
35
36 #include "zypp/parser/RepoFileReader.h"
37 #include "zypp/repo/yum/Downloader.h"
38 #include "zypp/parser/yum/RepoParser.h"
39 //#include "zypp/parser/plaindir/RepoParser.h"
40 #include "zypp/repo/susetags/Downloader.h"
41 #include "zypp/parser/susetags/RepoParser.h"
42
43 #include "zypp/ZYppCallbacks.h"
44
45 #include "sat/Pool.h"
46 #include "satsolver/pool.h"
47 #include "satsolver/repo.h"
48 #include "satsolver/repo_solv.h"
49
50 using namespace std;
51 using namespace zypp;
52 using namespace zypp::repo;
53 using namespace zypp::filesystem;
54
55 using namespace zypp::repo;
56
57 ///////////////////////////////////////////////////////////////////
58 namespace zypp
59 { /////////////////////////////////////////////////////////////////
60
61   ///////////////////////////////////////////////////////////////////
62   //
63   //    CLASS NAME : RepoManagerOptions
64   //
65   ///////////////////////////////////////////////////////////////////
66
67   RepoManagerOptions::RepoManagerOptions()
68   {
69     repoCachePath    = ZConfig::instance().repoCachePath();
70     repoRawCachePath = ZConfig::instance().repoMetadataPath();
71     knownReposPath   = ZConfig::instance().knownReposPath();
72   }
73
74   ////////////////////////////////////////////////////////////////////////////
75
76   /**
77     * \short Simple callback to collect the results
78     *
79     * Classes like RepoFileParser call the callback
80     * once per each repo in a file.
81     *
82     * Passing this functor as callback, you can collect
83     * all resuls at the end, without dealing with async
84     * code.
85     */
86     struct RepoCollector
87     {
88       RepoCollector()
89       {
90         MIL << endl;
91       }
92
93       ~RepoCollector()
94       {
95         MIL << endl;
96       }
97
98       bool collect( const RepoInfo &repo )
99       {
100         //MIL << "here in collector: " << repo.alias() << endl;
101         repos.push_back(repo);
102         //MIL << "added: " << repo.alias() << endl;
103         return true;
104       }
105
106       RepoInfoList repos;
107     };
108
109   ////////////////////////////////////////////////////////////////////////////
110
111    /**
112     * \short Internal version of clean cache
113     *
114     * Takes an extra SolvStore reference, so we avoid internally
115     * having 2 SolvStores writing to the same database.
116     */
117   static void cleanCacheInternal( cache::SolvStore &store,
118                                   const RepoInfo &info,
119                                   const ProgressData::ReceiverFnc & progressrcv = ProgressData::ReceiverFnc() )
120   {
121 //     ProgressData progress;
122 //     callback::SendReport<ProgressReport> report;
123 //     progress.sendTo( ProgressReportAdaptor( progressrcv, report ) );
124 //     progress.name(str::form(_("Cleaning repository '%s' cache"), info.name().c_str()));
125 // 
126 //     if ( !store.isCached(info.alias()) )
127 //       return;
128 // 
129 //     MIL << info.alias() << " cleaning cache..." << endl;
130 //     
131 //     CombinedProgressData subprogrcv(progress);
132 // 
133 //     store.cleanRepository(info.alias(), subprogrcv);
134   }
135
136   ////////////////////////////////////////////////////////////////////////////
137
138   /**
139    * Reads RepoInfo's from a repo file.
140    *
141    * \param file pathname of the file to read.
142    */
143   static std::list<RepoInfo> repositories_in_file( const Pathname & file )
144   {
145     MIL << "repo file: " << file << endl;
146     RepoCollector collector;
147     parser::RepoFileReader parser( file, bind( &RepoCollector::collect, &collector, _1 ) );
148     return collector.repos;
149   }
150
151   ////////////////////////////////////////////////////////////////////////////
152
153   std::list<RepoInfo> readRepoFile(const Url & repo_file)
154    {
155      // no interface to download a specific file, using workaround:
156      //! \todo add MediaManager::provideFile(Url file_url) to easily access any file URLs? (no need for media access id or media_nr)
157      Url url(repo_file);
158      Pathname path(url.getPathName());
159      url.setPathName ("/");
160      MediaSetAccess access(url);
161      Pathname local = access.provideFile(path);
162
163      DBG << "reading repo file " << repo_file << ", local path: " << local << endl;
164
165      return repositories_in_file(local);
166    }
167
168   ////////////////////////////////////////////////////////////////////////////
169
170   /**
171    * \short List of RepoInfo's from a directory
172    *
173    * Goes trough every file ending with ".repo" in a directory and adds all
174    * RepoInfo's contained in that file.
175    *
176    * \param dir pathname of the directory to read.
177    */
178   static std::list<RepoInfo> repositories_in_dir( const Pathname &dir )
179   {
180     MIL << "directory " << dir << endl;
181     list<RepoInfo> repos;
182     list<Pathname> entries;
183     if ( filesystem::readdir( entries, Pathname(dir), false ) != 0 )
184       ZYPP_THROW(Exception("failed to read directory"));
185
186     str::regex allowedRepoExt("^\\.repo(_[0-9]+)?$");
187     for ( list<Pathname>::const_iterator it = entries.begin(); it != entries.end(); ++it )
188     {
189       if (str::regex_match(it->extension(), allowedRepoExt))
190       {
191         list<RepoInfo> tmp = repositories_in_file( *it );
192         repos.insert( repos.end(), tmp.begin(), tmp.end() );
193
194         //std::copy( collector.repos.begin(), collector.repos.end(), std::back_inserter(repos));
195         //MIL << "ok" << endl;
196       }
197     }
198     return repos;
199   }
200
201   ////////////////////////////////////////////////////////////////////////////
202
203   static void assert_alias( const RepoInfo &info )
204   {
205     if (info.alias().empty())
206         ZYPP_THROW(RepoNoAliasException());
207   }
208
209   ////////////////////////////////////////////////////////////////////////////
210
211   static void assert_urls( const RepoInfo &info )
212   {
213     if (info.baseUrlsEmpty())
214         ZYPP_THROW(RepoNoUrlException());
215   }
216
217   ////////////////////////////////////////////////////////////////////////////
218
219   /**
220    * \short Calculates the raw cache path for a repository
221    */
222   static Pathname rawcache_path_for_repoinfo( const RepoManagerOptions &opt, const RepoInfo &info )
223   {
224     assert_alias(info);
225     return opt.repoRawCachePath + info.alias();
226   }
227
228   ///////////////////////////////////////////////////////////////////
229   //
230   //    CLASS NAME : RepoManager::Impl
231   //
232   ///////////////////////////////////////////////////////////////////
233
234   /**
235    * \short RepoManager implementation.
236    */
237   struct RepoManager::Impl
238   {
239     Impl( const RepoManagerOptions &opt )
240       : options(opt)
241     {
242
243     }
244
245     Impl()
246     {
247
248     }
249
250     RepoManagerOptions options;
251
252   public:
253     /** Offer default Impl. */
254     static shared_ptr<Impl> nullimpl()
255     {
256       static shared_ptr<Impl> _nullimpl( new Impl );
257       return _nullimpl;
258     }
259
260   private:
261     friend Impl * rwcowClone<Impl>( const Impl * rhs );
262     /** clone for RWCOW_pointer */
263     Impl * clone() const
264     { return new Impl( *this ); }
265   };
266
267   ///////////////////////////////////////////////////////////////////
268
269   /** \relates RepoManager::Impl Stream output */
270   inline std::ostream & operator<<( std::ostream & str, const RepoManager::Impl & obj )
271   {
272     return str << "RepoManager::Impl";
273   }
274
275   ///////////////////////////////////////////////////////////////////
276   //
277   //    CLASS NAME : RepoManager
278   //
279   ///////////////////////////////////////////////////////////////////
280
281   RepoManager::RepoManager( const RepoManagerOptions &opt )
282   : _pimpl( new Impl(opt) )
283   {}
284
285   ////////////////////////////////////////////////////////////////////////////
286
287   RepoManager::~RepoManager()
288   {}
289
290   ////////////////////////////////////////////////////////////////////////////
291
292   std::list<RepoInfo> RepoManager::knownRepositories() const
293   {
294     MIL << endl;
295
296     if ( PathInfo(_pimpl->options.knownReposPath).isExist() )
297     {
298       RepoInfoList repos = repositories_in_dir(_pimpl->options.knownReposPath);
299       for ( RepoInfoList::iterator it = repos.begin();
300             it != repos.end();
301             ++it )
302       {
303         // set the metadata path for the repo
304         Pathname metadata_path = rawcache_path_for_repoinfo(_pimpl->options, (*it));
305         (*it).setMetadataPath(metadata_path);
306       }
307       return repos;
308     }
309     else
310       return std::list<RepoInfo>();
311
312     MIL << endl;
313   }
314
315   ////////////////////////////////////////////////////////////////////////////
316
317   Pathname RepoManager::metadataPath( const RepoInfo &info ) const
318   {
319     return rawcache_path_for_repoinfo(_pimpl->options, info );
320   }
321
322   ////////////////////////////////////////////////////////////////////////////
323
324   RepoStatus RepoManager::metadataStatus( const RepoInfo &info ) const
325   {
326     Pathname rawpath = rawcache_path_for_repoinfo( _pimpl->options, info );
327     RepoType repokind = info.type();
328     RepoStatus status;
329
330     switch ( repokind.toEnum() )
331     {
332       case RepoType::NONE_e:
333       // unknown, probe the local metadata
334         repokind = probe(rawpath.asUrl());
335       break;
336       default:
337       break;
338     }
339
340     switch ( repokind.toEnum() )
341     {
342       case RepoType::RPMMD_e :
343       {
344         status = RepoStatus( rawpath + "/repodata/repomd.xml");
345       }
346       break;
347
348       case RepoType::YAST2_e :
349       {
350         // the order of RepoStatus && RepoStatus matters! (#304310)
351         status = RepoStatus( rawpath + "/content") && (RepoStatus( rawpath + "/media.1/media"));
352       }
353       break;
354
355       case RepoType::RPMPLAINDIR_e :
356       {
357         if ( PathInfo(Pathname(rawpath + "/cookie")).isExist() )
358           status = RepoStatus( rawpath + "/cookie");
359       }
360       break;
361
362       case RepoType::NONE_e :
363         // Return default RepoStatus in case of RepoType::NONE
364         // indicating it should be created?
365         // ZYPP_THROW(RepoUnknownTypeException());
366         break;
367     }
368     return status;
369   }
370
371   void RepoManager::touchIndexFile(const RepoInfo & info)
372   {
373     Pathname rawpath = rawcache_path_for_repoinfo( _pimpl->options, info );
374
375     RepoType repokind = info.type();
376     if ( repokind.toEnum() == RepoType::NONE_e )
377       // unknown, probe the local metadata
378       repokind = probe(rawpath.asUrl());
379     // if still unknown, just return
380     if (repokind == RepoType::NONE_e)
381       return;
382
383     Pathname p;
384     switch ( repokind.toEnum() )
385     {
386       case RepoType::RPMMD_e :
387         p = Pathname(rawpath + "/repodata/repomd.xml");
388         break;
389
390       case RepoType::YAST2_e :
391         p = Pathname(rawpath + "/content");
392         break;
393
394       case RepoType::RPMPLAINDIR_e :
395         p = Pathname(rawpath + "/cookie");
396         break;
397
398       case RepoType::NONE_e :
399       default:
400         break;
401     }
402
403     // touch the file, ignore error (they are logged anyway)
404     filesystem::touch(p);
405   }
406
407   bool RepoManager::checkIfToRefreshMetadata( const RepoInfo &info,
408                                               const Url &url,
409                                               RawMetadataRefreshPolicy policy )
410   {
411     assert_alias(info);
412
413     RepoStatus oldstatus;
414     RepoStatus newstatus;
415
416     try
417     {
418       MIL << "Going to try to check whether refresh is needed for " << url << endl;
419
420       repo::RepoType repokind = info.type();
421
422       // if the type is unknown, try probing.
423       switch ( repokind.toEnum() )
424       {
425         case RepoType::NONE_e:
426           // unknown, probe it
427           repokind = probe(url);
428         break;
429         default:
430         break;
431       }
432
433       Pathname rawpath = rawcache_path_for_repoinfo( _pimpl->options, info );
434       filesystem::assert_dir(rawpath);
435       oldstatus = metadataStatus(info);
436
437       // now we've got the old (cached) status, we can decide repo.refresh.delay
438       if (policy != RefreshForced)
439       {
440         // difference in seconds
441         double diff = difftime(
442           (Date::ValueType)Date::now(),
443           (Date::ValueType)oldstatus.timestamp()) / 60;
444
445         DBG << "oldstatus: " << (Date::ValueType)oldstatus.timestamp() << endl;
446         DBG << "current time: " << (Date::ValueType)Date::now() << endl;
447         DBG << "last refresh = " << diff << " minutes ago" << endl;
448
449         if (diff < ZConfig::instance().repo_refresh_delay())
450         {
451           MIL << "Repository '" << info.alias()
452               << "' has been refreshed less than repo.refresh.delay ("
453               << ZConfig::instance().repo_refresh_delay()
454               << ") minutes ago. Advising to skip refresh" << endl;
455           return false;
456         }
457       }
458
459       // create temp dir as sibling of rawpath
460       filesystem::TmpDir tmpdir( filesystem::TmpDir::makeSibling( rawpath ) );
461
462       if ( ( repokind.toEnum() == RepoType::RPMMD_e ) ||
463            ( repokind.toEnum() == RepoType::YAST2_e ) )
464       {
465         MediaSetAccess media(url);
466         shared_ptr<repo::Downloader> downloader_ptr;
467
468         if ( repokind.toEnum() == RepoType::RPMMD_e )
469           downloader_ptr.reset(new yum::Downloader(info.path()));
470         else
471           downloader_ptr.reset( new susetags::Downloader(info.path()));
472
473         RepoStatus newstatus = downloader_ptr->status(media);
474         bool refresh = false;
475         if ( oldstatus.checksum() == newstatus.checksum() )
476         {
477           MIL << "repo has not changed" << endl;
478           if ( policy == RefreshForced )
479           {
480             MIL << "refresh set to forced" << endl;
481             refresh = true;
482           }
483         }
484         else
485         {
486           MIL << "repo has changed, going to refresh" << endl;
487           refresh = true;
488         }
489
490         if (!refresh)
491           touchIndexFile(info);
492
493         return refresh;
494       }
495 #if 0
496       else if ( repokind.toEnum() == RepoType::RPMPLAINDIR_e )
497       {
498         RepoStatus newstatus = parser::plaindir::dirStatus(url.getPathName());
499         bool refresh = false;
500         if ( oldstatus.checksum() == newstatus.checksum() )
501         {
502           MIL << "repo has not changed" << endl;
503           if ( policy == RefreshForced )
504           {
505             MIL << "refresh set to forced" << endl;
506             refresh = true;
507           }
508         }
509         else
510         {
511           MIL << "repo has changed, going to refresh" << endl;
512           refresh = true;
513         }
514
515         if (!refresh)
516           touchIndexFile(info);
517
518         return refresh;
519       }
520 #endif
521       else
522       {
523         ZYPP_THROW(RepoUnknownTypeException());
524       }
525     }
526     catch ( const Exception &e )
527     {
528       ZYPP_CAUGHT(e);
529       ERR << "refresh check failed for " << url << endl;
530       ZYPP_RETHROW(e);
531     }
532
533     return true; // default
534   }
535
536   void RepoManager::refreshMetadata( const RepoInfo &info,
537                                      RawMetadataRefreshPolicy policy,
538                                      const ProgressData::ReceiverFnc & progress )
539   {
540     assert_alias(info);
541     assert_urls(info);
542
543     // we will throw this later if no URL checks out fine
544     RepoException rexception(_("Valid metadata not found at specified URL(s)"));
545
546     // try urls one by one
547     for ( RepoInfo::urls_const_iterator it = info.baseUrlsBegin(); it != info.baseUrlsEnd(); ++it )
548     {
549       try
550       {
551         Url url(*it);
552
553         // check whether to refresh metadata
554         // if the check fails for this url, it throws, so another url will be checked
555         if (!checkIfToRefreshMetadata(info, url, policy))
556           return;
557
558         MIL << "Going to refresh metadata from " << url << endl;
559
560         repo::RepoType repokind = info.type();
561
562         // if the type is unknown, try probing.
563         switch ( repokind.toEnum() )
564         {
565           case RepoType::NONE_e:
566             // unknown, probe it
567             repokind = probe(*it);
568           break;
569           default:
570           break;
571         }
572
573         Pathname rawpath = rawcache_path_for_repoinfo( _pimpl->options, info );
574         filesystem::assert_dir(rawpath);
575
576         // create temp dir as sibling of rawpath
577         filesystem::TmpDir tmpdir( filesystem::TmpDir::makeSibling( rawpath ) );
578
579         if ( ( repokind.toEnum() == RepoType::RPMMD_e ) ||
580              ( repokind.toEnum() == RepoType::YAST2_e ) )
581         {
582           MediaSetAccess media(url);
583           shared_ptr<repo::Downloader> downloader_ptr;
584
585           if ( repokind.toEnum() == RepoType::RPMMD_e )
586             downloader_ptr.reset(new yum::Downloader(info.path()));
587           else
588             downloader_ptr.reset( new susetags::Downloader(info.path()));
589
590           /**
591            * Given a downloader, sets the other repos raw metadata
592            * path as cache paths for the fetcher, so if another
593            * repo has the same file, it will not download it
594            * but copy it from the other repository
595            */
596           std::list<RepoInfo> repos = knownRepositories();
597           for ( std::list<RepoInfo>::const_iterator it = repos.begin();
598                 it != repos.end();
599                 ++it )
600           {
601             downloader_ptr->addCachePath(rawcache_path_for_repoinfo( _pimpl->options, *it ));
602           }
603
604           downloader_ptr->download( media, tmpdir.path());
605         }
606 #if 0
607         else if ( repokind.toEnum() == RepoType::RPMPLAINDIR_e )
608         {
609           RepoStatus newstatus = parser::plaindir::dirStatus(url.getPathName());
610
611           std::ofstream file(( tmpdir.path() + "/cookie").c_str());
612           if (!file) {
613             ZYPP_THROW (Exception( "Can't open " + tmpdir.path().asString() + "/cookie" ) );
614           }
615           file << url << endl;
616           file << newstatus.checksum() << endl;
617
618           file.close();
619         }
620 #endif
621         else
622         {
623           ZYPP_THROW(RepoUnknownTypeException());
624         }
625
626         // ok we have the metadata, now exchange
627         // the contents
628         TmpDir oldmetadata( TmpDir::makeSibling( rawpath ) );
629         filesystem::rename( rawpath, oldmetadata.path() );
630         // move the just downloaded there
631         filesystem::rename( tmpdir.path(), rawpath );
632         // we are done.
633         return;
634       }
635       catch ( const Exception &e )
636       {
637         ZYPP_CAUGHT(e);
638         ERR << "Trying another url..." << endl;
639
640         // remember the exception caught for the *first URL*
641         // if all other URLs fail, the rexception will be thrown with the
642         // cause of the problem of the first URL remembered
643         if (it == info.baseUrlsBegin())
644           rexception.remember(e);
645       }
646     } // for every url
647     ERR << "No more urls..." << endl;
648     ZYPP_THROW(rexception);
649   }
650
651   ////////////////////////////////////////////////////////////////////////////
652
653   void RepoManager::cleanMetadata( const RepoInfo &info,
654                                    const ProgressData::ReceiverFnc & progressfnc )
655   {
656     ProgressData progress(100);
657     progress.sendTo(progressfnc);
658
659     filesystem::recursive_rmdir(rawcache_path_for_repoinfo(_pimpl->options, info));
660     progress.toMax();
661   }
662
663   void RepoManager::buildCache( const RepoInfo &info,
664                                 CacheBuildPolicy policy,
665                                 const ProgressData::ReceiverFnc & progressrcv )
666   {
667     assert_alias(info);
668     Pathname rawpath = rawcache_path_for_repoinfo(_pimpl->options, info);
669
670     Pathname base = _pimpl->options.repoCachePath + info.alias();
671     Pathname solvfile = base.extend(".solv");
672
673     //cache::SolvStore store(_pimpl->options.repoCachePath);
674
675     RepoStatus raw_metadata_status = metadataStatus(info);
676     if ( raw_metadata_status.empty() )
677     {
678       ZYPP_THROW(RepoMetadataException(info));
679     }
680
681     bool needs_cleaning = false;
682     if ( isCached( info ) )
683     {
684       MIL << info.alias() << " is already cached." << endl;
685       //data::RecordId id = store.lookupRepository(info.alias());
686       RepoStatus cache_status = cacheStatus(info);
687
688       if ( cache_status.checksum() == raw_metadata_status.checksum() )
689       {
690         MIL << info.alias() << " cache is up to date with metadata." << endl;
691         if ( policy == BuildIfNeeded ) {
692           return;
693         }
694         else {
695           MIL << info.alias() << " cache rebuild is forced" << endl;
696         }
697       }
698
699       needs_cleaning = true;
700     }
701
702     ProgressData progress(100);
703     callback::SendReport<ProgressReport> report;
704     progress.sendTo( ProgressReportAdaptor( progressrcv, report ) );
705     progress.name(str::form(_("Building repository '%s' cache"), info.name().c_str()));
706     progress.toMin();
707
708     if (needs_cleaning)
709     {
710 //       Pathname name = _pimpl->options.repoCachePath;
711 //       //data::RecordId id = store.lookupRepository(info.alias());
712 //       ostringstream os;
713 //       os << id.get();
714 //       name += os.str() + ".solv";
715 //       unlink (name);
716 //       cleanCacheInternal( store, info);
717       cleanCache(info);
718     }
719
720     MIL << info.alias() << " building cache..." << endl;
721     //data::RecordId id = store.lookupOrAppendRepository(info.alias());
722     // do we have type?
723     repo::RepoType repokind = info.type();
724
725     // if the type is unknown, try probing.
726     switch ( repokind.toEnum() )
727     {
728       case RepoType::NONE_e:
729         // unknown, probe the local metadata
730         repokind = probe(rawpath.asUrl());
731       break;
732       default:
733       break;
734     }
735
736     MIL << "repo type is " << repokind << endl;
737     
738     switch ( repokind.toEnum() )
739     {
740       case RepoType::RPMMD_e :
741       case RepoType::YAST2_e :
742       {
743         MIL << "Executing solv converter" << endl;
744         string cmd( str::form( "/usr/bin/repo2solv.sh \"%s\" > %s", rawpath.asString().c_str(), solvfile.asString().c_str() ) );
745         ExternalProgram prog( cmd, ExternalProgram::Stderr_To_Stdout );
746         for ( string output( prog.receiveLine() ); output.length(); output = prog.receiveLine() ) {
747           MIL << "  " << output;
748         }
749         int ret = prog.close();
750         if ( ret != 0 )
751           ZYPP_THROW(RepoUnknownTypeException());
752       }
753       break;
754       default:
755         ZYPP_THROW(Exception("Unhandled repostory type"));
756       break;
757     }
758 #if 0
759     switch ( repokind.toEnum() )
760     {
761       case RepoType::RPMMD_e :
762       if (0)
763       {
764         CombinedProgressData subprogrcv( progress, 100);
765         parser::yum::RepoParser parser(id, store, parser::yum::RepoParserOpts(), subprogrcv);
766         parser.parse(rawpath);
767           // no error
768       }
769       break;
770       case RepoType::YAST2_e :
771       if (0)
772       {
773         CombinedProgressData subprogrcv( progress, 100);
774         parser::susetags::RepoParser parser(id, store, subprogrcv);
775         parser.parse(rawpath);
776         // no error
777       }
778       break;
779 #endif
780 #if 0
781       case RepoType::RPMPLAINDIR_e :
782       {
783         CombinedProgressData subprogrcv( progress, 100);
784         InputStream is(rawpath + "cookie");
785         string buffer;
786         getline( is.stream(), buffer);
787         Url url(buffer);
788         parser::plaindir::RepoParser parser(id, store, subprogrcv);
789         parser.parse(url.getPathName());
790       }
791       break;
792
793       default:
794         ZYPP_THROW(RepoUnknownTypeException());
795     }
796 #endif
797     // update timestamp and checksum
798     //store.updateRepositoryStatus(id, raw_metadata_status);
799     setCacheStatus(info.alias(), raw_metadata_status);
800     MIL << "Commit cache.." << endl;
801     //store.commit();
802     //progress.toMax();
803   }
804
805   ////////////////////////////////////////////////////////////////////////////
806
807   repo::RepoType RepoManager::probe( const Url &url ) const
808   {
809     if ( url.getScheme() == "dir" && ! PathInfo( url.getPathName() ).isDir() )
810     {
811       // Handle non existing local directory in advance, as
812       // MediaSetAccess does not support it.
813       return repo::RepoType::NONE;
814     }
815
816     try
817     {
818       MediaSetAccess access(url);
819       if ( access.doesFileExist("/repodata/repomd.xml") )
820         return repo::RepoType::RPMMD;
821       if ( access.doesFileExist("/content") )
822         return repo::RepoType::YAST2;
823
824       // if it is a local url of type dir
825       if ( (! media::MediaManager::downloads(url)) && ( url.getScheme() == "dir" ) )
826       {
827         Pathname path = Pathname(url.getPathName());
828         if ( PathInfo(path).isDir() )
829         {
830           // allow empty dirs for now
831           return repo::RepoType::RPMPLAINDIR;
832         }
833       }
834     }
835     catch ( const media::MediaException &e )
836     {
837       ZYPP_CAUGHT(e);
838       RepoException enew("Error trying to read from " + url.asString());
839       enew.remember(e);
840       ZYPP_THROW(enew);
841     }
842     catch ( const Exception &e )
843     {
844       ZYPP_CAUGHT(e);
845       Exception enew("Unknown error reading from " + url.asString());
846       enew.remember(e);
847       ZYPP_THROW(enew);
848     }
849
850     return repo::RepoType::NONE;
851   }
852
853   ////////////////////////////////////////////////////////////////////////////
854
855   void RepoManager::cleanCache( const RepoInfo &info,
856                                 const ProgressData::ReceiverFnc & progressrcv )
857   {
858     Pathname name = _pimpl->options.repoCachePath;
859     name += info.alias() + ".solv";
860     unlink (name);
861   }
862
863   ////////////////////////////////////////////////////////////////////////////
864
865   bool RepoManager::isCached( const RepoInfo &info ) const
866   {
867     Pathname name = _pimpl->options.repoCachePath;
868     return PathInfo(name + Pathname(info.alias()).extend(".solv")).isExist();
869   }
870
871   RepoStatus RepoManager::cacheStatus( const RepoInfo &info ) const
872   {
873     
874     Pathname base = _pimpl->options.repoCachePath + info.alias();
875     Pathname cookiefile = base.extend(".cookie");
876
877     return RepoStatus::fromCookieFile(cookiefile);
878   }
879
880   void RepoManager::setCacheStatus( const string &alias, const RepoStatus &status )
881   {
882     Pathname base = _pimpl->options.repoCachePath + alias;
883     Pathname cookiefile = base.extend(".cookie");
884
885     status.saveToCookieFile(cookiefile);
886   }
887
888   map<data::RecordId, Repo *> repo2solv;
889
890   Repository RepoManager::createFromCache( const RepoInfo &info,
891                                            const ProgressData::ReceiverFnc & progressrcv )
892   {
893     callback::SendReport<ProgressReport> report;
894     ProgressData progress;
895     progress.sendTo(ProgressReportAdaptor( progressrcv, report ));
896     //progress.sendTo( progressrcv );
897     progress.name(str::form(_("Reading repository '%s' cache"), info.name().c_str()));
898
899     //_pimpl->options.repoCachePath
900     if ( ! isCached( info ) )
901       ZYPP_THROW(RepoNotCachedException());
902
903     MIL << "Repository " << info.alias() << " is cached" << endl;
904
905     CombinedProgressData subprogrcv(progress);
906
907     repo::cached::RepoOptions opts( info, _pimpl->options.repoCachePath );
908     opts.readingResolvablesProgress = subprogrcv;
909     //opts.repo = repo;
910     repo::cached::RepoImpl::Ptr repoimpl =
911          new repo::cached::RepoImpl( opts );
912
913     //repoimpl->createResolvables();
914     repoimpl->resolvables();
915     // read the resolvables from cache
916     //return Repository::noRepository;
917     return Repository(repoimpl);
918   }
919
920   ////////////////////////////////////////////////////////////////////////////
921
922   /**
923    * Generate a non existing filename in a directory, using a base
924    * name. For example if a directory contains 3 files
925    *
926    * |-- bar
927    * |-- foo
928    * `-- moo
929    *
930    * If you try to generate a unique filename for this directory,
931    * based on "ruu" you will get "ruu", but if you use the base
932    * "foo" you will get "foo_1"
933    *
934    * \param dir Directory where the file needs to be unique
935    * \param basefilename string to base the filename on.
936    */
937   static Pathname generate_non_existing_name( const Pathname &dir,
938                                               const std::string &basefilename )
939   {
940     string final_filename = basefilename;
941     int counter = 1;
942     while ( PathInfo(dir + final_filename).isExist() )
943     {
944       final_filename = basefilename + "_" + str::numstring(counter);
945       counter++;
946     }
947     return dir + Pathname(final_filename);
948   }
949
950   ////////////////////////////////////////////////////////////////////////////
951
952   /**
953    * \short Generate a related filename from a repo info
954    *
955    * From a repo info, it will try to use the alias as a filename
956    * escaping it if necessary. Other fallbacks can be added to
957    * this function in case there is no way to use the alias
958    */
959   static std::string generate_filename( const RepoInfo &info )
960   {
961     std::string fnd="/";
962     std::string rep="_";
963     std::string filename = info.alias();
964     // replace slashes with underscores
965     size_t pos = filename.find(fnd);
966     while(pos!=string::npos)
967     {
968       filename.replace(pos,fnd.length(),rep);
969       pos = filename.find(fnd,pos+rep.length());
970     }
971     filename = Pathname(filename).extend(".repo").asString();
972     MIL << "generating filename for repo [" << info.alias() << "] : '" << filename << "'" << endl;
973     return filename;
974   }
975
976
977   ////////////////////////////////////////////////////////////////////////////
978
979   void RepoManager::addRepository( const RepoInfo &info,
980                                    const ProgressData::ReceiverFnc & progressrcv )
981   {
982     assert_alias(info);
983
984     ProgressData progress(100);
985     callback::SendReport<ProgressReport> report;
986     progress.sendTo( ProgressReportAdaptor( progressrcv, report ) );
987     progress.name(str::form(_("Adding repository '%s'"), info.name().c_str()));
988     progress.toMin();
989
990     std::list<RepoInfo> repos = knownRepositories();
991     for ( std::list<RepoInfo>::const_iterator it = repos.begin();
992           it != repos.end();
993           ++it )
994     {
995       if ( info.alias() == (*it).alias() )
996         ZYPP_THROW(RepoAlreadyExistsException(info.alias()));
997     }
998
999     RepoInfo tosave = info;
1000
1001     // check the first url for now
1002     if ( ZConfig::instance().repo_add_probe()
1003         || ( tosave.type() == RepoType::NONE && tosave.enabled()) )
1004     {
1005       DBG << "unknown repository type, probing" << endl;
1006
1007       RepoType probedtype;
1008       probedtype = probe(*tosave.baseUrlsBegin());
1009       if ( tosave.baseUrlsSize() > 0 )
1010       {
1011         if ( probedtype == RepoType::NONE )
1012           ZYPP_THROW(RepoUnknownTypeException());
1013         else
1014           tosave.setType(probedtype);
1015       }
1016     }
1017
1018     progress.set(50);
1019
1020     // assert the directory exists
1021     filesystem::assert_dir(_pimpl->options.knownReposPath);
1022
1023     Pathname repofile = generate_non_existing_name(_pimpl->options.knownReposPath,
1024                                                     generate_filename(tosave));
1025     // now we have a filename that does not exists
1026     MIL << "Saving repo in " << repofile << endl;
1027
1028     std::ofstream file(repofile.c_str());
1029     if (!file) {
1030       ZYPP_THROW (Exception( "Can't open " + repofile.asString() ) );
1031     }
1032
1033     tosave.dumpRepoOn(file);
1034     progress.toMax();
1035     MIL << "done" << endl;
1036   }
1037
1038   void RepoManager::addRepositories( const Url &url,
1039                                      const ProgressData::ReceiverFnc & progressrcv )
1040   {
1041     std::list<RepoInfo> knownrepos = knownRepositories();
1042     std::list<RepoInfo> repos = readRepoFile(url);
1043     for ( std::list<RepoInfo>::const_iterator it = repos.begin();
1044           it != repos.end();
1045           ++it )
1046     {
1047       // look if the alias is in the known repos.
1048       for ( std::list<RepoInfo>::const_iterator kit = knownrepos.begin();
1049           kit != knownrepos.end();
1050           ++kit )
1051       {
1052         if ( (*it).alias() == (*kit).alias() )
1053         {
1054           ERR << "To be added repo " << (*it).alias() << " conflicts with existing repo " << (*kit).alias() << endl;
1055           ZYPP_THROW(RepoAlreadyExistsException((*it).alias()));
1056         }
1057       }
1058     }
1059
1060     string filename = Pathname(url.getPathName()).basename();
1061
1062     if ( filename == Pathname() )
1063       ZYPP_THROW(RepoException("Invalid repo file name at " + url.asString() ));
1064
1065     // assert the directory exists
1066     filesystem::assert_dir(_pimpl->options.knownReposPath);
1067
1068     Pathname repofile = generate_non_existing_name(_pimpl->options.knownReposPath, filename);
1069     // now we have a filename that does not exists
1070     MIL << "Saving " << repos.size() << " repo" << ( repos.size() ? "s" : "" ) << " in " << repofile << endl;
1071
1072     std::ofstream file(repofile.c_str());
1073     if (!file) {
1074       ZYPP_THROW (Exception( "Can't open " + repofile.asString() ) );
1075     }
1076
1077     for ( std::list<RepoInfo>::const_iterator it = repos.begin();
1078           it != repos.end();
1079           ++it )
1080     {
1081       MIL << "Saving " << (*it).alias() << endl;
1082       (*it).dumpRepoOn(file);
1083     }
1084     MIL << "done" << endl;
1085   }
1086
1087   ////////////////////////////////////////////////////////////////////////////
1088
1089   void RepoManager::removeRepository( const RepoInfo & info,
1090                                       const ProgressData::ReceiverFnc & progressrcv)
1091   {
1092     ProgressData progress;
1093     callback::SendReport<ProgressReport> report;
1094     progress.sendTo( ProgressReportAdaptor( progressrcv, report ) );
1095     progress.name(str::form(_("Removing repository '%s'"), info.name().c_str()));
1096
1097     MIL << "Going to delete repo " << info.alias() << endl;
1098
1099     std::list<RepoInfo> repos = knownRepositories();
1100     for ( std::list<RepoInfo>::const_iterator it = repos.begin();
1101           it != repos.end();
1102           ++it )
1103     {
1104       // they can be the same only if the provided is empty, that means
1105       // the provided repo has no alias
1106       // then skip
1107       if ( (!info.alias().empty()) && ( info.alias() != (*it).alias() ) )
1108         continue;
1109
1110       // TODO match by url
1111
1112       // we have a matcing repository, now we need to know
1113       // where it does come from.
1114       RepoInfo todelete = *it;
1115       if (todelete.filepath().empty())
1116       {
1117         ZYPP_THROW(RepoException("Can't figure where the repo is stored"));
1118       }
1119       else
1120       {
1121         // figure how many repos are there in the file:
1122         std::list<RepoInfo> filerepos = repositories_in_file(todelete.filepath());
1123         if ( (filerepos.size() == 1) && ( filerepos.front().alias() == todelete.alias() ) )
1124         {
1125           // easy, only this one, just delete the file
1126           if ( filesystem::unlink(todelete.filepath()) != 0 )
1127           {
1128             ZYPP_THROW(RepoException("Can't delete " + todelete.filepath().asString()));
1129           }
1130           MIL << todelete.alias() << " sucessfully deleted." << endl;
1131         }
1132         else
1133         {
1134           // there are more repos in the same file
1135           // write them back except the deleted one.
1136           //TmpFile tmp;
1137           //std::ofstream file(tmp.path().c_str());
1138
1139           // assert the directory exists
1140           filesystem::assert_dir(todelete.filepath().dirname());
1141
1142           std::ofstream file(todelete.filepath().c_str());
1143           if (!file) {
1144             //ZYPP_THROW (Exception( "Can't open " + tmp.path().asString() ) );
1145             ZYPP_THROW (Exception( "Can't open " + todelete.filepath().asString() ) );
1146           }
1147           for ( std::list<RepoInfo>::const_iterator fit = filerepos.begin();
1148                 fit != filerepos.end();
1149                 ++fit )
1150           {
1151             if ( (*fit).alias() != todelete.alias() )
1152               (*fit).dumpRepoOn(file);
1153           }
1154         }
1155
1156         CombinedProgressData subprogrcv(progress, 70);
1157         CombinedProgressData cleansubprogrcv(progress, 30);
1158         // now delete it from cache
1159         if ( isCached(todelete) )
1160           cleanCache( todelete, subprogrcv);
1161         // now delete metadata (#301037)
1162         cleanMetadata( todelete, cleansubprogrcv);
1163         MIL << todelete.alias() << " sucessfully deleted." << endl;
1164         return;
1165       } // else filepath is empty
1166
1167     }
1168     // should not be reached on a sucess workflow
1169     ZYPP_THROW(RepoNotFoundException(info));
1170   }
1171
1172   ////////////////////////////////////////////////////////////////////////////
1173
1174   void RepoManager::modifyRepository( const std::string &alias,
1175                                       const RepoInfo & newinfo,
1176                                       const ProgressData::ReceiverFnc & progressrcv )
1177   {
1178     RepoInfo toedit = getRepositoryInfo(alias);
1179
1180     if (toedit.filepath().empty())
1181     {
1182       ZYPP_THROW(RepoException("Can't figure where the repo is stored"));
1183     }
1184     else
1185     {
1186       // figure how many repos are there in the file:
1187       std::list<RepoInfo> filerepos = repositories_in_file(toedit.filepath());
1188
1189       // there are more repos in the same file
1190       // write them back except the deleted one.
1191       //TmpFile tmp;
1192       //std::ofstream file(tmp.path().c_str());
1193
1194       // assert the directory exists
1195       filesystem::assert_dir(toedit.filepath().dirname());
1196
1197       std::ofstream file(toedit.filepath().c_str());
1198       if (!file) {
1199         //ZYPP_THROW (Exception( "Can't open " + tmp.path().asString() ) );
1200         ZYPP_THROW (Exception( "Can't open " + toedit.filepath().asString() ) );
1201       }
1202       for ( std::list<RepoInfo>::const_iterator fit = filerepos.begin();
1203             fit != filerepos.end();
1204             ++fit )
1205       {
1206           // if the alias is different, dump the original
1207           // if it is the same, dump the provided one
1208           if ( (*fit).alias() != toedit.alias() )
1209             (*fit).dumpRepoOn(file);
1210           else
1211             newinfo.dumpRepoOn(file);
1212       }
1213     }
1214   }
1215
1216   ////////////////////////////////////////////////////////////////////////////
1217
1218   RepoInfo RepoManager::getRepositoryInfo( const std::string &alias,
1219                                            const ProgressData::ReceiverFnc & progressrcv )
1220   {
1221     std::list<RepoInfo> repos = knownRepositories();
1222     for ( std::list<RepoInfo>::const_iterator it = repos.begin();
1223           it != repos.end();
1224           ++it )
1225     {
1226       if ( (*it).alias() == alias )
1227         return *it;
1228     }
1229     RepoInfo info;
1230     info.setAlias(info.alias());
1231     ZYPP_THROW(RepoNotFoundException(info));
1232   }
1233
1234   ////////////////////////////////////////////////////////////////////////////
1235
1236   RepoInfo RepoManager::getRepositoryInfo( const Url & url,
1237                                            const url::ViewOption & urlview,
1238                                            const ProgressData::ReceiverFnc & progressrcv )
1239   {
1240     std::list<RepoInfo> repos = knownRepositories();
1241     for ( std::list<RepoInfo>::const_iterator it = repos.begin();
1242           it != repos.end();
1243           ++it )
1244     {
1245       for(RepoInfo::urls_const_iterator urlit = (*it).baseUrlsBegin();
1246           urlit != (*it).baseUrlsEnd();
1247           ++urlit)
1248       {
1249         if ((*urlit).asString(urlview) == url.asString(urlview))
1250           return *it;
1251       }
1252     }
1253     RepoInfo info;
1254     info.setAlias(info.alias());
1255     info.setBaseUrl(url);
1256     ZYPP_THROW(RepoNotFoundException(info));
1257   }
1258
1259   ////////////////////////////////////////////////////////////////////////////
1260
1261   std::ostream & operator<<( std::ostream & str, const RepoManager & obj )
1262   {
1263     return str << *obj._pimpl;
1264   }
1265
1266   /////////////////////////////////////////////////////////////////
1267 } // namespace zypp
1268 ///////////////////////////////////////////////////////////////////