Fixed or handling bug
[ntk/apt.git] / apt-pkg / algorithms.h
CommitLineData
6c139d6e
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
61d6a8de 3// $Id: algorithms.h,v 1.8 1999/10/27 04:38:27 jgg Exp $
6c139d6e
AL
4/* ######################################################################
5
6 Algorithms - A set of misc algorithms
7
8 This simulate class displays what the ordering code has done and
9 analyses it with a fresh new dependency cache. In this way we can
10 see all of the effects of an upgrade run.
11
12 pkgDistUpgrade computes an upgrade that causes as many packages as
13 possible to move to the newest verison.
14
15 pkgApplyStatus sets the target state based on the content of the status
16 field in the status file. It is important to get proper crash recovery.
6fc33863
AL
17
18 pkgFixBroken corrects a broken system so that it is in a sane state.
0a8e3465
AL
19
20 pkgAllUpgrade attempts to upgade as many packages as possible but
21 without installing new packages.
6c139d6e 22
0a8e3465
AL
23 The problem resolver class contains a number of complex algorithms
24 to try to best-guess an upgrade state. It solves the problem of
25 maximizing the number of install state packages while having no broken
26 packages.
27
6c139d6e
AL
28 ##################################################################### */
29 /*}}}*/
30// Header section: pkglib
31#ifndef PKGLIB_ALGORITHMS_H
32#define PKGLIB_ALGORITHMS_H
33
34#ifdef __GNUG__
094a497d 35#pragma interface "apt-pkg/algorithms.h"
6c139d6e
AL
36#endif
37
094a497d
AL
38#include <apt-pkg/packagemanager.h>
39#include <apt-pkg/depcache.h>
6c139d6e
AL
40
41class pkgSimulate : public pkgPackageManager
42{
43 protected:
44
45 unsigned char *Flags;
46
47 pkgDepCache Sim;
48
49 // The Actuall installation implementation
50 virtual bool Install(PkgIterator Pkg,string File);
51 virtual bool Configure(PkgIterator Pkg);
fc4b5c9f 52 virtual bool Remove(PkgIterator Pkg,bool Purge);
6c139d6e
AL
53 void ShortBreaks();
54
55 public:
56
57 pkgSimulate(pkgDepCache &Cache);
58};
59
60class pkgProblemResolver
61{
62 pkgDepCache &Cache;
63 typedef pkgCache::PkgIterator PkgIterator;
64 typedef pkgCache::VerIterator VerIterator;
65 typedef pkgCache::DepIterator DepIterator;
66 typedef pkgCache::PrvIterator PrvIterator;
67 typedef pkgCache::Version Version;
68 typedef pkgCache::Package Package;
69
70 enum Flags {Protected = (1 << 0), PreInstalled = (1 << 1),
3b5421b4
AL
71 Upgradable = (1 << 2), ReInstateTried = (1 << 3),
72 ToRemove = (1 << 4)};
6c139d6e
AL
73 signed short *Scores;
74 unsigned char *Flags;
75 bool Debug;
76
77 // Sort stuff
78 static pkgProblemResolver *This;
79 static int ScoreSort(const void *a,const void *b);
80
81 struct PackageKill
82 {
83 PkgIterator Pkg;
84 DepIterator Dep;
85 };
86
87 void MakeScores();
88 bool DoUpgrade(pkgCache::PkgIterator Pkg);
89
90 public:
91
92 inline void Protect(pkgCache::PkgIterator Pkg) {Flags[Pkg->ID] |= Protected;};
3b5421b4 93 inline void Remove(pkgCache::PkgIterator Pkg) {Flags[Pkg->ID] |= ToRemove;};
61d6a8de
AL
94 inline void Clear(pkgCache::PkgIterator Pkg) {Flags[Pkg->ID] &= ~(Protected | ToRemove);};
95
0a8e3465 96 // Try to intelligently resolve problems by installing and removing packages
6c139d6e 97 bool Resolve(bool BrokenFix = false);
3b5421b4 98
0a8e3465
AL
99 // Try to resolve problems only by using keep
100 bool ResolveByKeep();
3b5421b4
AL
101
102 void InstallProtect();
103
6c139d6e
AL
104 pkgProblemResolver(pkgDepCache &Cache);
105};
106
107bool pkgDistUpgrade(pkgDepCache &Cache);
108bool pkgApplyStatus(pkgDepCache &Cache);
109bool pkgFixBroken(pkgDepCache &Cache);
0a8e3465 110bool pkgAllUpgrade(pkgDepCache &Cache);
7e798dd7 111bool pkgMinimizeUpgrade(pkgDepCache &Cache);
6c139d6e
AL
112
113#endif