File: main.cpp

package info (click to toggle)
pilercr 1.06%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 844 kB
  • sloc: cpp: 14,339; makefile: 67; sh: 36
file content (55 lines) | stat: -rwxr-xr-x 1,032 bytes parent folder | download | duplicates (2)
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
#include "pilercr.h"

#if	WIN32
#include <windows.h>
#endif

bool g_Quiet = false;

int main(int argc, char *argv[])
	{
#if	WIN32
// Multi-tasking does not work well in CPU-bound
// console apps running under Win32.
// Reducing the process priority allows GUI apps
// to run responsively in parallel.
	SetPriorityClass(GetCurrentProcess(), BELOW_NORMAL_PRIORITY_CLASS);
#endif

	ProcessArgVect(argc - 1, argv + 1);
	SetLog();

	for (int i = 0; i < argc; ++i)
		Log("%s ", argv[i]);
	Log("\n");
	g_Quiet = FlagOpt("quiet");

	if (!g_Quiet)
		Credits();

	if (FlagOpt("help"))
		{
		Usage();
		exit(0);
		}
	if (FlagOpt("options"))
		{
		Options();
		exit(0);
		}
	else if (FlagOpt("version"))
		{
		fprintf(stderr, PILERCR_LONG_VERSION "\n");
		exit(0);
		}
	else if (ValueOpt("in"))
		PILERCR();
	else if (ValueOpt("cmp"))
		Cmp();
	else
		Quit("Bad command line");

	Progress("Elapsed time %d secs, peak mem use %.0f Mb",
	  GetElapsedSecs(),
	  GetPeakMemUseBytes()/1e6);
	}