openEMS/tools/ErrorMsg.cpp

84 lines
2.4 KiB
C++
Raw Permalink Normal View History

2010-03-11 15:47:40 +00:00
/*
* 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/>.
*/
2010-02-28 21:48:03 +00:00
#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... \0"); 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, 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... \0"); 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);
}