summaryrefslogtreecommitdiffabout
path: root/lib/exception.cc
blob: 65302bf931f4b3a7e6bc612fbabff43027665170 (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
#include <string.h>
#include <errno.h>
#include "konforka/exception.h"

namespace konforka {

    /*
     * code_point
     */

    code_point::code_point(const string& w)
	: where(w), line(-1) { }
    code_point::code_point(const string& fi,const string& fu,int l)
	: file(fi), function(fu), line(l) {
	    make_where();
	}

    const char *code_point::c_str() const throw() {
	return where.c_str();
    }

    void code_point::make_where() {
	static char tmp[8];
	snprintf(tmp,sizeof(tmp),"%d",line);
	where = file + ":" + tmp + " [" + function + "]";
    }
    
    /*
     * exception
     */

    exception::exception(const string& whe,const string& wha)
	: _where(whe), _what(wha) { }
    exception::exception(const string& fi,const string& fu,int l,const string& w)
	: _where(fi,fu,l), _what(w) { }
    exception::~exception() throw() { }

    const char *exception::where() const throw() {
	return _where.c_str();
    }
    const char *exception::what() const throw() {
	return _what.c_str();
    }

    void exception::see(const string& w) {
	_seen.push_back(code_point(w));
    }
    void exception::see(const string& fi,const string& fu,int l) {
	_seen.push_back(code_point(fi,fu,l));
    }

    /*
     * system_error
     */

    system_error::system_error(const string& whe,const string& wha)
	: _errno(errno), exception(whe,wha) { }
    system_error::system_error(const string& fi,const string& fu,int l,const string& w)
	: _errno(errno), exception(fi,fu,l,w) { }
    system_error::~system_error() throw() { }

    const char *system_error::why() const throw() {
	return strerror(errno); // TODO: strerror_r
    }

}