Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix travis builds
[simgrid.git] / include / simgrid / Exception.hpp
1 /* Copyright (c) 2018. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_EXCEPTIONS_HPP
7 #define SIMGRID_EXCEPTIONS_HPP
8
9 /** @file exception.hpp SimGrid-specific Exceptions
10  *
11  *  Defines all possible exception that could occur in a SimGrid library.
12  */
13
14 #include <xbt/backtrace.hpp>
15 #include <xbt/ex.h>
16
17 #include <atomic>
18 #include <stdexcept>
19 #include <string>
20
21 namespace simgrid {
22 namespace xbt {
23
24 /** Contextual information about an execution location (file:line:func and backtrace, procname, pid)
25  *
26  *  Constitute the contextual information of where an exception was thrown
27  *
28  *  These tuples (__FILE__, __LINE__, __func__, backtrace, procname, pid)
29  *  are best created with @ref XBT_THROW_POINT.
30  *
31  *  @ingroup XBT_ex
32  */
33 class ThrowPoint {
34 public:
35   ThrowPoint() = default;
36   explicit ThrowPoint(const char* file, int line, const char* function, Backtrace bt, std::string actor_name, int pid)
37       : file_(file), line_(line), function_(function), backtrace_(bt), procname_(actor_name), pid_(pid)
38   {
39   }
40
41   const char* file_     = nullptr;
42   int line_             = 0;
43   const char* function_ = nullptr;
44   Backtrace backtrace_;
45   std::string procname_ = ""; /**< Name of the process who thrown this */
46   int pid_              = 0;  /**< PID of the process who thrown this */
47 };
48
49 /** Create a ThrowPoint with (__FILE__, __LINE__, __func__) */
50 #define XBT_THROW_POINT                                                                                                \
51   ::simgrid::xbt::ThrowPoint(__FILE__, __LINE__, __func__, simgrid::xbt::backtrace(), xbt_procname(), xbt_getpid())
52 } // namespace xbt
53
54 /** Ancestor class of all SimGrid exception */
55 class Exception : public std::runtime_error {
56 public:
57   Exception(simgrid::xbt::ThrowPoint throwpoint, std::string message)
58       : std::runtime_error(message), throwpoint_(throwpoint)
59   {
60   }
61
62   /** Return the information about where the exception was thrown */
63   xbt::ThrowPoint const& throw_point() const { return throwpoint_; }
64
65 private:
66   xbt::ThrowPoint throwpoint_;
67 };
68
69 } // namespace simgrid
70
71 /** A legacy exception
72  *
73  *  It is defined by a category and a value within that category (as well as
74  *  an optional error message).
75  *
76  *  This used to be a structure for C exceptions but it has been retrofitted
77  *  as a C++ exception and some of its data has been moved in the
78  *  @ref WithContextException base class. We should deprecate it and replace it
79  *  with either C++ different exceptions or `std::system_error` which already
80  *  provides this (category + error code) logic.
81  *
82  *  @ingroup XBT_ex_c
83  */
84 class XBT_PUBLIC xbt_ex : public simgrid::Exception {
85 public:
86   /**
87    *
88    * @param throwpoint Throw point (use XBT_THROW_POINT)
89    * @param message    Exception message
90    */
91   xbt_ex(simgrid::xbt::ThrowPoint throwpoint, std::string message) : simgrid::Exception(throwpoint, message) {}
92
93   ~xbt_ex(); // DO NOT define it here -- see ex.cpp for a rationale
94
95   /** Category (what went wrong) */
96   xbt_errcat_t category = unknown_error;
97
98   /** Why did it went wrong */
99   int value = 0;
100 };
101
102 namespace simgrid {
103
104 /** Exception raised when a timeout elapsed */
105 class TimeoutError : public xbt_ex {
106 public:
107   TimeoutError(simgrid::xbt::ThrowPoint throwpoint, std::string message) : xbt_ex(throwpoint, message)
108   {
109     category = timeout_error;
110   }
111 };
112
113 /** Exception raised when an host fails */
114 class HostFailureException : public xbt_ex {
115 public:
116   HostFailureException(simgrid::xbt::ThrowPoint throwpoint, std::string message) : xbt_ex(throwpoint, message)
117   {
118     category = host_error;
119   }
120 };
121
122 /** Exception raised when a communication fails because of the network */
123 class NetworkFailureException : public xbt_ex {
124 };
125
126 /** Exception raised when something got canceled before completion */
127 class CancelException : public xbt_ex {
128 };
129
130 } // namespace simgrid
131
132 #endif