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
|
#include <malloc.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <stddef.h>
#include "config.h"
#include "String.h"
#include "Exceptions.h"
char GeneralException::t[BUFSIZ];
char * Base::strdup(const char * s) const {
return xstrdup(s);
}
void * Base::malloc(ssize_t s) const {
return xmalloc(s);
}
void * Base::operator new(size_t s) {
return memset(xmalloc(s), 0, s);
}
void * Base::operator new(size_t s, void * p) {
memset(p, 0, s);
return p;
}
GeneralException::GeneralException(String emsg) : msg(emsg.strdup()) { }
GeneralException::GeneralException() : msg(0) { }
GeneralException::GeneralException(const GeneralException & e) : msg(strdup(e.msg)) { }
GeneralException::~GeneralException() {
free(msg);
}
char * GeneralException::GetMsg() {
return msg;
}
MemoryException::MemoryException(ssize_t s) {
sprintf(t, _("Failed allocating %lld bytes."), s);
msg = strdup(t);
}
IOException::IOException(String fn, op_t op, ssize_t s) {
sprintf(t, _("An error has occured while %s %lld bytes from %s: %s"), op == IO_WRITE ? _("writing") : _("reading"),
s, fn.to_charp(), strerror(errno));
msg = strdup(t);
}
IOInternal::IOInternal(String fn, op_t op) {
sprintf(t, _("Internal error: has occured while %s from %s: open for %s."), op == IO_WRITE ? _("writing") : _("reading"),
fn.to_charp(), op == IO_WRITE ? _("reading") : _("writing"));
msg = strdup(t);
}
IOGeneral::IOGeneral(String fn) : GeneralException(fn) { }
char * xstrdup(const char * s) throw (MemoryException) {
char * r;
if (!(r = ::strdup(s))) {
throw MemoryException(strlen(s + 1));
}
return r;
}
void * xmalloc(ssize_t s) throw (MemoryException) {
void * r;
if (!(r = ::malloc(s))) {
throw MemoryException(s);
}
return r;
}
#undef free
void xfree(void *& p) {
if (p) {
::free(p);
p = 0;
}
}
|