[Lemon-commits] Peter Kovacs: Port error.h from svn -r3438 + min...
Lemon HG
hg at lemon.cs.elte.hu
Thu Feb 7 22:43:50 CET 2008
details: http://lemon.cs.elte.hu/hg/lemon/rev/5f7a8570687d
changeset: 66:5f7a8570687d
user: Peter Kovacs <kpeter [at] inf.elte.hu>
date: Thu Feb 07 11:52:16 2008 +0000
description:
Port error.h from svn -r3438 + minor changes (error_test does not
pass!)
In svn -r3438 error_test is not used as a test program and it does
not pass.
diffstat:
4 files changed, 746 insertions(+), 1 deletion(-)
lemon/Makefile.am | 3
lemon/error.h | 675 ++++++++++++++++++++++++++++++++++++++++++++++++++++
test/Makefile.am | 1
test/error_test.cc | 68 +++++
diffs (truncated from 777 to 300 lines):
diff -r 761622e5ed4c -r 5f7a8570687d lemon/Makefile.am
--- a/lemon/Makefile.am Mon Feb 04 13:32:36 2008 +0100
+++ b/lemon/Makefile.am Thu Feb 07 11:52:16 2008 +0000
@@ -16,9 +16,10 @@ lemon_libemon_la_LDFLAGS = $(GLPK_LIBS)
lemon_HEADERS += \
lemon/dim2.h \
+ lemon/error.h \
+ lemon/list_graph.h \
lemon/maps.h \
lemon/random.h \
- lemon/list_graph.h \
lemon/tolerance.h
bits_HEADERS += \
diff -r 761622e5ed4c -r 5f7a8570687d lemon/error.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/lemon/error.h Thu Feb 07 11:52:16 2008 +0000
@@ -0,0 +1,675 @@
+/* -*- C++ -*-
+ *
+ * This file is a part of LEMON, a generic C++ optimization library
+ *
+ * Copyright (C) 2003-2008
+ * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
+ * (Egervary Research Group on Combinatorial Optimization, EGRES).
+ *
+ * Permission to use, modify and distribute this software is granted
+ * provided that this copyright notice appears in all copies. For
+ * precise terms see the accompanying LICENSE file.
+ *
+ * This software is provided "AS IS" with no warranty of any kind,
+ * express or implied, and with no claim as to its suitability for any
+ * purpose.
+ *
+ */
+
+#ifndef LEMON_ERROR_H
+#define LEMON_ERROR_H
+
+/// \ingroup exceptions
+/// \file
+/// \brief Basic exception classes and error handling.
+
+#include <exception>
+#include <string>
+#include <sstream>
+#include <iostream>
+#include <cstdlib>
+#include <memory>
+
+namespace lemon {
+
+ /// \addtogroup exceptions
+ /// @{
+
+ /// \brief Exception safe wrapper class.
+ ///
+ /// Exception safe wrapper class to implement the members of exceptions.
+ template <typename _Type>
+ class ExceptionMember {
+ public:
+ typedef _Type Type;
+
+ ExceptionMember() throw() {
+ try {
+ ptr.reset(new Type());
+ } catch (...) {}
+ }
+
+ ExceptionMember(const Type& type) throw() {
+ try {
+ ptr.reset(new Type());
+ if (ptr.get() == 0) return;
+ *ptr = type;
+ } catch (...) {}
+ }
+
+ ExceptionMember(const ExceptionMember& copy) throw() {
+ try {
+ if (!copy.valid()) return;
+ ptr.reset(new Type());
+ if (ptr.get() == 0) return;
+ *ptr = copy.get();
+ } catch (...) {}
+ }
+
+ ExceptionMember& operator=(const ExceptionMember& copy) throw() {
+ if (ptr.get() == 0) return;
+ try {
+ if (!copy.valid()) return;
+ *ptr = copy.get();
+ } catch (...) {}
+ }
+
+ void set(const Type& type) throw() {
+ if (ptr.get() == 0) return;
+ try {
+ *ptr = type;
+ } catch (...) {}
+ }
+
+ const Type& get() const {
+ return *ptr;
+ }
+
+ bool valid() const throw() {
+ return ptr.get() != 0;
+ }
+
+ private:
+ std::auto_ptr<_Type> ptr;
+ };
+
+ /// Exception-safe convenient "error message" class.
+
+ /// Helper class which provides a convenient ostream-like (operator <<
+ /// based) interface to create a string message. Mostly useful in
+ /// exception classes (therefore the name).
+ class ErrorMessage {
+ protected:
+ ///\e
+
+ ///\todo The good solution is boost::shared_ptr...
+ ///
+ mutable std::auto_ptr<std::ostringstream> buf;
+
+ ///\e
+ bool init() throw() {
+ try {
+ buf.reset(new std::ostringstream);
+ }
+ catch(...) {
+ buf.reset();
+ }
+ return buf.get();
+ }
+
+ public:
+
+ ///\e
+ ErrorMessage() throw() { init(); }
+
+ ErrorMessage(const ErrorMessage& em) throw() : buf(em.buf) { }
+
+ ///\e
+ ErrorMessage(const char *msg) throw() {
+ init();
+ *this << msg;
+ }
+
+ ///\e
+ ErrorMessage(const std::string &msg) throw() {
+ init();
+ *this << msg;
+ }
+
+ ///\e
+ template <typename T>
+ ErrorMessage& operator<<(const T &t) throw() {
+ if( ! buf.get() ) return *this;
+
+ try {
+ *buf << t;
+ }
+ catch(...) {
+ buf.reset();
+ }
+ return *this;
+ }
+
+ ///\e
+ const char* message() throw() {
+ if( ! buf.get() ) return 0;
+
+ const char* mes = 0;
+ try {
+ mes = buf->str().c_str();
+ }
+ catch(...) {}
+ return mes;
+ }
+
+ };
+
+ /// Generic exception class.
+
+ /// Base class for exceptions used in LEMON.
+ ///
+ class Exception : public std::exception {
+ public:
+ ///\e
+ Exception() {}
+ ///\e
+ virtual ~Exception() throw() {}
+ ///\e
+ virtual const char* what() const throw() {
+ return "lemon::Exception";
+ }
+ };
+
+ /// One of the two main subclasses of \ref Exception.
+
+ /// Logic errors represent problems in the internal logic of a program;
+ /// in theory, these are preventable, and even detectable before the
+ /// program runs (e.g. violations of class invariants).
+ ///
+ /// A typical example for this is \ref UninitializedParameter.
+ class LogicError : public Exception {
+ public:
+ virtual const char* what() const throw() {
+ return "lemon::LogicError";
+ }
+ };
+
+ /// \ref Exception for uninitialized parameters.
+
+ /// This error represents problems in the initialization
+ /// of the parameters of the algorithms.
+ class UninitializedParameter : public LogicError {
+ public:
+ virtual const char* what() const throw() {
+ return "lemon::UninitializedParameter";
+ }
+ };
+
+
+ /// One of the two main subclasses of \ref Exception.
+
+ /// Runtime errors represent problems outside the scope of a program;
+ /// they cannot be easily predicted and can generally only be caught
+ /// as the program executes.
+ class RuntimeError : public Exception {
+ public:
+ virtual const char* what() const throw() {
+ return "lemon::RuntimeError";
+ }
+ };
+
+ ///\e
+ class RangeError : public RuntimeError {
+ public:
+ virtual const char* what() const throw() {
+ return "lemon::RangeError";
+ }
+ };
+
+ ///\e
+ class IoError : public RuntimeError {
+ public:
+ virtual const char* what() const throw() {
+ return "lemon::IoError";
+ }
+ };
+
+ ///\e
+ class DataFormatError : public IoError {
+ protected:
+ ExceptionMember<std::string> _message;
+ ExceptionMember<std::string> _file;
+ int _line;
+
+ mutable ExceptionMember<std::string> _message_holder;
+ public:
+
+ DataFormatError(const DataFormatError &dfe) :
+ IoError(dfe), _message(dfe._message), _file(dfe._file),
+ _line(dfe._line) {}
+
+ ///\e
+ explicit DataFormatError(const char *the_message)
+ : _message(the_message), _line(0) {}
+
+ ///\e
+ DataFormatError(const std::string &file_name, int line_num,
+ const char *the_message)
+ : _message(the_message), _line(line_num) { file(file_name); }
+
+ ///\e
+ void line(int ln) { _line = ln; }
+ ///\e
+ void message(const std::string& msg) { _message.set(msg); }
+ ///\e
+ void file(const std::string &fl) { _file.set(fl); }
+
+ ///\e
+ int line() const { return _line; }
+ ///\e
+ const char* message() const {
+ if (_message.valid() && !_message.get().empty()) {
+ return _message.get().c_str();
+ } else {
+ return 0;
+ }
+ }
+
+ /// \brief Returns the filename.
+ ///
+ /// Returns \e null if the filename was not specified.
+ const char* file() const {
More information about the Lemon-commits
mailing list