1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
#include "viewerpercent.h"
#include "perform.h"
#include "plugger.h"
PluginInterface2( percent, ViewerPercent, Viewer, "Mike Buland", 0, 1 );
ViewerPercent::ViewerPercent() :
nWidth( 15 )
{
}
ViewerPercent::~ViewerPercent()
{
}
void ViewerPercent::beginAction( const std::string &sName, int nCommands )
{
nTotalCommands = nCommands;
nCurCommand = 0;
}
void ViewerPercent::endAction()
{
}
void ViewerPercent::beginCommand( Action::eAction nAct, const std::string &sTarget )
{
this->sTarget = sTarget;
nCurCommand++;
}
void ViewerPercent::endCommand()
{
printf("\n");
}
void ViewerPercent::beginPerforms( int nCount )
{
nTotalPerforms = nCount;
nCurPerform = 0;
nLastLen = 0;
}
void ViewerPercent::endPerforms()
{
int nLen = printf("\r[%d/%d] %s [",
nCurCommand, nTotalCommands,
sTarget.c_str() );
for( int j = 0; j < nWidth; j++ )
{
fputc('#', stdout );
}
nLen += nWidth;
nLen += printf("] 100%%");
if( nLastLen > nLen )
{
int jmax = nLastLen-nLen;
for( int j = 0; j < jmax; j++ )
{
fputc(' ', stdout );
}
}
nLastLen = 0;
fflush( stdout );
}
void ViewerPercent::beginRequiresCheck( bool bCached, const std::string &sName )
{
}
void ViewerPercent::endRequiresCheck()
{
}
void ViewerPercent::beginPerform( Perform *pPerform )
{
nCurPerform++;
int nLen = printf("\r[%d/%d] %s [",
nCurCommand, nTotalCommands,
sTarget.c_str() );
int jmax = nCurPerform*nWidth/nTotalPerforms;
for( int j = 0; j < jmax; j++ )
{
fputc('#', stdout );
}
jmax = nWidth-jmax;
for( int j = 0; j < jmax; j++ )
{
fputc(' ', stdout );
}
nLen += nWidth;
nLen += printf("] %-2d%% %s",
nCurPerform*100/nTotalPerforms,
pPerform->getTarget().c_str() );
if( nLastLen > nLen )
{
jmax = nLastLen-nLen;
for( int j = 0; j < jmax; j++ )
{
fputc(' ', stdout );
}
}
nLastLen = nLen;
fflush( stdout );
}
void ViewerPercent::endPerform()
{
}
|