| 1 | // -*- mode: cpp; mode: fold -*- |
| 2 | // Description /*{{{*/ |
| 3 | // $Id: progress.h,v 1.6 2001/05/07 05:06:52 jgg Exp $ |
| 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 acquire 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 | /*}}}*/ |
| 21 | #ifndef PKGLIB_PROGRESS_H |
| 22 | #define PKGLIB_PROGRESS_H |
| 23 | |
| 24 | |
| 25 | #include <string> |
| 26 | #include <sys/time.h> |
| 27 | #include <apt-pkg/macros.h> |
| 28 | |
| 29 | #ifndef APT_8_CLEANER_HEADERS |
| 30 | using std::string; |
| 31 | #endif |
| 32 | |
| 33 | class Configuration; |
| 34 | class OpProgress |
| 35 | { |
| 36 | unsigned long long Current; |
| 37 | unsigned long long Total; |
| 38 | unsigned long long Size; |
| 39 | unsigned long long SubTotal; |
| 40 | float LastPercent; |
| 41 | |
| 42 | // Change reduction code |
| 43 | struct timeval LastTime; |
| 44 | std::string LastOp; |
| 45 | std::string LastSubOp; |
| 46 | |
| 47 | protected: |
| 48 | |
| 49 | std::string Op; |
| 50 | std::string SubOp; |
| 51 | float Percent; |
| 52 | |
| 53 | bool MajorChange; |
| 54 | |
| 55 | bool CheckChange(float Interval = 0.7); |
| 56 | virtual void Update() {}; |
| 57 | |
| 58 | public: |
| 59 | |
| 60 | void Progress(unsigned long long Current); |
| 61 | void SubProgress(unsigned long long SubTotal, const std::string &Op = "", float const Percent = -1); |
| 62 | void OverallProgress(unsigned long long Current,unsigned long long Total, |
| 63 | unsigned long long Size,const std::string &Op); |
| 64 | virtual void Done() {}; |
| 65 | |
| 66 | OpProgress(); |
| 67 | virtual ~OpProgress() {}; |
| 68 | }; |
| 69 | |
| 70 | class OpTextProgress : public OpProgress |
| 71 | { |
| 72 | protected: |
| 73 | |
| 74 | std::string OldOp; |
| 75 | bool NoUpdate; |
| 76 | bool NoDisplay; |
| 77 | unsigned long LastLen; |
| 78 | virtual void Update() APT_OVERRIDE; |
| 79 | void Write(const char *S); |
| 80 | |
| 81 | public: |
| 82 | |
| 83 | virtual void Done() APT_OVERRIDE; |
| 84 | |
| 85 | OpTextProgress(bool NoUpdate = false) : NoUpdate(NoUpdate), |
| 86 | NoDisplay(false), LastLen(0) {}; |
| 87 | OpTextProgress(Configuration &Config); |
| 88 | virtual ~OpTextProgress() {Done();}; |
| 89 | }; |
| 90 | |
| 91 | #endif |