Exception.hpp

00001 /*
00002 
00003 Copyright (C) University of Oxford, 2005-2010
00004 
00005 University of Oxford means the Chancellor, Masters and Scholars of the
00006 University of Oxford, having an administrative office at Wellington
00007 Square, Oxford OX1 2JD, UK.
00008 
00009 This file is part of Chaste.
00010 
00011 Chaste is free software: you can redistribute it and/or modify it
00012 under the terms of the GNU Lesser General Public License as published
00013 by the Free Software Foundation, either version 2.1 of the License, or
00014 (at your option) any later version.
00015 
00016 Chaste is distributed in the hope that it will be useful, but WITHOUT
00017 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
00019 License for more details. The offer of Chaste under the terms of the
00020 License is subject to the License being interpreted in accordance with
00021 English Law and subject to any action against the University of Oxford
00022 being under the jurisdiction of the English Courts.
00023 
00024 You should have received a copy of the GNU Lesser General Public License
00025 along with Chaste. If not, see <http://www.gnu.org/licenses/>.
00026 
00027 */
00028 
00029 
00030 #ifndef _EXCEPTION_HPP_
00031 #define _EXCEPTION_HPP_
00032 
00033 #include <string>
00034 
00035 #include <cfloat>
00036 #include <climits> //For UINT_MAX etc., necessary in gcc-4.3
00037 #include <cstdlib> //For system() etc., necessary in gcc-4.3
00038 
00039 const unsigned UNSIGNED_UNSET=UINT_MAX;
00040 const int INT_UNSET=INT_MAX;
00041 const double DOUBLE_UNSET=DBL_MAX;
00042 
00049 class Exception
00050 {
00051 private:
00052     std::string mMessage; 
00053     std::string mShortMessage; 
00055 public:
00063     Exception(const std::string& rMessage, const std::string& rFilename, unsigned lineNumber);
00064 
00070     std::string GetMessage() const;
00071 
00077     std::string GetShortMessage() const;
00078 
00088     std::string CheckShortMessage(std::string expected) const;
00089 
00099     std::string CheckShortMessageContains(std::string expected) const;
00100 };
00101 
00102 #define EXCEPTION(message) throw Exception(message, __FILE__, __LINE__)
00103 
00104 #define NEVER_REACHED EXCEPTION("Should have been impossible to reach this line of code")
00105 
00106 // This is to cope with NDEBUG causing variables to not be used, since they are only
00107 // used in assert()s
00108 #ifdef NDEBUG
00109 #define UNUSED_OPT(var) var=var
00110 #else
00111 #define UNUSED_OPT(var)
00112 #endif
00113 
00114 // These macros are handy for calling functions like system which return non-zero on error
00115 #define EXPECT0(cmd, arg) { \
00116     std::string _arg = (arg); \
00117     int ret = cmd(_arg.c_str()); \
00118     if (ret != 0) { \
00119         EXCEPTION("Error executing command: " #cmd "(" + _arg + ")"); \
00120     } }
00121 
00122 #define MPIABORTIFNON0(cmd, arg) { \
00123     std::string _arg = (arg); \
00124     int ret = cmd(_arg.c_str()); \
00125     if (ret != 0) { \
00126         std::cout << "Error executing command: " #cmd "(" + _arg + ")"; \
00127         MPI_Abort(PETSC_COMM_WORLD, -1); \
00128     } }
00129 
00130 
00131 #define EXPECTNON0(cmd, arg) { \
00132     std::string _arg = (arg); \
00133     int ret = cmd(_arg.c_str()); \
00134     if (ret == 0) { \
00135         EXCEPTION("Command: " #cmd "(" + _arg + ") succeeded and it shouldn't have"); \
00136     } }
00137 
00138 
00139 // Or if you don't care about errors for some reason...
00140 #define IGNORE_RET(cmd, arg) { \
00141     std::string _arg = (arg); \
00142     int ret = cmd(_arg.c_str()); \
00143     ret = ret; \
00144     }
00145 
00146 #endif // _EXCEPTION_HPP_

Generated by  doxygen 1.6.2