]> git.saurik.com Git - apt.git/blame - apt-pkg/contrib/progress.h
merged from debian
[apt.git] / apt-pkg / contrib / progress.h
CommitLineData
404ec98e
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
233b185f 3// $Id: progress.h,v 1.6 2001/05/07 05:06:52 jgg Exp $
404ec98e
AL
4/* ######################################################################
5
6 OpProgress - Operation Progress
7
8 This class allows lengthy operations to communicate their progress
9 to the GUI. The progress model is simple and is not designed to handle
10 the complex case of the multi-activity aquire class.
11
12 The model is based on the concept of an overall operation consisting
13 of a series of small sub operations. Each sub operation has it's own
14 completion status and the overall operation has it's completion status.
15 The units of the two are not mixed and are completely independent.
16
17 The UI is expected to subclass this to provide the visuals to the user.
18
19 ##################################################################### */
20 /*}}}*/
404ec98e
AL
21#ifndef PKGLIB_PROGRESS_H
22#define PKGLIB_PROGRESS_H
23
404ec98e
AL
24
25#include <string>
26#include <sys/time.h>
27
233b185f
AL
28using std::string;
29
0a8e3465 30class Configuration;
404ec98e
AL
31class OpProgress
32{
33 unsigned long Current;
34 unsigned long Total;
35 unsigned long Size;
36 unsigned long SubTotal;
37 float LastPercent;
38
39 // Change reduction code
40 struct timeval LastTime;
41 string LastOp;
1a7c9eba 42 string LastSubOp;
404ec98e
AL
43
44 protected:
45
46 string Op;
47 string SubOp;
48 float Percent;
49
50 bool MajorChange;
51
52 bool CheckChange(float Interval = 0.7);
53 virtual void Update() {};
54
55 public:
56
57 void Progress(unsigned long Current);
8ce4327b 58 void SubProgress(unsigned long SubTotal);
171c75f1 59 void SubProgress(unsigned long SubTotal,const string &Op);
404ec98e 60 void OverallProgress(unsigned long Current,unsigned long Total,
171c75f1 61 unsigned long Size,const string &Op);
1a7c9eba
AL
62 virtual void Done() {};
63
404ec98e
AL
64 OpProgress();
65 virtual ~OpProgress() {};
66};
67
68class OpTextProgress : public OpProgress
69{
70 protected:
71
72 string OldOp;
73 bool NoUpdate;
0a8e3465 74 bool NoDisplay;
404ec98e
AL
75 unsigned long LastLen;
76 virtual void Update();
77 void Write(const char *S);
78
79 public:
80
1a7c9eba 81 virtual void Done();
404ec98e 82
0a8e3465
AL
83 OpTextProgress(bool NoUpdate = false) : NoUpdate(NoUpdate),
84 NoDisplay(false), LastLen(0) {};
85 OpTextProgress(Configuration &Config);
404ec98e
AL
86 virtual ~OpTextProgress() {Done();};
87};
88
89#endif