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