]>
git.saurik.com Git - apt.git/blob - apt-pkg/cachefile.cc
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>
26 // CacheFile::CacheFile - Constructor /*{{{*/
27 // ---------------------------------------------------------------------
29 pkgCacheFile::pkgCacheFile() : Map(0), Cache(0), DCache(0), Policy(0)
33 // CacheFile::~CacheFile - Destructor /*{{{*/
34 // ---------------------------------------------------------------------
36 pkgCacheFile::~pkgCacheFile()
42 _system
->UnLock(true);
45 // CacheFile::BuildCaches - Open and build the cache files /*{{{*/
46 // ---------------------------------------------------------------------
48 bool pkgCacheFile::BuildCaches(OpProgress
&Progress
,bool WithLock
)
51 if (_system
->Lock() == false)
54 if (_config
->FindB("Debug::NoLocking",false) == true)
57 if (_error
->PendingError() == true)
60 // Read the source list
62 if (List
.ReadMainList() == false)
63 return _error
->Error(_("The list of sources could not be read."));
66 bool Res
= pkgMakeStatusCache(List
,Progress
,&Map
,!WithLock
);
69 return _error
->Error(_("The package lists or status file could not be parsed or opened."));
71 /* This sux, remove it someday */
72 if (_error
->empty() == false)
73 _error
->Warning(_("You may want to run apt-get update to correct these problems"));
75 Cache
= new pkgCache(Map
);
76 if (_error
->PendingError() == true)
81 // CacheFile::Open - Open the cache files, creating if necessary /*{{{*/
82 // ---------------------------------------------------------------------
84 bool pkgCacheFile::Open(OpProgress
&Progress
,bool WithLock
)
86 if (BuildCaches(Progress
,WithLock
) == false)
90 Policy
= new pkgPolicy(Cache
);
91 if (_error
->PendingError() == true)
93 if (ReadPinFile(*Policy
) == false)
96 // Create the dependency cache
97 DCache
= new pkgDepCache(Cache
,Policy
);
98 if (_error
->PendingError() == true)
101 DCache
->Init(&Progress
);
103 if (_error
->PendingError() == true)
110 // CacheFile::Close - close the cache files /*{{{*/
111 // ---------------------------------------------------------------------
113 void pkgCacheFile::Close()
119 _system
->UnLock(true);