~ubuntu-core-dev/synaptic/ubuntu

« back to all changes in this revision

Viewing changes to common/rpackagecache.h

  • Committer: Michael Terry
  • Date: 2011-09-26 16:30:35 UTC
  • Revision ID: michael.terry@canonical.com-20110926163035-bck8ol261ksu1gmi
move to lp:ubuntu/synaptic

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* rpackagecache.h - package cache wrapper
2
 
 * 
3
 
 * Copyright (c) 2000, 2001 Conectiva S/A 
4
 
 * 
5
 
 * Author: Alfredo K. Kojima <kojima@conectiva.com.br>
6
 
 *
7
 
 * This program is free software; you can redistribute it and/or 
8
 
 * modify it under the terms of the GNU General Public License as 
9
 
 * published by the Free Software Foundation; either version 2 of the
10
 
 * License, or (at your option) any later version.
11
 
 *
12
 
 * This program is distributed in the hope that it will be useful,
13
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
 * GNU General Public License for more details.
16
 
 *
17
 
 * You should have received a copy of the GNU General Public License
18
 
 * along with this program; if not, write to the Free Software
19
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20
 
 * USA
21
 
 */
22
 
 
23
 
 
24
 
#ifndef _RPACKAGECACHE_H_
25
 
#define _RPACKAGECACHE_H_
26
 
 
27
 
#include <map>
28
 
 
29
 
#include <apt-pkg/depcache.h>
30
 
#include <apt-pkg/sourcelist.h>
31
 
#include <apt-pkg/pkgsystem.h>
32
 
#include <apt-pkg/policy.h>
33
 
 
34
 
class OpProgress;
35
 
 
36
 
class pkgCache;
37
 
 
38
 
 
39
 
class RPackageCache {
40
 
   MMap *_map;
41
 
 
42
 
   pkgCache *_cache;
43
 
   pkgPolicy *_policy;
44
 
 
45
 
   pkgDepCache *_dcache;
46
 
   pkgSourceList *_list;
47
 
 
48
 
   // speed up IsTrusted()
49
 
   std::map<pkgCache::PkgFileIterator, pkgIndexFile*> _trust_cache;
50
 
 
51
 
   bool _locked;
52
 
 
53
 
 public:
54
 
   inline pkgDepCache *deps() {
55
 
      return _dcache;
56
 
   };
57
 
   inline pkgSourceList *list() {
58
 
      return _list;
59
 
   };
60
 
   inline std::map<pkgCache::PkgFileIterator, pkgIndexFile*>& trust_cache() {
61
 
      return _trust_cache;
62
 
   };
63
 
 
64
 
   bool open(OpProgress &progress, bool lock=true);
65
 
 
66
 
   vector<string> getPolicyArchives(bool filenames_only);
67
 
 
68
 
   bool lock();
69
 
   void releaseLock();
70
 
 
71
 
   RPackageCache() 
72
 
     : _map(0), _cache(0), _policy(0), _dcache(0), _locked(false) 
73
 
   {
74
 
      _list = new pkgSourceList();
75
 
   };
76
 
   ~RPackageCache() {
77
 
      delete _list;
78
 
   };
79
 
};
80
 
 
81
 
 
82
 
#endif