summaryrefslogtreecommitdiff
path: root/openEMS/tools/ErrorMsg.cpp
blob: 9a1974ca3959b74d611d1de258dbcc423413d3c5 (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
88
89
90
91
92
93
94
95
96
97
98
/*
*	Copyright (C) 2010 Thorsten Liebig (Thorsten.Liebig@gmx.de)
*
*	This program is free software: you can redistribute it and/or modify
*	it under the terms of the GNU General Public License as published by
*	the Free Software Foundation, either version 3 of the License, or
*	(at your option) any later version.
*
*	This program 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 General Public License for more details.
*
*	You should have received a copy of the GNU General Public License
*	along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "ErrorMsg.h"

ErrorMsg::ErrorMsg(unsigned int NoMessage)
{
	NoMsg=NoMessage;
	if (NoMsg>0) Msg = new char*[NoMsg];
	if (Msg==NULL)
	{
		fprintf(stderr,"Memory allocation failed!! exiting...");
		exit(1);
	}
	for (unsigned int i=0; i<NoMsg; i++) Msg[i]=NULL;
}

ErrorMsg::~ErrorMsg()
{
	for (unsigned int i=0; i<NoMsg; i++)
	{
		delete[] Msg[i];
		Msg[i]=NULL;
	};
	delete[] Msg;
	Msg=NULL;
}

void ErrorMsg::SetMsg(unsigned int nr, const char *Message)
{
	if ((nr<1) || (nr>NoMsg) || (Message==NULL)) ownError();
	Msg[nr-1] = new char[strlen(Message)+1];
	if (Msg[nr-1]==NULL)
	{
		fprintf(stderr,"Memory allocation failed!! exiting...");
		exit(1);
	}
	Msg[nr-1]=strcpy(Msg[nr-1],Message);
}

void ErrorMsg::Error(unsigned int nr,char *chAddMsg)
{
	if ((nr>0) && (nr<=NoMsg))
	{
		if (Msg[nr-1]!=NULL) fprintf(stderr,"%s",Msg[nr-1]);
		else fprintf(stderr,"unkown error occured!! Error code: %d exiting...",nr);
		if (chAddMsg!=NULL) fprintf(stderr,"%s",chAddMsg);
		getchar();
		exit(nr);
	}
	else
	{
		fprintf(stderr,"unkown error occured!! Error code: %d exiting...",nr);
		getchar();
		exit(nr);
	}
}

void ErrorMsg::Error(unsigned int nr,int addNr)
{
	if ((nr>0) && (nr<=NoMsg))
	{
		if (Msg[nr-1]!=NULL) fprintf(stderr,"%s",Msg[nr-1]);
		else fprintf(stderr,"unkown error occured!! Error code: %d exiting...",nr);
		fprintf(stderr,"%d",addNr);
		getchar();
		exit(nr);
	}
	else
	{
		fprintf(stderr,"unkown error occured!! Error code: %d exiting...",nr);
		getchar();
		exit(nr);
	}
}

void ErrorMsg::ownError(void)
{
	fprintf(stdout," Error occured by using Error Message class!! ... exiting...");
	exit(-1);
}