]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/progress.cc
074de0805b3548d9fdfb01fecfb8b1ae4ea25f22
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: progress.cc,v 1.6 1998/08/26 04:52:28 jgg Exp $
4 /* ######################################################################
6 OpProgress - Operation Progress
8 ##################################################################### */
10 // Include Files /*{{{*/
12 #pragma implementation "apt-pkg/progress.h"
14 #include <apt-pkg/progress.h>
15 #include <apt-pkg/error.h>
19 // OpProgress::OpProgress - Constructor /*{{{*/
20 // ---------------------------------------------------------------------
22 OpProgress::OpProgress() : Current(0), Total(0), Size(0), SubTotal(1),
23 LastPercent(0), Percent(0)
25 memset(&LastTime
,0,sizeof(LastTime
));
28 // OpProgress::Progress - Sub progress with no state change /*{{{*/
29 // ---------------------------------------------------------------------
30 /* This assumes that Size is the same as the current sub size */
31 void OpProgress::Progress(unsigned long Cur
)
33 Percent
= (Current
+ Cur
/((float)SubTotal
)*Size
)*100.0/Total
;
37 // OpProgress::OverallProgress - Set the overall progress /*{{{*/
38 // ---------------------------------------------------------------------
40 void OpProgress::OverallProgress(unsigned long Current
, unsigned long Total
,
41 unsigned long Size
,string Op
)
43 this->Current
= Current
;
48 Percent
= Current
*100.0/Total
;
52 // OpProgress::SubProgress - Set the sub progress state /*{{{*/
53 // ---------------------------------------------------------------------
55 void OpProgress::SubProgress(unsigned long SubTotal
,string Op
)
57 this->SubTotal
= SubTotal
;
59 Percent
= Current
*100.0/Total
;
63 // OpProgress::SubProgress - Set the sub progress state /*{{{*/
64 // ---------------------------------------------------------------------
66 void OpProgress::SubProgress(unsigned long SubTotal
)
68 this->SubTotal
= SubTotal
;
69 Percent
= Current
*100.0/Total
;
73 // OpProgress::CheckChange - See if the display should be updated /*{{{*/
74 // ---------------------------------------------------------------------
75 /* Progress calls are made so frequently that if every one resulted in
76 an update the display would be swamped and the system much slower.
77 This provides an upper bound on the update rate. */
78 bool OpProgress::CheckChange(float Interval
)
80 // New major progress indication
89 if (SubOp
!= LastSubOp
)
95 if ((int)LastPercent
== (int)Percent
)
100 gettimeofday(&Now
,0);
101 double Diff
= Now
.tv_sec
- LastTime
.tv_sec
+ (Now
.tv_usec
- LastTime
.tv_usec
)/1000000.0;
105 LastPercent
= Percent
;
109 // OpTextProgress::Done - Clean up the display /*{{{*/
110 // ---------------------------------------------------------------------
112 void OpTextProgress::Done()
114 if (NoUpdate
== false && OldOp
.empty() == false)
117 if (_error
->PendingError() == true)
118 snprintf(S
,sizeof(S
),"\r%s... Error!",OldOp
.c_str());
120 snprintf(S
,sizeof(S
),"\r%s... Done",OldOp
.c_str());
127 // OpTextProgress::Update - Simple text spinner /*{{{*/
128 // ---------------------------------------------------------------------
130 void OpTextProgress::Update()
132 if (CheckChange() == false)
135 // No percent spinner
136 if (NoUpdate
== true)
138 if (MajorChange
== false)
144 // Erase the old text and 'log' the event
146 if (MajorChange
== true && OldOp
.empty() == false)
148 snprintf(S
,sizeof(S
),"\r%s",OldOp
.c_str());
154 snprintf(S
,sizeof(S
),"\r%s... %u%%",Op
.c_str(),(unsigned int)Percent
);
160 // OpTextProgress::Write - Write the progress string /*{{{*/
161 // ---------------------------------------------------------------------
162 /* This space fills the end to overwrite the previous text */
163 void OpTextProgress::Write(const char *S
)
166 for (unsigned int I
= strlen(S
); I
< LastLen
; I
++)
168 cout
<< '\r' << flush
;