summaryrefslogtreecommitdiff
path: root/src/common/showmsg.c
blob: 06daaa42e0862b1773a4d2af094ec01616776b85 (plain) (blame)
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "showmsg.h"

int _ShowMessage(const char *string, int flag){ // by MC Cameri
	/* 
		_ShowMessage MUST be used instead of printf as of 10/24/2004.
		Return: 0 = Successful, 1 = Failed.
	*/
//	int ret = 0;
	char prefix[40];
	char *output;
	if (strlen(string) <= 0) {
		ShowMessage("Empty string passed to ShowMessage().\n",MSG_ERROR);
		return 1;
	}
	switch (flag) {
		case MSG_STATUS: //Bright Green (To inform about good things)
			strcpy(prefix,"\033[1;32m[Status]\033[0;0m: ");
			break;
/*	//Do we really need this now? [MC Cameri]
		case MSG_SQL: //Bright Violet (For dumping out anything related with SQL)
			strcpy(prefix,"\033[1;35m[SQL]\033[0;0m: ");
			break;
*/
		case MSG_INFORMATION: //Bright Blue (Variable information)
			strcpy(prefix,"\033[1;34m[Info]\033[0;0m: ");
			break;
		case MSG_NOTICE: //Bright White (Less than a warning)
			strcpy(prefix,"\033[1;29m[Notice]\033[0;0m: ");
			break;
		case MSG_WARNING: //Bright Yellow
			strcpy(prefix,"\033[1;33m[Warning]\033[0;0m: ");
			break;
		case MSG_ERROR: //Bright Red  (Regular errors)
			strcpy(prefix,"\033[1;31m[Error]\033[0;0m: ");
			break;
		case MSG_FATALERROR: //Bright Red (Fatal errors, abort(); if possible)
			strcpy(prefix,"\033[1;31m[Fatal Error]\033[0;0m: ");
			break;
		default:
			ShowMessage("In function ShowMessage() -> Invalid flag passed.\n",MSG_ERROR);
			return 1;
	}
	output = (char*)malloc(sizeof(char)*(strlen(prefix)+strlen(string))+1);
	if (output == NULL) {
		return 1;
//		abort(); // Kill server?
	}
	strcpy(output,prefix);
	strcat(output,string);
	printf(output);
	fflush(stdout);
/*
	if ((core_config.debug_output_level > -1) && (flag >= core_config.debug_output_level)) {
		FILE *fp;
		fp=fopen(OUTPUT_MESSAGES_LOG,"a");
		if (fp == NULL)	{
			printf("\033[1;31m[Error]\033[0;0m: Could not open \033[1;29m%s\033[0;0m, file not found.\n",OUTPUT_MESSAGES_LOG);
			fflush(stdout);
			return;
		}
		StripColor(output);
		strcpy(output,"\r");
		fwrite(output,strlen(output),1,fp);
		fclose(fp);
	}
*/
	return 0;
}