File: exception.cpp

package info (click to toggle)
amoeba 1.1-30
  • links: PTS
  • area: contrib
  • in suites: buster
  • size: 1,368 kB
  • sloc: cpp: 8,524; makefile: 173
file content (83 lines) | stat: -rw-r--r-- 2,048 bytes parent folder | download | duplicates (11)
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
/*
 * generic exception class
 */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#ifdef __GNUC__
#include <unistd.h>
#endif
 
#include "exception.h"

/*
 * Generic exception class
 */
Exception::Exception(const char *msg)
{
	this->str = strdup(msg);
}
Exception::Exception(const char *owner, const char *msg)
{
	this->str = (char *)malloc(strlen(owner) + strlen(msg) + 3);
	if (this->str == NULL) throw new FatalException("Out of memory");	/* beautiful :-P */
	sprintf(this->str, "%s: %s", owner, msg);
}
Exception::~Exception()
{
	free(this->str);
}

char *Exception::get_error()
{
	return this->str;
}
int Exception::get_fatal()
{
	return 0;
}

/*
 * Fatal exceptions
 */
FatalException::FatalException(const char *msg) : Exception(msg)
{
	/* grossss hack */
//	fprintf(stderr, "Unhandled exception: %s\n", msg);
}
FatalException::FatalException(const char *owner, const char *msg) : Exception(owner, msg)
{
	/* grossss hack */
//	fprintf(stderr, "Unhandled exception: %s: %s\n", owner, msg);
}
int FatalException::get_fatal()
{
	return 1;
}

/*
 * Non-fatal exceptions
 */
NonFatalException::NonFatalException(const char *msg) : Exception(msg) {}
NonFatalException::NonFatalException(const char *owner, const char *msg) : Exception(owner, msg) {}
int NonFatalException::get_fatal()
{
	return 1;
}

/*
 * A fatal exception thrown from the Hashtable class when a value
 * requested wasn't found (only from get_int() and get_float() --
 * lookup() returns NULL but get_int() and get_float() are simplifications
 * to get less code duplication, and "not found" would definitely
 * be an error here)
 */
ValueNotSpecifiedException::ValueNotSpecifiedException(const char *msg) :
	FatalException(msg) {}
ValueNotSpecifiedException::ValueNotSpecifiedException
	(const char *owner, const char *msg) : FatalException(owner, msg) {}
	
FileNotFoundException::FileNotFoundException(const char *msg) :
	NonFatalException(msg) {}
FileNotFoundException::FileNotFoundException
	(const char *owner, const char *msg) : NonFatalException(owner, msg) {}