aboutsummaryrefslogtreecommitdiff
path: root/src/viewerplain.cpp
blob: 3e65f21d99b178c5ab01e2334cc58e6777089cfd (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#include "viewerplain.h"
#include "perform.h"
#include "bu/plugger.h"

PluginInterface2( plain, ViewerPlain, Viewer, "Mike Buland", 0, 1 );

ViewerPlain::ViewerPlain() :
	bRunClean( true )
{
}

ViewerPlain::~ViewerPlain()
{
}

void ViewerPlain::beginCommand( Action::eAction nAct, const std::string &sTarget )
{
	Cmd cmd;
	if( sCmd.empty() )
		cmd.nLevel = 0;
	else
		cmd.nLevel = sCmd.front().nLevel+1;
	
	cmd.bCmdClean = true;
	cmd.sTarget = sTarget;

	sCmd.push_front( cmd );
}

void ViewerPlain::endCommand()
{
	if( sCmd.front().bCmdClean == false )
		printf("\n");
	sCmd.pop_front();
}

void ViewerPlain::indent()
{
	if( sCmd.empty() ) return;
	int jmax = sCmd.front().nLevel;
	for( int j = 0; j < jmax; j++ )
	{
		printf("  ");
	}
}

void ViewerPlain::printHead()
{
	if( sCmd.front().bCmdClean == true )
	{
		bRunClean = false;
		sCmd.front().bCmdClean = false;
		indent();
		printf("--- %s ---\n", sCmd.front().sTarget.c_str() );
	}
}

void ViewerPlain::beginRequiresCheck( bool bCached, const std::string &sName )
{
	printHead();
	indent();
	printf("     deps: %s\n", sName.c_str() );
}

void ViewerPlain::endRequiresCheck()
{
}

void ViewerPlain::beginPerform( Perform *pPerform )
{
	printHead();
	indent();
	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");
	}
}