]> git.saurik.com Git - apt.git/blame - apt-pkg/contrib/progress.h
Allow the FileFd to use an external Compressor to uncompress a given file
[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
0a8e3465 28class Configuration;
404ec98e
AL
29class OpProgress
30{
650faab0
DK
31 unsigned long long Current;
32 unsigned long long Total;
33 unsigned long long Size;
34 unsigned long long SubTotal;
404ec98e
AL
35 float LastPercent;
36
37 // Change reduction code
38 struct timeval LastTime;
8f3ba4e8
DK
39 std::string LastOp;
40 std::string LastSubOp;
404ec98e
AL
41
42 protected:
43
8f3ba4e8
DK
44 std::string Op;
45 std::string SubOp;
404ec98e
AL
46 float Percent;
47
48 bool MajorChange;
49
50 bool CheckChange(float Interval = 0.7);
51 virtual void Update() {};
52
53 public:
54
650faab0 55 void Progress(unsigned long long Current);
8f3ba4e8 56 void SubProgress(unsigned long long SubTotal, const std::string &Op = "", float const Percent = -1);
650faab0 57 void OverallProgress(unsigned long long Current,unsigned long long Total,
8f3ba4e8 58 unsigned long long Size,const std::string &Op);
1a7c9eba
AL
59 virtual void Done() {};
60
404ec98e
AL
61 OpProgress();
62 virtual ~OpProgress() {};
63};
64
65class OpTextProgress : public OpProgress
66{
67 protected:
8f3ba4e8
DK
68
69 std::string OldOp;
404ec98e 70 bool NoUpdate;
0a8e3465 71 bool NoDisplay;
404ec98e
AL
72 unsigned long LastLen;
73 virtual void Update();
74 void Write(const char *S);
75
76 public:
77
1a7c9eba 78 virtual void Done();
404ec98e 79
0a8e3465
AL
80 OpTextProgress(bool NoUpdate = false) : NoUpdate(NoUpdate),
81 NoDisplay(false), LastLen(0) {};
82 OpTextProgress(Configuration &Config);
404ec98e
AL
83 virtual ~OpTextProgress() {Done();};
84};
85
86#endif