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