]> git.saurik.com Git - apt.git/blame - apt-pkg/cachefile.cc
drop obsolete explicit :none handling in pkgCacheGen
[apt.git] / apt-pkg / cachefile.cc
CommitLineData
2d11135a
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
0077d829 3// $Id: cachefile.cc,v 1.8 2002/04/27 04:28:04 jgg Exp $
2d11135a
AL
4/* ######################################################################
5
6 CacheFile - Simple wrapper class for opening, generating and whatnot
7
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.
11
12 ##################################################################### */
13 /*}}}*/
14// Include Files /*{{{*/
ea542140
DK
15#include <config.h>
16
2d11135a
AL
17#include <apt-pkg/cachefile.h>
18#include <apt-pkg/error.h>
19#include <apt-pkg/sourcelist.h>
20#include <apt-pkg/pkgcachegen.h>
21#include <apt-pkg/configuration.h>
b2e465d6
AL
22#include <apt-pkg/policy.h>
23#include <apt-pkg/pkgsystem.h>
614adaa0 24#include <apt-pkg/fileutl.h>
472ff00e 25#include <apt-pkg/progress.h>
453b82a3
DK
26#include <apt-pkg/depcache.h>
27#include <apt-pkg/mmap.h>
28#include <apt-pkg/pkgcache.h>
29
30#include <string.h>
31#include <unistd.h>
32#include <string>
33#include <vector>
ea542140 34
b2e465d6 35#include <apti18n.h>
2d11135a 36 /*}}}*/
2d11135a 37// CacheFile::CacheFile - Constructor /*{{{*/
9112f777
DK
38pkgCacheFile::pkgCacheFile() : d(NULL), ExternOwner(false), Map(NULL), Cache(NULL),
39 DCache(NULL), SrcList(NULL), Policy(NULL)
40{
41}
42pkgCacheFile::pkgCacheFile(pkgDepCache * const Owner) : d(NULL), ExternOwner(true),
43 Map(&Owner->GetCache().GetMap()), Cache(&Owner->GetCache()),
44 DCache(Owner), SrcList(NULL), Policy(NULL)
2d11135a
AL
45{
46}
47 /*}}}*/
b2e465d6 48// CacheFile::~CacheFile - Destructor /*{{{*/
2d11135a
AL
49// ---------------------------------------------------------------------
50/* */
51pkgCacheFile::~pkgCacheFile()
52{
9112f777
DK
53 if (ExternOwner == false)
54 {
55 delete DCache;
56 delete Cache;
57 delete Map;
58 }
b2e465d6 59 delete Policy;
3f8621c5 60 delete SrcList;
9112f777
DK
61 if (ExternOwner == false)
62 _system->UnLock(true);
3f8621c5 63}
2d11135a 64 /*}}}*/
0077d829 65// CacheFile::BuildCaches - Open and build the cache files /*{{{*/
2d11135a
AL
66// ---------------------------------------------------------------------
67/* */
2e5f4e45 68bool pkgCacheFile::BuildCaches(OpProgress *Progress, bool WithLock)
2d11135a 69{
3f8621c5
DK
70 if (Cache != NULL)
71 return true;
72
73 if (_config->FindB("pkgCacheFile::Generate", true) == false)
74 {
3d8232bf
DK
75 FileFd file(_config->FindFile("Dir::Cache::pkgcache"), FileFd::ReadOnly);
76 Map = new MMap(file, MMap::Public|MMap::ReadOnly);
3f8621c5
DK
77 Cache = new pkgCache(Map);
78 if (_error->PendingError() == true)
79 return false;
80 return true;
81 }
82
6009e60d 83 const bool ErrorWasEmpty = _error->empty();
2d11135a 84 if (WithLock == true)
b2e465d6
AL
85 if (_system->Lock() == false)
86 return false;
2d11135a 87
c37b9502
AL
88 if (_config->FindB("Debug::NoLocking",false) == true)
89 WithLock = false;
90
2d11135a
AL
91 if (_error->PendingError() == true)
92 return false;
3f8621c5
DK
93
94 BuildSourceList(Progress);
b2e465d6
AL
95
96 // Read the caches
3f8621c5 97 bool Res = pkgCacheGenerator::MakeStatusCache(*SrcList,Progress,&Map,!WithLock);
2e5f4e45
DK
98 if (Progress != NULL)
99 Progress->Done();
b2e465d6
AL
100 if (Res == false)
101 return _error->Error(_("The package lists or status file could not be parsed or opened."));
102
103 /* This sux, remove it someday */
6009e60d 104 if (ErrorWasEmpty == true && _error->empty() == false)
a7c835af 105 _error->Warning(_("You may want to run apt-get update to correct these problems"));
b2e465d6
AL
106
107 Cache = new pkgCache(Map);
108 if (_error->PendingError() == true)
109 return false;
0077d829
AL
110 return true;
111}
112 /*}}}*/
3f8621c5
DK
113// CacheFile::BuildSourceList - Open and build all relevant sources.list/*{{{*/
114// ---------------------------------------------------------------------
115/* */
65512241 116bool pkgCacheFile::BuildSourceList(OpProgress * /*Progress*/)
3f8621c5
DK
117{
118 if (SrcList != NULL)
119 return true;
120
121 SrcList = new pkgSourceList();
122 if (SrcList->ReadMainList() == false)
123 return _error->Error(_("The list of sources could not be read."));
124 return true;
125}
126 /*}}}*/
2e5f4e45 127// CacheFile::BuildPolicy - Open and build all relevant preferences /*{{{*/
0077d829
AL
128// ---------------------------------------------------------------------
129/* */
65512241 130bool pkgCacheFile::BuildPolicy(OpProgress * /*Progress*/)
0077d829 131{
3f8621c5
DK
132 if (Policy != NULL)
133 return true;
134
b2e465d6
AL
135 Policy = new pkgPolicy(Cache);
136 if (_error->PendingError() == true)
137 return false;
6009e60d 138
e68ca100 139 if (ReadPinFile(*Policy) == false || ReadPinDir(*Policy) == false)
b2e465d6 140 return false;
2e5f4e45
DK
141
142 return true;
143}
144 /*}}}*/
145// CacheFile::BuildDepCache - Open and build the dependency cache /*{{{*/
146// ---------------------------------------------------------------------
147/* */
148bool pkgCacheFile::BuildDepCache(OpProgress *Progress)
149{
3f8621c5
DK
150 if (DCache != NULL)
151 return true;
152
592d06b6
MV
153 if (BuildPolicy(Progress) == false)
154 return false;
155
b2e465d6
AL
156 DCache = new pkgDepCache(Cache,Policy);
157 if (_error->PendingError() == true)
158 return false;
2e5f4e45
DK
159
160 DCache->Init(Progress);
161 return true;
162}
163 /*}}}*/
164// CacheFile::Open - Open the cache files, creating if necessary /*{{{*/
165// ---------------------------------------------------------------------
166/* */
167bool pkgCacheFile::Open(OpProgress *Progress, bool WithLock)
168{
169 if (BuildCaches(Progress,WithLock) == false)
170 return false;
171
172 if (BuildPolicy(Progress) == false)
173 return false;
174
175 if (BuildDepCache(Progress) == false)
176 return false;
177
178 if (Progress != NULL)
179 Progress->Done();
2d11135a
AL
180 if (_error->PendingError() == true)
181 return false;
2d11135a
AL
182
183 return true;
184}
185 /*}}}*/
8de79b68
DK
186// CacheFile::RemoveCaches - remove all cache files from disk /*{{{*/
187// ---------------------------------------------------------------------
188/* */
189void pkgCacheFile::RemoveCaches()
190{
191 std::string const pkgcache = _config->FindFile("Dir::cache::pkgcache");
192 std::string const srcpkgcache = _config->FindFile("Dir::cache::srcpkgcache");
193
194 if (pkgcache.empty() == false && RealFileExists(pkgcache) == true)
195 unlink(pkgcache.c_str());
196 if (srcpkgcache.empty() == false && RealFileExists(srcpkgcache) == true)
197 unlink(srcpkgcache.c_str());
fbb2c7e0
DK
198 if (pkgcache.empty() == false)
199 {
200 std::string cachedir = flNotFile(pkgcache);
201 std::string cachefile = flNotDir(pkgcache);
c0d58f42 202 if (cachedir.empty() != true && cachefile.empty() != true && DirectoryExists(cachedir) == true)
fbb2c7e0
DK
203 {
204 cachefile.append(".");
205 std::vector<std::string> caches = GetListOfFilesInDir(cachedir, false);
206 for (std::vector<std::string>::const_iterator file = caches.begin(); file != caches.end(); ++file)
207 {
208 std::string nuke = flNotDir(*file);
209 if (strncmp(cachefile.c_str(), nuke.c_str(), cachefile.length()) != 0)
210 continue;
211 unlink(file->c_str());
212 }
213 }
214 }
215
216 if (srcpkgcache.empty() == true)
217 return;
218
219 std::string cachedir = flNotFile(srcpkgcache);
220 std::string cachefile = flNotDir(srcpkgcache);
c0d58f42 221 if (cachedir.empty() == true || cachefile.empty() == true || DirectoryExists(cachedir) == false)
fbb2c7e0
DK
222 return;
223 cachefile.append(".");
224 std::vector<std::string> caches = GetListOfFilesInDir(cachedir, false);
225 for (std::vector<std::string>::const_iterator file = caches.begin(); file != caches.end(); ++file)
226 {
227 std::string nuke = flNotDir(*file);
228 if (strncmp(cachefile.c_str(), nuke.c_str(), cachefile.length()) != 0)
229 continue;
230 unlink(file->c_str());
231 }
8de79b68
DK
232}
233 /*}}}*/
b2e465d6
AL
234// CacheFile::Close - close the cache files /*{{{*/
235// ---------------------------------------------------------------------
236/* */
237void pkgCacheFile::Close()
238{
9112f777
DK
239 if (ExternOwner == false)
240 {
241 delete DCache;
242 delete Cache;
243 delete Map;
244 }
245 else
246 ExternOwner = false;
b2e465d6 247 delete Policy;
3f8621c5 248 delete SrcList;
b2e465d6
AL
249 _system->UnLock(true);
250
3f8621c5
DK
251 Map = NULL;
252 DCache = NULL;
253 Policy = NULL;
254 Cache = NULL;
255 SrcList = NULL;
b2e465d6
AL
256}
257 /*}}}*/