1 // -*- mode: cpp; mode: fold -*-
3 // $Id: cachefile.cc,v 1.8 2002/04/27 04:28:04 jgg Exp $
4 /* ######################################################################
6 CacheFile - Simple wrapper class for opening, generating and whatnot
8 This class implements a simple 2 line mechanism to open various sorts
9 of caches. It can operate as root, as not root, show progress and so on,
10 it transparently handles everything necessary.
12 ##################################################################### */
14 // Include Files /*{{{*/
15 #include <apt-pkg/cachefile.h>
16 #include <apt-pkg/error.h>
17 #include <apt-pkg/sourcelist.h>
18 #include <apt-pkg/pkgcachegen.h>
19 #include <apt-pkg/configuration.h>
20 #include <apt-pkg/policy.h>
21 #include <apt-pkg/pkgsystem.h>
22 #include <apt-pkg/acquire-item.h>
23 #include <apt-pkg/fileutl.h>
28 // CacheFile::CacheFile - Constructor /*{{{*/
29 // ---------------------------------------------------------------------
31 pkgCacheFile::pkgCacheFile() : Map(0), Cache(0), DCache(0), Policy(0)
35 // CacheFile::~CacheFile - Destructor /*{{{*/
36 // ---------------------------------------------------------------------
38 pkgCacheFile::~pkgCacheFile()
44 _system
->UnLock(true);
47 // CacheFile::BuildCaches - Open and build the cache files /*{{{*/
48 // ---------------------------------------------------------------------
50 bool pkgCacheFile::BuildCaches(OpProgress
&Progress
,bool WithLock
)
53 if (_system
->Lock() == false)
56 if (_config
->FindB("Debug::NoLocking",false) == true)
59 if (_error
->PendingError() == true)
62 // Read the source list
64 if (List
.ReadMainList() == false)
65 return _error
->Error(_("The list of sources could not be read."));
68 bool Res
= pkgMakeStatusCache(List
,Progress
,&Map
,!WithLock
);
71 return _error
->Error(_("The package lists or status file could not be parsed or opened."));
73 /* This sux, remove it someday */
74 if (_error
->empty() == false)
75 _error
->Warning(_("You may want to run apt-get update to correct these problems"));
77 Cache
= new pkgCache(Map
);
78 if (_error
->PendingError() == true)
83 // CacheFile::Open - Open the cache files, creating if necessary /*{{{*/
84 // ---------------------------------------------------------------------
86 bool pkgCacheFile::Open(OpProgress
&Progress
,bool WithLock
)
88 if (BuildCaches(Progress
,WithLock
) == false)
92 Policy
= new pkgPolicy(Cache
);
93 if (_error
->PendingError() == true)
95 if (ReadPinFile(*Policy
) == false)
98 // Create the dependency cache
99 DCache
= new pkgDepCache(Cache
,Policy
);
100 if (_error
->PendingError() == true)
103 DCache
->Init(&Progress
);
105 if (_error
->PendingError() == true)
112 // CacheFile::ListUpdate - update the cache files /*{{{*/
113 // ---------------------------------------------------------------------
114 /* This is a simple wrapper to update the cache. it will fetch stuff
115 * from the network (or any other sources defined in sources.list)
117 bool pkgCacheFile::ListUpdate(pkgAcquireStatus
&Stat
, pkgSourceList
&List
)
119 pkgAcquire
Fetcher(&Stat
);
121 // Populate it with the source selection
122 if (List
.GetIndexes(&Fetcher
) == false)
126 RunScripts("APT::Update::Pre-Invoke");
129 if (Fetcher
.Run() == pkgAcquire::Failed
)
133 bool TransientNetworkFailure
= false;
134 for (pkgAcquire::ItemIterator I
= Fetcher
.ItemsBegin();
135 I
!= Fetcher
.ItemsEnd(); I
++)
137 if ((*I
)->Status
== pkgAcquire::Item::StatDone
)
142 fprintf(stderr
,_("Failed to fetch %s %s\n"),(*I
)->DescURI().c_str(),
143 (*I
)->ErrorText
.c_str());
145 if ((*I
)->Status
== pkgAcquire::Item::StatTransientNetworkError
)
147 TransientNetworkFailure
= true;
154 // Clean out any old list files
155 // Keep "APT::Get::List-Cleanup" name for compatibility, but
156 // this is really a global option for the APT library now
157 if (!TransientNetworkFailure
&& !Failed
&&
158 (_config
->FindB("APT::Get::List-Cleanup",true) == true ||
159 _config
->FindB("APT::List-Cleanup",true) == true))
161 if (Fetcher
.Clean(_config
->FindDir("Dir::State::lists")) == false ||
162 Fetcher
.Clean(_config
->FindDir("Dir::State::lists") + "partial/") == false)
163 // something went wrong with the clean
167 if (TransientNetworkFailure
== true)
168 _error
->Warning(_("Some index files failed to download, they have been ignored, or old ones used instead."));
169 else if (Failed
== true)
170 return _error
->Error(_("Some index files failed to download, they have been ignored, or old ones used instead."));
173 // Run the scripts if all was fine
174 RunScripts("APT::Update::Post-Invoke");
179 // CacheFile::Close - close the cache files /*{{{*/
180 // ---------------------------------------------------------------------
182 void pkgCacheFile::Close()
188 _system
->UnLock(true);