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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
|
#include "viewdefault.h"
#include "target.h"
#include <bu/plugger.h>
#include <bu/sio.h>
using namespace Bu;
PluginInterface3( pluginViewDefault, default, ViewDefault, View,
"Mike Buland", 0, 1 );
#define ESC "\x1b"
#define C_RESET ESC "[0m"
#define C_RED ESC "[31m"
#define C_GREEN ESC "[32m"
#define C_YELLOW ESC "[33m"
#define C_BLUE ESC "[34m"
#define C_MAGENTA ESC "[35m"
#define C_CYAN ESC "[36m"
#define C_WHITE ESC "[37m"
#define C_DEFAULT ESC "[39m"
#define C_BR_RED ESC "[1;31m"
#define C_BR_GREEN ESC "[1;32m"
#define C_BR_YELLOW ESC "[1;33m"
#define C_BR_BLUE ESC "[1;34m"
#define C_BR_MAGENTA ESC "[1;35m"
#define C_BR_CYAN ESC "[1;36m"
#define C_BR_WHITE ESC "[1;37m"
ViewDefault::ViewDefault() :
bFirst( true ),
bDisped( false ),
bDispedTrg( false ),
iDepth( 0 ),
iTotal( 0 ),
iCurrent( 0 )
{
}
ViewDefault::~ViewDefault()
{
if( bDisped == false )
{
sio << "Nothing to be done." << sio.nl << sio.nl;
}
}
void ViewDefault::beginAction( const Bu::FString &/*sAction*/ )
{
}
void ViewDefault::endAction()
{
}
void ViewDefault::skipTarget( const Bu::FString &/*sProfile*/,
const Target &/*rTarget*/ )
{
iCurrent++;
}
void ViewDefault::beginTarget( const Bu::FString &sProfile,
const Target &rTarget )
{
if( iDepth == 0 )
{
bDispedTrg = false;
iTotal = rTarget.getDepCount();
iCurrent = 0;
}
iDepth++;
sCurProfile = sProfile;
}
void ViewDefault::drawTargetHdr( const Bu::FString &sProfile,
const Target &rTarget )
{
if( bDispedTrg == false )
{
bDispedTrg = true;
if( bFirst == false )
{
sio << sio.nl;
}
bFirst = false;
sio << C_BR_WHITE << " --- " << C_BR_CYAN << sProfile << " "
<< rTarget.getOutputList().first() << C_BR_WHITE << " --- "
<< C_RESET << sio.nl;
}
}
void ViewDefault::processTarget( const Bu::FString &sProfile,
const Target &rTarget )
{
drawTargetHdr( sProfile, rTarget );
iCurrent++;
int iPct = (iTotal>0)?(iCurrent*100/iTotal):(100);
sio << C_BR_WHITE << "[" << C_BR_GREEN << Fmt(3) << iPct
<< "%" << C_BR_WHITE << "] " << C_BR_MAGENTA
<< Fmt(10) << rTarget.getDisplay() << C_BR_WHITE
<< ": " << rTarget.getOutputList().first() << C_RESET << sio.nl;
bDisped = true;
}
void ViewDefault::endTarget()
{
iDepth--;
}
void ViewDefault::buildRequires( const Target &rTarget )
{
drawTargetHdr( sCurProfile, rTarget );
int iPct = (iTotal>0)?(iCurrent*100/iTotal):(100);
sio << C_BR_WHITE << "[" << C_BR_GREEN << Fmt(3) << iPct
<< "%" << C_BR_WHITE << "] " << C_BR_MAGENTA
<< Fmt(10) << "deps" << C_BR_WHITE
<< ": " << rTarget.getOutputList().first() << C_RESET << sio.nl;
bDisped = true;
}
void ViewDefault::cmdStarted( const Bu::FString &/*sCmd*/ )
{
}
void ViewDefault::cmdFinished( const Bu::FString &sStdOut,
const Bu::FString &sStdErr, long /*iExit*/ )
{
if( sStdOut )
{
Bu::FString::const_iterator b;
b = sStdOut.begin();
while( b )
{
Bu::FString::const_iterator e, max;
max = b + 78;
for( e = b; e != max && *e != '\n'; e++ ) { }
sio << C_BR_GREEN << "| " << C_RESET << FString( b, e ) << sio.nl;
b = e;
if( *b == '\n' )
b++;
}
sio << C_BR_GREEN << "\\-----" << C_RESET << sio.nl;
}
if( sStdErr )
{
Bu::FString::const_iterator b;
b = sStdErr.begin();
while( b )
{
Bu::FString::const_iterator e, max;
max = b + 78;
for( e = b; e != max && *e != '\n'; e++ ) { }
sio << C_BR_RED << "| " << C_RESET << FString( b, e ) << sio.nl;
b = e;
if( *b == '\n' )
b++;
}
sio << C_BR_RED << "\\-----" << C_RESET << sio.nl;
}
//sio << C_BR_WHITE << "[" << C_BR_GREEN << sStdOut << C_BR_WHITE << "]" << sio.nl;
//sio << C_BR_WHITE << "[" << C_BR_RED << sStdErr << C_BR_WHITE << "]" << sio.nl;
bDisped = true;
}
void ViewDefault::userError( const Bu::FString &sMsg )
{
sio << C_BR_RED << "Error: " << sMsg << C_RESET << sio.nl;
bDisped = true;
}
void ViewDefault::userWarning( const Bu::FString &sMsg )
{
sio << C_BR_YELLOW << "Warning: " << sMsg << C_RESET << sio.nl;
bDisped = true;
}
void ViewDefault::userNotice( const Bu::FString &sMsg )
{
sio << C_BR_GREEN << "Notice: " << sMsg << C_RESET << sio.nl;
bDisped = true;
}
void ViewDefault::sysError( const Bu::FString &sMsg )
{
sio << C_BR_RED << sMsg << C_RESET << sio.nl;
bDisped = true;
}
void ViewDefault::sysWarning( const Bu::FString &sMsg )
{
sio << C_BR_YELLOW << sMsg << C_RESET << sio.nl;
bDisped = true;
}
|