merged from the mvo branch
[ntk/apt.git] / apt-pkg / cdrom.h
CommitLineData
a75c6a6e
MZ
1#ifndef PKGLIB_CDROM_H
2#define PKGLIB_CDROM_H
3
4#include<apt-pkg/init.h>
5#include<string>
6#include<vector>
7
a75c6a6e
MZ
8
9using namespace std;
10
92fcbfc1 11class pkgCdromStatus /*{{{*/
a75c6a6e
MZ
12{
13 protected:
14 int totalSteps;
15
16 public:
17 pkgCdromStatus() {};
18 virtual ~pkgCdromStatus() {};
19
20 // total steps
21 virtual void SetTotal(int total) { totalSteps = total; };
22 // update steps, will be called regularly as a "pulse"
23 virtual void Update(string text="", int current=0) = 0;
24
25 // ask for cdrom insert
26 virtual bool ChangeCdrom() = 0;
27 // ask for cdrom name
28 virtual bool AskCdromName(string &Name) = 0;
29 // Progress indicator for the Index rewriter
30 virtual OpProgress* GetOpProgress() {return NULL; };
31};
92fcbfc1
DK
32 /*}}}*/
33class pkgCdrom /*{{{*/
a75c6a6e
MZ
34{
35 protected:
36 enum {
37 STEP_PREPARE = 1,
38 STEP_UNMOUNT,
39 STEP_WAIT,
40 STEP_MOUNT,
41 STEP_IDENT,
42 STEP_SCAN,
43 STEP_COPY,
44 STEP_WRITE,
45 STEP_UNMOUNT3,
46 STEP_LAST
47 };
48
49
22f8568d
MV
50 bool FindPackages(string CD,
51 vector<string> &List,
52 vector<string> &SList,
53 vector<string> &SigList,
54 vector<string> &TransList,
a75c6a6e
MZ
55 string &InfoDir, pkgCdromStatus *log,
56 unsigned int Depth = 0);
57 bool DropBinaryArch(vector<string> &List);
58 bool DropRepeats(vector<string> &List,const char *Name);
59 void ReduceSourcelist(string CD,vector<string> &List);
60 bool WriteDatabase(Configuration &Cnf);
61 bool WriteSourceList(string Name,vector<string> &List,bool Source);
62 int Score(string Path);
63
64 public:
65 bool Ident(string &ident, pkgCdromStatus *log);
66 bool Add(pkgCdromStatus *log);
67};
92fcbfc1 68 /*}}}*/
a75c6a6e
MZ
69
70#endif