File: PrintBasic.cpp

package info (click to toggle)
beid 3.5.2.dfsg-10
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 147,240 kB
  • ctags: 34,507
  • sloc: cpp: 149,944; ansic: 41,577; java: 8,927; cs: 6,528; sh: 2,426; perl: 1,866; xml: 805; python: 463; makefile: 263; lex: 92
file content (147 lines) | stat: -rw-r--r-- 3,048 bytes parent folder | download
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
/* ****************************************************************************

 * eID Middleware Project.
 * Copyright (C) 2008-2009 FedICT.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License version
 * 3.0 as published by the Free Software Foundation.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, see
 * http://www.gnu.org/licenses/.

**************************************************************************** */
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

#include "PrintBasic.h"

void PrintLine(FILE *f, const char *text,char c, int screen, int uppercase)
{
	unsigned long i=0;
	size_t iMax=0;
	size_t iLen=0;

	char *buff=NULL;

	buff=(char*)malloc(strlen(text)+1);
	strcpy_s(buff,strlen(text)+1,text);

	if(uppercase)
	{
		for(i=0;i<strlen(text);i++)
			buff[i]=toupper(buff[i]);
	}

	iLen=strlen(buff);
	if(iLen)
		iLen+=2;

	//Print on screen
	if(screen)
	{
		iMax=(WIDTH_SCREEN - iLen) / 2;
		for(i=0;i<iMax;i++) printf("%c",c);

		if(iLen)
			printf(" %s ",buff);

		iMax=WIDTH_SCREEN - iLen - iMax;
		for(i=0;i<iMax;i++) printf("%c",c);

		printf("\n");
	}

	//Print in File
	iMax=(WIDTH_FILE - iLen) / 2;
	for(i=0;i<iMax;i++) fprintf(f,"%c",c);

	if(iLen)
		fprintf(f," %s ",buff);

	iMax=WIDTH_FILE - iLen - iMax;
	for(i=0;i<iMax;i++) fprintf(f,"%c",c);

	fprintf(f,"\n");

	free(buff);
}

void PrintHex(FILE *f, const char *title, const unsigned char *buffer, unsigned long len)
{
	unsigned long i=0;
	unsigned long line=0;

	for(i=0,line=0;i<len;i++,line++)
	{
		if(line==WIDTH_FILE/3)
		{
			fprintf(f,"\n");
			line=0;
		}

		fprintf(f,"%02x ",buffer[i]);
	}

	fprintf(f,"\n");
}

void PrintTestHeader(FILE *f, const char *text)
{
	PrintLine(f, "",'*', 0, 0);
	PrintLine(f, text,'*', 0, 1);
	PrintLine(f, "",'*', 0, 0);
}

void PrintHeader(FILE *f, const char *text)
{
	PrintLine(f, text,'#', 1, 1);
}

void PrintTestFunction(FILE *f, const char *text)
{
	PrintLine(f, text,'%', 0, 0);
}

void PrintTitle(FILE *f, const char *text)
{
	PrintLine(f, text,'=', 0, 1);
}

void PrintBlock(FILE *f, const char *text)
{
	PrintLine(f, text,'-', 0, 1);
}

void PrintSeperator(FILE *f)
{
	PrintLine(f, "",'~', 0, 0);
}

void PrintComment(FILE *f, const char *text)
{
	fprintf(f,"---> %s\n", text);
}

void PrintWARNING(FILE *f, const char *text)
{
	printf("WARNING : %s\n", text);
	fprintf(f,"WARNING : %s\n", text);
}

void PrintERROR(const char *text)
{
	printf("ERROR   : %s\n\n", text);
}

void PrintSUCCESS(const char *text)
{
	printf("SUCCESS : %s\n\n", text);
}