Complete changed the way format strings are handled. They are now compiled first, which is far more efficient than what was being done before. Also, there is now a global ledger::commodity_t::commodities map, which saves me from having to pass the current journal around to a zillion different functions, for the sole purpose of making sure that all commodity symbols that are parsed refer to the same commodity object.
61 lines
1.3 KiB
C++
61 lines
1.3 KiB
C++
#ifndef _ERROR_H
|
|
#define _ERROR_H
|
|
|
|
#include <exception>
|
|
#include <sstream>
|
|
|
|
namespace ledger {
|
|
|
|
class error : public std::exception
|
|
{
|
|
std::string reason;
|
|
public:
|
|
error(const std::string& _reason) throw() : reason(_reason) {}
|
|
virtual ~error() throw() {}
|
|
|
|
virtual const char* what() const throw() {
|
|
return reason.c_str();
|
|
}
|
|
};
|
|
|
|
class compute_error : public error
|
|
{
|
|
public:
|
|
compute_error(const std::string& reason) throw() : error(reason) {}
|
|
virtual ~compute_error() throw() {}
|
|
};
|
|
|
|
class expr_error : public error
|
|
{
|
|
public:
|
|
expr_error(const std::string& reason) throw() : error(reason) {}
|
|
virtual ~expr_error() throw() {}
|
|
};
|
|
|
|
class format_error : public error
|
|
{
|
|
public:
|
|
format_error(const std::string& reason) throw() : error(reason) {}
|
|
virtual ~format_error() throw() {}
|
|
};
|
|
|
|
class parse_error : public error
|
|
{
|
|
unsigned int line;
|
|
std::string file;
|
|
public:
|
|
parse_error(const std::string& _file, const unsigned int _line,
|
|
const std::string& reason) throw()
|
|
: error(reason), line(_line), file(_file) {}
|
|
virtual ~parse_error() throw() {}
|
|
|
|
virtual const char* what() const throw() {
|
|
static std::ostringstream msg;
|
|
msg << file << ", line " << line << ": " << error::what();
|
|
return msg.str().c_str();
|
|
}
|
|
};
|
|
|
|
} // namespace ledger
|
|
|
|
#endif // _CONSTRAINT_H
|