blob: d65c59df576fe7f371f872680d1eceffb99eda31 (
plain)
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
|
#include "viewerplain.h"
#include "perform.h"
#include "plugger.h"
PluginInterface2( plain, ViewerPlain, Viewer, "Mike Buland", 0, 1 );
ViewerPlain::ViewerPlain() :
bCmdClean( true ),
bRunClean( true )
{
}
ViewerPlain::~ViewerPlain()
{
}
void ViewerPlain::beginCommand( Action::eAction nAct, const std::string &sTarget )
{
bCmdClean = true;
this->sTarget = sTarget;
}
void ViewerPlain::endCommand()
{
if( bCmdClean == false )
printf("\n");
}
void ViewerPlain::printHead()
{
if( bCmdClean == true )
{
bRunClean = false;
bCmdClean = false;
printf("--- %s ---\n", sTarget.c_str() );
}
}
void ViewerPlain::beginRequiresCheck( bool bCached, const std::string &sName )
{
printHead();
printf(" deps: %s\n", sName.c_str() );
}
void ViewerPlain::endRequiresCheck()
{
}
void ViewerPlain::beginPerform( Perform *pPerform )
{
printHead();
printf(" %8s: %s\n", pPerform->getRule().c_str(), pPerform->getTarget().c_str() );
}
void ViewerPlain::endPerform()
{
}
void ViewerPlain::endAction()
{
if( bRunClean == true )
{
printf("Nothing to be done.\n\n");
}
}
|