Fixed or handling bug
[ntk/apt.git] / apt-pkg / packagemanager.h
CommitLineData
6c139d6e
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
727f18af 3// $Id: packagemanager.h,v 1.10 1999/07/20 05:53:33 jgg Exp $
6c139d6e
AL
4/* ######################################################################
5
6 Package Manager - Abstacts the package manager
7
8 Three steps are
9 - Aquiration of archives (stores the list of final file names)
10 - Sorting of operations
6fc33863 11 - Invokation of package manager
6c139d6e
AL
12
13 This is the final stage when the package cache entities get converted
14 into file names and the state stored in a DepCache is transformed
15 into a series of operations.
16
17 In the final scheme of things this may serve as a director class to
18 access the actual install methods based on the file type being
19 installed.
20
21 ##################################################################### */
22 /*}}}*/
23// Header section: pkglib
24#ifndef PKGLIB_PACKAGEMANAGER_H
25#define PKGLIB_PACKAGEMANAGER_H
26
27#ifdef __GNUG__
094a497d 28#pragma interface "apt-pkg/packagemanager.h"
6c139d6e
AL
29#endif
30
31#include <string>
094a497d 32#include <apt-pkg/pkgcache.h>
6c139d6e 33
03e39e59 34class pkgAcquire;
6c139d6e
AL
35class pkgDepCache;
36class pkgSourceList;
37class pkgOrderList;
03e39e59 38class pkgRecords;
6c139d6e
AL
39class pkgPackageManager
40{
281daf46
AL
41 public:
42
43 enum OrderResult {Completed,Failed,Incomplete};
44
6c139d6e
AL
45 protected:
46 string *FileNames;
47 pkgDepCache &Cache;
48 pkgOrderList *List;
30e1eab5 49 bool Debug;
6c139d6e
AL
50
51 // Bring some usefull types into the local scope
52 typedef pkgCache::PkgIterator PkgIterator;
53 typedef pkgCache::VerIterator VerIterator;
54 typedef pkgCache::DepIterator DepIterator;
55 typedef pkgCache::PrvIterator PrvIterator;
56 typedef pkgCache::Version Version;
57 typedef pkgCache::Package Package;
58
59 bool DepAdd(pkgOrderList &Order,PkgIterator P,int Depth = 0);
281daf46 60 OrderResult OrderInstall();
6c139d6e 61 bool CheckRConflicts(PkgIterator Pkg,DepIterator Dep,const char *Ver);
7a1b1f8b 62 bool CreateOrderList();
6c139d6e
AL
63
64 // Analysis helpers
65 bool DepAlwaysTrue(DepIterator D);
66
67 // Install helpers
68 bool ConfigureAll();
69 bool SmartConfigure(PkgIterator Pkg);
70 bool SmartUnPack(PkgIterator Pkg);
71 bool SmartRemove(PkgIterator Pkg);
72 bool EarlyRemove(PkgIterator Pkg);
73
74 // The Actuall installation implementation
75 virtual bool Install(PkgIterator /*Pkg*/,string /*File*/) {return false;};
76 virtual bool Configure(PkgIterator /*Pkg*/) {return false;};
727f18af 77 virtual bool Remove(PkgIterator /*Pkg*/,bool /*Purge*/=false) {return false;};
03e39e59 78 virtual bool Go() {return true;};
281daf46 79 virtual void Reset() {};
6c139d6e
AL
80
81 public:
281daf46 82
b50b2c97 83 // Main action members
03e39e59
AL
84 bool GetArchives(pkgAcquire *Owner,pkgSourceList *Sources,
85 pkgRecords *Recs);
281daf46 86 OrderResult DoInstall();
6c139d6e
AL
87 bool FixMissing();
88
89 pkgPackageManager(pkgDepCache &Cache);
90 virtual ~pkgPackageManager();
91};
92
93#endif