avoid exception if missing cookiefile
[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( "/usr/bin/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 #warning whats this map for
896   map<data::RecordId, Repo *> repo2solv;
897
898   void RepoManager::loadFromCache( const RepoInfo &info,
899                                    const ProgressData::ReceiverFnc & progressrcv )
900   {
901     assert_alias(info);
902     loadFromCache( info.alias(), progressrcv );
903   }
904
905   void RepoManager::loadFromCache( const std::string &alias,
906                                    const ProgressData::ReceiverFnc & progressrcv )
907   {
908     sat::Pool satpool( sat::Pool::instance() );
909
910     Pathname solvfile = (_pimpl->options.repoCachePath + alias).extend(".solv");
911
912     if ( ! PathInfo(solvfile).isExist() )
913       ZYPP_THROW(RepoNotCachedException());
914
915     sat::Repo repo = satpool.addRepoSolv(solvfile, alias );
916   }
917
918
919   ////////////////////////////////////////////////////////////////////////////
920
921   /**
922    * Generate a non existing filename in a directory, using a base
923    * name. For example if a directory contains 3 files
924    *
925    * |-- bar
926    * |-- foo
927    * `-- moo
928    *
929    * If you try to generate a unique filename for this directory,
930    * based on "ruu" you will get "ruu", but if you use the base
931    * "foo" you will get "foo_1"
932    *
933    * \param dir Directory where the file needs to be unique
934    * \param basefilename string to base the filename on.
935    */
936   static Pathname generate_non_existing_name( const Pathname &dir,
937                                               const std::string &basefilename )
938   {
939     string final_filename = basefilename;
940     int counter = 1;
941     while ( PathInfo(dir + final_filename).isExist() )
942     {
943       final_filename = basefilename + "_" + str::numstring(counter);
944       counter++;
945     }
946     return dir + Pathname(final_filename);
947   }
948
949   ////////////////////////////////////////////////////////////////////////////
950
951   /**
952    * \short Generate a related filename from a repo info
953    *
954    * From a repo info, it will try to use the alias as a filename
955    * escaping it if necessary. Other fallbacks can be added to
956    * this function in case there is no way to use the alias
957    */
958   static std::string generate_filename( const RepoInfo &info )
959   {
960     std::string fnd="/";
961     std::string rep="_";
962     std::string filename = info.alias();
963     // replace slashes with underscores
964     size_t pos = filename.find(fnd);
965     while(pos!=string::npos)
966     {
967       filename.replace(pos,fnd.length(),rep);
968       pos = filename.find(fnd,pos+rep.length());
969     }
970     filename = Pathname(filename).extend(".repo").asString();
971     MIL << "generating filename for repo [" << info.alias() << "] : '" << filename << "'" << endl;
972     return filename;
973   }
974
975
976   ////////////////////////////////////////////////////////////////////////////
977
978   void RepoManager::addRepository( const RepoInfo &info,
979                                    const ProgressData::ReceiverFnc & progressrcv )
980   {
981     assert_alias(info);
982
983     ProgressData progress(100);
984     callback::SendReport<ProgressReport> report;
985     progress.sendTo( ProgressReportAdaptor( progressrcv, report ) );
986     progress.name(str::form(_("Adding repository '%s'"), info.name().c_str()));
987     progress.toMin();
988
989     std::list<RepoInfo> repos = knownRepositories();
990     for ( std::list<RepoInfo>::const_iterator it = repos.begin();
991           it != repos.end();
992           ++it )
993     {
994       if ( info.alias() == (*it).alias() )
995         ZYPP_THROW(RepoAlreadyExistsException(info.alias()));
996     }
997
998     RepoInfo tosave = info;
999
1000     // check the first url for now
1001     if ( ZConfig::instance().repo_add_probe()
1002         || ( tosave.type() == RepoType::NONE && tosave.enabled()) )
1003     {
1004       DBG << "unknown repository type, probing" << endl;
1005
1006       RepoType probedtype;
1007       probedtype = probe(*tosave.baseUrlsBegin());
1008       if ( tosave.baseUrlsSize() > 0 )
1009       {
1010         if ( probedtype == RepoType::NONE )
1011           ZYPP_THROW(RepoUnknownTypeException());
1012         else
1013           tosave.setType(probedtype);
1014       }
1015     }
1016
1017     progress.set(50);
1018
1019     // assert the directory exists
1020     filesystem::assert_dir(_pimpl->options.knownReposPath);
1021
1022     Pathname repofile = generate_non_existing_name(_pimpl->options.knownReposPath,
1023                                                     generate_filename(tosave));
1024     // now we have a filename that does not exists
1025     MIL << "Saving repo in " << repofile << endl;
1026
1027     std::ofstream file(repofile.c_str());
1028     if (!file) {
1029       ZYPP_THROW (Exception( "Can't open " + repofile.asString() ) );
1030     }
1031
1032     tosave.dumpRepoOn(file);
1033     progress.toMax();
1034     MIL << "done" << endl;
1035   }
1036
1037   void RepoManager::addRepositories( const Url &url,
1038                                      const ProgressData::ReceiverFnc & progressrcv )
1039   {
1040     std::list<RepoInfo> knownrepos = knownRepositories();
1041     std::list<RepoInfo> repos = readRepoFile(url);
1042     for ( std::list<RepoInfo>::const_iterator it = repos.begin();
1043           it != repos.end();
1044           ++it )
1045     {
1046       // look if the alias is in the known repos.
1047       for ( std::list<RepoInfo>::const_iterator kit = knownrepos.begin();
1048           kit != knownrepos.end();
1049           ++kit )
1050       {
1051         if ( (*it).alias() == (*kit).alias() )
1052         {
1053           ERR << "To be added repo " << (*it).alias() << " conflicts with existing repo " << (*kit).alias() << endl;
1054           ZYPP_THROW(RepoAlreadyExistsException((*it).alias()));
1055         }
1056       }
1057     }
1058
1059     string filename = Pathname(url.getPathName()).basename();
1060
1061     if ( filename == Pathname() )
1062       ZYPP_THROW(RepoException("Invalid repo file name at " + url.asString() ));
1063
1064     // assert the directory exists
1065     filesystem::assert_dir(_pimpl->options.knownReposPath);
1066
1067     Pathname repofile = generate_non_existing_name(_pimpl->options.knownReposPath, filename);
1068     // now we have a filename that does not exists
1069     MIL << "Saving " << repos.size() << " repo" << ( repos.size() ? "s" : "" ) << " in " << repofile << endl;
1070
1071     std::ofstream file(repofile.c_str());
1072     if (!file) {
1073       ZYPP_THROW (Exception( "Can't open " + repofile.asString() ) );
1074     }
1075
1076     for ( std::list<RepoInfo>::const_iterator it = repos.begin();
1077           it != repos.end();
1078           ++it )
1079     {
1080       MIL << "Saving " << (*it).alias() << endl;
1081       (*it).dumpRepoOn(file);
1082     }
1083     MIL << "done" << endl;
1084   }
1085
1086   ////////////////////////////////////////////////////////////////////////////
1087
1088   void RepoManager::removeRepository( const RepoInfo & info,
1089                                       const ProgressData::ReceiverFnc & progressrcv)
1090   {
1091     ProgressData progress;
1092     callback::SendReport<ProgressReport> report;
1093     progress.sendTo( ProgressReportAdaptor( progressrcv, report ) );
1094     progress.name(str::form(_("Removing repository '%s'"), info.name().c_str()));
1095
1096     MIL << "Going to delete repo " << info.alias() << endl;
1097
1098     std::list<RepoInfo> repos = knownRepositories();
1099     for ( std::list<RepoInfo>::const_iterator it = repos.begin();
1100           it != repos.end();
1101           ++it )
1102     {
1103       // they can be the same only if the provided is empty, that means
1104       // the provided repo has no alias
1105       // then skip
1106       if ( (!info.alias().empty()) && ( info.alias() != (*it).alias() ) )
1107         continue;
1108
1109       // TODO match by url
1110
1111       // we have a matcing repository, now we need to know
1112       // where it does come from.
1113       RepoInfo todelete = *it;
1114       if (todelete.filepath().empty())
1115       {
1116         ZYPP_THROW(RepoException("Can't figure where the repo is stored"));
1117       }
1118       else
1119       {
1120         // figure how many repos are there in the file:
1121         std::list<RepoInfo> filerepos = repositories_in_file(todelete.filepath());
1122         if ( (filerepos.size() == 1) && ( filerepos.front().alias() == todelete.alias() ) )
1123         {
1124           // easy, only this one, just delete the file
1125           if ( filesystem::unlink(todelete.filepath()) != 0 )
1126           {
1127             ZYPP_THROW(RepoException("Can't delete " + todelete.filepath().asString()));
1128           }
1129           MIL << todelete.alias() << " sucessfully deleted." << endl;
1130         }
1131         else
1132         {
1133           // there are more repos in the same file
1134           // write them back except the deleted one.
1135           //TmpFile tmp;
1136           //std::ofstream file(tmp.path().c_str());
1137
1138           // assert the directory exists
1139           filesystem::assert_dir(todelete.filepath().dirname());
1140
1141           std::ofstream file(todelete.filepath().c_str());
1142           if (!file) {
1143             //ZYPP_THROW (Exception( "Can't open " + tmp.path().asString() ) );
1144             ZYPP_THROW (Exception( "Can't open " + todelete.filepath().asString() ) );
1145           }
1146           for ( std::list<RepoInfo>::const_iterator fit = filerepos.begin();
1147                 fit != filerepos.end();
1148                 ++fit )
1149           {
1150             if ( (*fit).alias() != todelete.alias() )
1151               (*fit).dumpRepoOn(file);
1152           }
1153         }
1154
1155         CombinedProgressData subprogrcv(progress, 70);
1156         CombinedProgressData cleansubprogrcv(progress, 30);
1157         // now delete it from cache
1158         if ( isCached(todelete) )
1159           cleanCache( todelete, subprogrcv);
1160         // now delete metadata (#301037)
1161         cleanMetadata( todelete, cleansubprogrcv);
1162         MIL << todelete.alias() << " sucessfully deleted." << endl;
1163         return;
1164       } // else filepath is empty
1165
1166     }
1167     // should not be reached on a sucess workflow
1168     ZYPP_THROW(RepoNotFoundException(info));
1169   }
1170
1171   ////////////////////////////////////////////////////////////////////////////
1172
1173   void RepoManager::modifyRepository( const std::string &alias,
1174                                       const RepoInfo & newinfo,
1175                                       const ProgressData::ReceiverFnc & progressrcv )
1176   {
1177     RepoInfo toedit = getRepositoryInfo(alias);
1178
1179     if (toedit.filepath().empty())
1180     {
1181       ZYPP_THROW(RepoException("Can't figure where the repo is stored"));
1182     }
1183     else
1184     {
1185       // figure how many repos are there in the file:
1186       std::list<RepoInfo> filerepos = repositories_in_file(toedit.filepath());
1187
1188       // there are more repos in the same file
1189       // write them back except the deleted one.
1190       //TmpFile tmp;
1191       //std::ofstream file(tmp.path().c_str());
1192
1193       // assert the directory exists
1194       filesystem::assert_dir(toedit.filepath().dirname());
1195
1196       std::ofstream file(toedit.filepath().c_str());
1197       if (!file) {
1198         //ZYPP_THROW (Exception( "Can't open " + tmp.path().asString() ) );
1199         ZYPP_THROW (Exception( "Can't open " + toedit.filepath().asString() ) );
1200       }
1201       for ( std::list<RepoInfo>::const_iterator fit = filerepos.begin();
1202             fit != filerepos.end();
1203             ++fit )
1204       {
1205           // if the alias is different, dump the original
1206           // if it is the same, dump the provided one
1207           if ( (*fit).alias() != toedit.alias() )
1208             (*fit).dumpRepoOn(file);
1209           else
1210             newinfo.dumpRepoOn(file);
1211       }
1212     }
1213   }
1214
1215   ////////////////////////////////////////////////////////////////////////////
1216
1217   RepoInfo RepoManager::getRepositoryInfo( const std::string &alias,
1218                                            const ProgressData::ReceiverFnc & progressrcv )
1219   {
1220     std::list<RepoInfo> repos = knownRepositories();
1221     for ( std::list<RepoInfo>::const_iterator it = repos.begin();
1222           it != repos.end();
1223           ++it )
1224     {
1225       if ( (*it).alias() == alias )
1226         return *it;
1227     }
1228     RepoInfo info;
1229     info.setAlias(info.alias());
1230     ZYPP_THROW(RepoNotFoundException(info));
1231   }
1232
1233   ////////////////////////////////////////////////////////////////////////////
1234
1235   RepoInfo RepoManager::getRepositoryInfo( const Url & url,
1236                                            const url::ViewOption & urlview,
1237                                            const ProgressData::ReceiverFnc & progressrcv )
1238   {
1239     std::list<RepoInfo> repos = knownRepositories();
1240     for ( std::list<RepoInfo>::const_iterator it = repos.begin();
1241           it != repos.end();
1242           ++it )
1243     {
1244       for(RepoInfo::urls_const_iterator urlit = (*it).baseUrlsBegin();
1245           urlit != (*it).baseUrlsEnd();
1246           ++urlit)
1247       {
1248         if ((*urlit).asString(urlview) == url.asString(urlview))
1249           return *it;
1250       }
1251     }
1252     RepoInfo info;
1253     info.setAlias(info.alias());
1254     info.setBaseUrl(url);
1255     ZYPP_THROW(RepoNotFoundException(info));
1256   }
1257
1258   ////////////////////////////////////////////////////////////////////////////
1259
1260   std::ostream & operator<<( std::ostream & str, const RepoManager & obj )
1261   {
1262     return str << *obj._pimpl;
1263   }
1264
1265   /////////////////////////////////////////////////////////////////
1266 } // namespace zypp
1267 ///////////////////////////////////////////////////////////////////