Fixed for new egcs
[ntk/apt.git] / apt-pkg / algorithms.h
CommitLineData
6c139d6e
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
7e798dd7 3// $Id: algorithms.h,v 1.5 1998/10/08 04:54:59 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);
52 virtual bool Remove(PkgIterator Pkg);
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),
0a8e3465 71 Upgradable = (1 << 2), ReInstateTried = (1 << 3)};
6c139d6e
AL
72 signed short *Scores;
73 unsigned char *Flags;
74 bool Debug;
75
76 // Sort stuff
77 static pkgProblemResolver *This;
78 static int ScoreSort(const void *a,const void *b);
79
80 struct PackageKill
81 {
82 PkgIterator Pkg;
83 DepIterator Dep;
84 };
85
86 void MakeScores();
87 bool DoUpgrade(pkgCache::PkgIterator Pkg);
88
89 public:
90
91 inline void Protect(pkgCache::PkgIterator Pkg) {Flags[Pkg->ID] |= Protected;};
0a8e3465
AL
92
93 // Try to intelligently resolve problems by installing and removing packages
6c139d6e 94 bool Resolve(bool BrokenFix = false);
0a8e3465
AL
95
96 // Try to resolve problems only by using keep
97 bool ResolveByKeep();
98
6c139d6e
AL
99 pkgProblemResolver(pkgDepCache &Cache);
100};
101
102bool pkgDistUpgrade(pkgDepCache &Cache);
103bool pkgApplyStatus(pkgDepCache &Cache);
104bool pkgFixBroken(pkgDepCache &Cache);
0a8e3465 105bool pkgAllUpgrade(pkgDepCache &Cache);
7e798dd7 106bool pkgMinimizeUpgrade(pkgDepCache &Cache);
6c139d6e
AL
107
108#endif