]>
Commit | Line | Data |
---|---|---|
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 AL |
37 | // CacheFile::CacheFile - Constructor /*{{{*/ |
38 | // --------------------------------------------------------------------- | |
39 | /* */ | |
dcaa1185 | 40 | pkgCacheFile::pkgCacheFile() : d(NULL), Map(NULL), Cache(NULL), DCache(NULL), |
a5de4117 | 41 | SrcList(NULL), Policy(NULL) |
2d11135a AL |
42 | { |
43 | } | |
44 | /*}}}*/ | |
b2e465d6 | 45 | // CacheFile::~CacheFile - Destructor /*{{{*/ |
2d11135a AL |
46 | // --------------------------------------------------------------------- |
47 | /* */ | |
48 | pkgCacheFile::~pkgCacheFile() | |
49 | { | |
b2e465d6 AL |
50 | delete DCache; |
51 | delete Policy; | |
3f8621c5 | 52 | delete SrcList; |
2d11135a AL |
53 | delete Cache; |
54 | delete Map; | |
b2e465d6 | 55 | _system->UnLock(true); |
3f8621c5 | 56 | } |
2d11135a | 57 | /*}}}*/ |
0077d829 | 58 | // CacheFile::BuildCaches - Open and build the cache files /*{{{*/ |
2d11135a AL |
59 | // --------------------------------------------------------------------- |
60 | /* */ | |
2e5f4e45 | 61 | bool pkgCacheFile::BuildCaches(OpProgress *Progress, bool WithLock) |
2d11135a | 62 | { |
3f8621c5 DK |
63 | if (Cache != NULL) |
64 | return true; | |
65 | ||
66 | if (_config->FindB("pkgCacheFile::Generate", true) == false) | |
67 | { | |
68 | Map = new MMap(*new FileFd(_config->FindFile("Dir::Cache::pkgcache"), | |
69 | FileFd::ReadOnly),MMap::Public|MMap::ReadOnly); | |
70 | Cache = new pkgCache(Map); | |
71 | if (_error->PendingError() == true) | |
72 | return false; | |
73 | return true; | |
74 | } | |
75 | ||
6009e60d | 76 | const bool ErrorWasEmpty = _error->empty(); |
2d11135a | 77 | if (WithLock == true) |
b2e465d6 AL |
78 | if (_system->Lock() == false) |
79 | return false; | |
2d11135a | 80 | |
c37b9502 AL |
81 | if (_config->FindB("Debug::NoLocking",false) == true) |
82 | WithLock = false; | |
83 | ||
2d11135a AL |
84 | if (_error->PendingError() == true) |
85 | return false; | |
3f8621c5 DK |
86 | |
87 | BuildSourceList(Progress); | |
b2e465d6 AL |
88 | |
89 | // Read the caches | |
3f8621c5 | 90 | bool Res = pkgCacheGenerator::MakeStatusCache(*SrcList,Progress,&Map,!WithLock); |
2e5f4e45 DK |
91 | if (Progress != NULL) |
92 | Progress->Done(); | |
b2e465d6 AL |
93 | if (Res == false) |
94 | return _error->Error(_("The package lists or status file could not be parsed or opened.")); | |
95 | ||
96 | /* This sux, remove it someday */ | |
6009e60d | 97 | if (ErrorWasEmpty == true && _error->empty() == false) |
a7c835af | 98 | _error->Warning(_("You may want to run apt-get update to correct these problems")); |
b2e465d6 AL |
99 | |
100 | Cache = new pkgCache(Map); | |
101 | if (_error->PendingError() == true) | |
102 | return false; | |
0077d829 AL |
103 | return true; |
104 | } | |
105 | /*}}}*/ | |
3f8621c5 DK |
106 | // CacheFile::BuildSourceList - Open and build all relevant sources.list/*{{{*/ |
107 | // --------------------------------------------------------------------- | |
108 | /* */ | |
65512241 | 109 | bool pkgCacheFile::BuildSourceList(OpProgress * /*Progress*/) |
3f8621c5 DK |
110 | { |
111 | if (SrcList != NULL) | |
112 | return true; | |
113 | ||
114 | SrcList = new pkgSourceList(); | |
115 | if (SrcList->ReadMainList() == false) | |
116 | return _error->Error(_("The list of sources could not be read.")); | |
117 | return true; | |
118 | } | |
119 | /*}}}*/ | |
2e5f4e45 | 120 | // CacheFile::BuildPolicy - Open and build all relevant preferences /*{{{*/ |
0077d829 AL |
121 | // --------------------------------------------------------------------- |
122 | /* */ | |
65512241 | 123 | bool pkgCacheFile::BuildPolicy(OpProgress * /*Progress*/) |
0077d829 | 124 | { |
3f8621c5 DK |
125 | if (Policy != NULL) |
126 | return true; | |
127 | ||
b2e465d6 AL |
128 | Policy = new pkgPolicy(Cache); |
129 | if (_error->PendingError() == true) | |
130 | return false; | |
6009e60d | 131 | |
e68ca100 | 132 | if (ReadPinFile(*Policy) == false || ReadPinDir(*Policy) == false) |
b2e465d6 | 133 | return false; |
2e5f4e45 DK |
134 | |
135 | return true; | |
136 | } | |
137 | /*}}}*/ | |
138 | // CacheFile::BuildDepCache - Open and build the dependency cache /*{{{*/ | |
139 | // --------------------------------------------------------------------- | |
140 | /* */ | |
141 | bool pkgCacheFile::BuildDepCache(OpProgress *Progress) | |
142 | { | |
3f8621c5 DK |
143 | if (DCache != NULL) |
144 | return true; | |
145 | ||
b2e465d6 AL |
146 | DCache = new pkgDepCache(Cache,Policy); |
147 | if (_error->PendingError() == true) | |
148 | return false; | |
2e5f4e45 DK |
149 | |
150 | DCache->Init(Progress); | |
151 | return true; | |
152 | } | |
153 | /*}}}*/ | |
154 | // CacheFile::Open - Open the cache files, creating if necessary /*{{{*/ | |
155 | // --------------------------------------------------------------------- | |
156 | /* */ | |
157 | bool pkgCacheFile::Open(OpProgress *Progress, bool WithLock) | |
158 | { | |
159 | if (BuildCaches(Progress,WithLock) == false) | |
160 | return false; | |
161 | ||
162 | if (BuildPolicy(Progress) == false) | |
163 | return false; | |
164 | ||
165 | if (BuildDepCache(Progress) == false) | |
166 | return false; | |
167 | ||
168 | if (Progress != NULL) | |
169 | Progress->Done(); | |
2d11135a AL |
170 | if (_error->PendingError() == true) |
171 | return false; | |
2d11135a AL |
172 | |
173 | return true; | |
174 | } | |
175 | /*}}}*/ | |
8de79b68 DK |
176 | // CacheFile::RemoveCaches - remove all cache files from disk /*{{{*/ |
177 | // --------------------------------------------------------------------- | |
178 | /* */ | |
179 | void pkgCacheFile::RemoveCaches() | |
180 | { | |
181 | std::string const pkgcache = _config->FindFile("Dir::cache::pkgcache"); | |
182 | std::string const srcpkgcache = _config->FindFile("Dir::cache::srcpkgcache"); | |
183 | ||
184 | if (pkgcache.empty() == false && RealFileExists(pkgcache) == true) | |
185 | unlink(pkgcache.c_str()); | |
186 | if (srcpkgcache.empty() == false && RealFileExists(srcpkgcache) == true) | |
187 | unlink(srcpkgcache.c_str()); | |
fbb2c7e0 DK |
188 | if (pkgcache.empty() == false) |
189 | { | |
190 | std::string cachedir = flNotFile(pkgcache); | |
191 | std::string cachefile = flNotDir(pkgcache); | |
c0d58f42 | 192 | if (cachedir.empty() != true && cachefile.empty() != true && DirectoryExists(cachedir) == true) |
fbb2c7e0 DK |
193 | { |
194 | cachefile.append("."); | |
195 | std::vector<std::string> caches = GetListOfFilesInDir(cachedir, false); | |
196 | for (std::vector<std::string>::const_iterator file = caches.begin(); file != caches.end(); ++file) | |
197 | { | |
198 | std::string nuke = flNotDir(*file); | |
199 | if (strncmp(cachefile.c_str(), nuke.c_str(), cachefile.length()) != 0) | |
200 | continue; | |
201 | unlink(file->c_str()); | |
202 | } | |
203 | } | |
204 | } | |
205 | ||
206 | if (srcpkgcache.empty() == true) | |
207 | return; | |
208 | ||
209 | std::string cachedir = flNotFile(srcpkgcache); | |
210 | std::string cachefile = flNotDir(srcpkgcache); | |
c0d58f42 | 211 | if (cachedir.empty() == true || cachefile.empty() == true || DirectoryExists(cachedir) == false) |
fbb2c7e0 DK |
212 | return; |
213 | cachefile.append("."); | |
214 | std::vector<std::string> caches = GetListOfFilesInDir(cachedir, false); | |
215 | for (std::vector<std::string>::const_iterator file = caches.begin(); file != caches.end(); ++file) | |
216 | { | |
217 | std::string nuke = flNotDir(*file); | |
218 | if (strncmp(cachefile.c_str(), nuke.c_str(), cachefile.length()) != 0) | |
219 | continue; | |
220 | unlink(file->c_str()); | |
221 | } | |
8de79b68 DK |
222 | } |
223 | /*}}}*/ | |
b2e465d6 AL |
224 | // CacheFile::Close - close the cache files /*{{{*/ |
225 | // --------------------------------------------------------------------- | |
226 | /* */ | |
227 | void pkgCacheFile::Close() | |
228 | { | |
229 | delete DCache; | |
230 | delete Policy; | |
231 | delete Cache; | |
3f8621c5 | 232 | delete SrcList; |
b2e465d6 AL |
233 | delete Map; |
234 | _system->UnLock(true); | |
235 | ||
3f8621c5 DK |
236 | Map = NULL; |
237 | DCache = NULL; | |
238 | Policy = NULL; | |
239 | Cache = NULL; | |
240 | SrcList = NULL; | |
b2e465d6 AL |
241 | } |
242 | /*}}}*/ |