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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
#include "viewerpercent.h"
#include "perform.h"
#include "bu/plugger.h"
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.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++;
struct winsize scrn;
ioctl( fileno( stdout ), TIOCGWINSZ, &scrn );
nTermWidth = scrn.ws_col;
}
void ViewerPercent::endCommand()
{
printf("\n");
fflush(stdout);
}
void ViewerPercent::beginPerforms( int nCount )
{
nTotalPerforms = nCount;
nCurPerform = 0;
nLastLen = 0;
}
void ViewerPercent::endPerforms()
{
nCurPerform = nTotalPerforms;
printPercent("");
}
void ViewerPercent::beginRequiresCheck( bool bCached, const std::string &sName )
{
}
void ViewerPercent::endRequiresCheck()
{
}
void ViewerPercent::beginPerform( Perform *pPerform )
{
nCurPerform++;
printPercent( pPerform->getTarget() );
}
void ViewerPercent::printPercent( const std::string &sCur )
{
char buf[2048];
char *bi = buf;
int nLen = sprintf( buf, "\r[%d/%d] %s [",
nCurCommand, nTotalCommands,
sTarget.c_str() );
bi += nLen;
int jmax = nCurPerform*nWidth/nTotalPerforms;
for( int j = 0; j < jmax; j++ )
{
*bi = '#';
bi++;
}
jmax = nWidth-jmax;
for( int j = 0; j < jmax; j++ )
{
*bi = ' ';
bi++;
}
nLen += nWidth;
nLen += sprintf( bi, "] %-2d%% %s",
nCurPerform*100/nTotalPerforms,
sCur.c_str() );
bi = buf + nLen;
if( (int)(bi - buf) >= nTermWidth )
{
nLastLen = nLen = nTermWidth;
strcpy( buf+nTermWidth-3, "...");
}
else
{
if( nLastLen > nLen )
{
jmax = nLastLen-nLen;
for( int j = 0; j < jmax; j++ )
{
*bi = ' ';
bi++;
}
}
nLastLen = nLen;
*bi = '\0';
}
fputs( buf, stdout );
fflush( stdout );
}
void ViewerPercent::endPerform()
{
}
|