[4706098c] | 1 | \chapter{Exception Features}
|
---|
[553f8abe] | 2 | \label{c:features}
|
---|
[4706098c] | 3 |
|
---|
| 4 | This chapter covers the design and user interface of the \CFA
|
---|
[4ed7946e] | 5 | EHM, % or exception system.
|
---|
| 6 | and begins with a general overview of EHMs. It is not a strict
|
---|
| 7 | definition of all EHMs nor an exhaustive list of all possible features.
|
---|
| 8 | However it does cover the most common structures and features found in them.
|
---|
[f6106a6] | 9 |
|
---|
[4260566] | 10 | % We should cover what is an exception handling mechanism and what is an
|
---|
| 11 | % exception before this. Probably in the introduction. Some of this could
|
---|
| 12 | % move there.
|
---|
[4ed7946e] | 13 | \section{Raise / Handle}
|
---|
[4260566] | 14 | An exception operation has two main parts: raise and handle.
|
---|
| 15 | These terms are sometimes also known as throw and catch but this work uses
|
---|
| 16 | throw/catch as a particular kind of raise/handle.
|
---|
[4ed7946e] | 17 | These are the two parts that the user writes and may
|
---|
[f6106a6] | 18 | be the only two pieces of the EHM that have any syntax in the language.
|
---|
[4260566] | 19 |
|
---|
[4ed7946e] | 20 | \paragraph{Raise}
|
---|
[f6106a6] | 21 | The raise is the starting point for exception handling. It marks the beginning
|
---|
[4ed7946e] | 22 | of exception handling by raising an exception, which passes it to
|
---|
[f6106a6] | 23 | the EHM.
|
---|
[4260566] | 24 |
|
---|
[f6106a6] | 25 | Some well known examples include the @throw@ statements of \Cpp and Java and
|
---|
[4ed7946e] | 26 | the \code{Python}{raise} statement from Python. A raise may
|
---|
| 27 | perform some other work (such as memory management) but for the
|
---|
[299b8b28] | 28 | purposes of this overview that can be ignored.
|
---|
[4260566] | 29 |
|
---|
[4ed7946e] | 30 | \paragraph{Handle}
|
---|
[f6106a6] | 31 | The purpose of most exception operations is to run some user code to handle
|
---|
| 32 | that exception. This code is given, with some other information, in a handler.
|
---|
| 33 |
|
---|
| 34 | A handler has three common features: the previously mentioned user code, a
|
---|
[4ed7946e] | 35 | region of code they guard, and an exception label/condition that matches
|
---|
[f6106a6] | 36 | certain exceptions.
|
---|
[4ed7946e] | 37 | Only raises inside the guarded region and raising exceptions that match the
|
---|
[f6106a6] | 38 | label can be handled by a given handler.
|
---|
[4ed7946e] | 39 | Different EHMs have different rules to pick a handler,
|
---|
| 40 | if multiple handlers could be used, such as ``best match" or ``first found".
|
---|
[4260566] | 41 |
|
---|
[f6106a6] | 42 | The @try@ statements of \Cpp, Java and Python are common examples. All three
|
---|
[4ed7946e] | 43 | also show another common feature of handlers, they are grouped by the guarded
|
---|
[f6106a6] | 44 | region.
|
---|
| 45 |
|
---|
[4ed7946e] | 46 | \section{Propagation}
|
---|
[de47a9d] | 47 | After an exception is raised comes what is usually the biggest step for the
|
---|
[4ed7946e] | 48 | EHM: finding and setting up the handler. The propagation from raise to
|
---|
[f6106a6] | 49 | handler can be broken up into three different tasks: searching for a handler,
|
---|
[4ed7946e] | 50 | matching against the handler, and installing the handler.
|
---|
[de47a9d] | 51 |
|
---|
[4ed7946e] | 52 | \paragraph{Searching}
|
---|
[f6106a6] | 53 | The EHM begins by searching for handlers that might be used to handle
|
---|
[de47a9d] | 54 | the exception. Searching is usually independent of the exception that was
|
---|
[4ed7946e] | 55 | thrown as it looks for handlers that have the raise site in their guarded
|
---|
[f6106a6] | 56 | region.
|
---|
[4ed7946e] | 57 | This search includes handlers in the current function, as well as any in callers
|
---|
| 58 | on the stack that have the function call in their guarded region.
|
---|
[f6106a6] | 59 |
|
---|
[4ed7946e] | 60 | \paragraph{Matching}
|
---|
[f6106a6] | 61 | Each handler found has to be matched with the raised exception. The exception
|
---|
[4ed7946e] | 62 | label defines a condition that is used with the exception to decide if
|
---|
[f6106a6] | 63 | there is a match or not.
|
---|
| 64 |
|
---|
[4ed7946e] | 65 | In languages where the first match is used, this step is intertwined with
|
---|
| 66 | searching: a match check is performed immediately after the search finds
|
---|
[4260566] | 67 | a possible handler.
|
---|
| 68 |
|
---|
[4ed7946e] | 69 | \section{Installing}
|
---|
[f6106a6] | 70 | After a handler is chosen it must be made ready to run.
|
---|
| 71 | The implementation can vary widely to fit with the rest of the
|
---|
[de47a9d] | 72 | design of the EHM. The installation step might be trivial or it could be
|
---|
[4260566] | 73 | the most expensive step in handling an exception. The latter tends to be the
|
---|
| 74 | case when stack unwinding is involved.
|
---|
[de47a9d] | 75 |
|
---|
[4ed7946e] | 76 | If a matching handler is not guarantied to be found, the EHM needs a
|
---|
| 77 | different course of action for the case where no handler matches.
|
---|
| 78 | This situation only occurs with unchecked exceptions as checked exceptions
|
---|
| 79 | (such as in Java) can make the guarantee.
|
---|
| 80 | This unhandled action can abort the program or install a very general handler.
|
---|
[4260566] | 81 |
|
---|
[4ed7946e] | 82 | \paragraph{Hierarchy}
|
---|
[f6106a6] | 83 | A common way to organize exceptions is in a hierarchical structure.
|
---|
[4ed7946e] | 84 | This organization is often used in object-orientated languages where the
|
---|
[4260566] | 85 | exception hierarchy is a natural extension of the object hierarchy.
|
---|
| 86 |
|
---|
| 87 | Consider the following hierarchy of exceptions:
|
---|
[4706098c] | 88 | \begin{center}
|
---|
[6a8208cb] | 89 | \input{exception-hierarchy}
|
---|
[4706098c] | 90 | \end{center}
|
---|
[de47a9d] | 91 |
|
---|
[4260566] | 92 | A handler labelled with any given exception can handle exceptions of that
|
---|
| 93 | type or any child type of that exception. The root of the exception hierarchy
|
---|
[299b8b28] | 94 | (here \code{C}{exception}) acts as a catch-all, leaf types catch single types
|
---|
[4260566] | 95 | and the exceptions in the middle can be used to catch different groups of
|
---|
| 96 | related exceptions.
|
---|
| 97 |
|
---|
| 98 | This system has some notable advantages, such as multiple levels of grouping,
|
---|
[de47a9d] | 99 | the ability for libraries to add new exception types and the isolation
|
---|
[f6106a6] | 100 | between different sub-hierarchies.
|
---|
| 101 | This design is used in \CFA even though it is not a object-orientated
|
---|
[a6c45c6] | 102 | language; so different tools are used to create the hierarchy.
|
---|
[4260566] | 103 |
|
---|
| 104 | % Could I cite the rational for the Python IO exception rework?
|
---|
| 105 |
|
---|
| 106 | \paragraph{Completion}
|
---|
[de47a9d] | 107 | After the handler has finished the entire exception operation has to complete
|
---|
[f6106a6] | 108 | and continue executing somewhere else. This step is usually simple,
|
---|
| 109 | both logically and in its implementation, as the installation of the handler
|
---|
| 110 | is usually set up to do most of the work.
|
---|
[de47a9d] | 111 |
|
---|
[f6106a6] | 112 | The EHM can return control to many different places,
|
---|
[4ed7946e] | 113 | the most common are after the handler definition (termination) and after the raise (resumption).
|
---|
[4260566] | 114 |
|
---|
| 115 | \paragraph{Communication}
|
---|
[887fc79] | 116 | For effective exception handling, additional information is often passed
|
---|
[4ed7946e] | 117 | from the raise to the handler and back again.
|
---|
[f6106a6] | 118 | So far only communication of the exceptions' identity has been covered.
|
---|
[4ed7946e] | 119 | A common communication method is putting fields into the exception instance and giving the
|
---|
| 120 | handler access to them. References in the exception instance can push data back to the raise.
|
---|
[4260566] | 121 |
|
---|
| 122 | \section{Virtuals}
|
---|
[f6106a6] | 123 | Virtual types and casts are not part of \CFA's EHM nor are they required for
|
---|
[a6c45c6] | 124 | any EHM.
|
---|
[4ed7946e] | 125 | However, one of the best ways to support an exception hierarchy is via a virtual system
|
---|
| 126 | among exceptions and used for exception matching.
|
---|
[a6c45c6] | 127 |
|
---|
[4ed7946e] | 128 | Ideally, the virtual system would have been part of \CFA before the work
|
---|
[a6c45c6] | 129 | on exception handling began, but unfortunately it was not.
|
---|
[4ed7946e] | 130 | Therefore, only the features and framework needed for the EHM were
|
---|
[a6c45c6] | 131 | designed and implemented. Other features were considered to ensure that
|
---|
[4ed7946e] | 132 | the structure could accommodate other desirable features in the future but they were not
|
---|
[a6c45c6] | 133 | implemented.
|
---|
[4ed7946e] | 134 | The rest of this section discusses the implemented subset of the
|
---|
| 135 | virtual-system design.
|
---|
[4260566] | 136 |
|
---|
| 137 | The virtual system supports multiple ``trees" of types. Each tree is
|
---|
| 138 | a simple hierarchy with a single root type. Each type in a tree has exactly
|
---|
[f6106a6] | 139 | one parent -- except for the root type which has zero parents -- and any
|
---|
[4260566] | 140 | number of children.
|
---|
| 141 | Any type that belongs to any of these trees is called a virtual type.
|
---|
| 142 |
|
---|
| 143 | % A type's ancestors are its parent and its parent's ancestors.
|
---|
| 144 | % The root type has no ancestors.
|
---|
[4ed7946e] | 145 | % A type's decedents are its children and its children's decedents.
|
---|
[4260566] | 146 |
|
---|
[de47a9d] | 147 | Every virtual type also has a list of virtual members. Children inherit
|
---|
| 148 | their parent's list of virtual members but may add new members to it.
|
---|
[f6106a6] | 149 | It is important to note that these are virtual members, not virtual methods
|
---|
| 150 | of object-orientated programming, and can be of any type.
|
---|
[4ed7946e] | 151 |
|
---|
| 152 | \PAB{I do not understand these sentences. Can you add an example? $\Rightarrow$
|
---|
[c21f5a9] | 153 | \CFA still supports virtual methods as a special case of virtual members.
|
---|
[4ed7946e] | 154 | Function pointers that take a pointer to the virtual type are modified
|
---|
[c21f5a9] | 155 | with each level of inheritance so that refers to the new type.
|
---|
| 156 | This means an object can always be passed to a function in its virtual table
|
---|
[4ed7946e] | 157 | as if it were a method.}
|
---|
[4260566] | 158 |
|
---|
[f6106a6] | 159 | Each virtual type has a unique id.
|
---|
[4ed7946e] | 160 | This id and all the virtual members are combined
|
---|
[de47a9d] | 161 | into a virtual table type. Each virtual type has a pointer to a virtual table
|
---|
[4260566] | 162 | as a hidden field.
|
---|
| 163 |
|
---|
[4ed7946e] | 164 | \PAB{God forbid, maybe you need a UML diagram to relate these entities.}
|
---|
| 165 |
|
---|
[f6106a6] | 166 | Up until this point the virtual system is similar to ones found in
|
---|
| 167 | object-orientated languages but this where \CFA diverges. Objects encapsulate a
|
---|
[08e75215] | 168 | single set of behaviours in each type, universally across the entire program,
|
---|
[4ed7946e] | 169 | and indeed all programs that use that type definition. In this sense, the
|
---|
[08e75215] | 170 | types are ``closed" and cannot be altered.
|
---|
[de47a9d] | 171 |
|
---|
[4ed7946e] | 172 | In \CFA, types do not encapsulate any behaviour. Traits are local and
|
---|
| 173 | types can begin to satisfy a trait, stop satisfying a trait or satisfy the same
|
---|
[f6106a6] | 174 | trait in a different way at any lexical location in the program.
|
---|
[4ed7946e] | 175 | In this sense, they are ``open" as they can change at any time. This capability means it
|
---|
| 176 | is impossible to pick a single set of functions that represent the type's
|
---|
[f6106a6] | 177 | implementation across the program.
|
---|
| 178 |
|
---|
| 179 | \CFA side-steps this issue by not having a single virtual table for each
|
---|
[4ed7946e] | 180 | type. A user can define virtual tables that are filled in at their
|
---|
| 181 | declaration and given a name. Anywhere that name is visible, even if
|
---|
| 182 | defined locally inside a function (although that means it does not have a
|
---|
[f6106a6] | 183 | static lifetime), it can be used.
|
---|
[4ed7946e] | 184 | Specifically, a virtual type is ``bound" to a virtual table that
|
---|
[08e75215] | 185 | sets the virtual members for that object. The virtual members can be accessed
|
---|
| 186 | through the object.
|
---|
[4706098c] | 187 |
|
---|
[4ed7946e] | 188 | \PAB{The above explanation is very good!}
|
---|
| 189 |
|
---|
[4706098c] | 190 | While much of the virtual infrastructure is created, it is currently only used
|
---|
| 191 | internally for exception handling. The only user-level feature is the virtual
|
---|
[4ed7946e] | 192 | cast
|
---|
[7eb6eb5] | 193 | \label{p:VirtualCast}
|
---|
[4706098c] | 194 | \begin{cfa}
|
---|
[4a36b344] | 195 | (virtual TYPE)EXPRESSION
|
---|
[4706098c] | 196 | \end{cfa}
|
---|
[4ed7946e] | 197 | which is the same as the \Cpp \code{C++}{dynamic_cast}.
|
---|
[29c9b23] | 198 | Note, the syntax and semantics matches a C-cast, rather than the function-like
|
---|
| 199 | \Cpp syntax for special casts. Both the type of @EXPRESSION@ and @TYPE@ must be
|
---|
| 200 | a pointer to a virtual type.
|
---|
[de47a9d] | 201 | The cast dynamically checks if the @EXPRESSION@ type is the same or a sub-type
|
---|
[29c9b23] | 202 | of @TYPE@, and if true, returns a pointer to the
|
---|
[4706098c] | 203 | @EXPRESSION@ object, otherwise it returns @0p@ (null pointer).
|
---|
| 204 |
|
---|
| 205 | \section{Exception}
|
---|
[4a36b344] | 206 | % Leaving until later, hopefully it can talk about actual syntax instead
|
---|
| 207 | % of my many strange macros. Syntax aside I will also have to talk about the
|
---|
| 208 | % features all exceptions support.
|
---|
| 209 |
|
---|
[4706098c] | 210 | Exceptions are defined by the trait system; there are a series of traits, and
|
---|
[1c1c180] | 211 | if a type satisfies them, then it can be used as an exception. The following
|
---|
[4706098c] | 212 | is the base trait all exceptions need to match.
|
---|
| 213 | \begin{cfa}
|
---|
| 214 | trait is_exception(exceptT &, virtualT &) {
|
---|
[a6c45c6] | 215 | // Numerous imaginary assertions.
|
---|
[02b73ea] | 216 | };
|
---|
[4706098c] | 217 | \end{cfa}
|
---|
[29c9b23] | 218 | The trait is defined over two types, the exception type and the virtual table
|
---|
[4ed7946e] | 219 | type. Each exception type should have a single virtual table type.
|
---|
| 220 | There are no actual assertions in this trait because currently the trait system
|
---|
| 221 | cannot express them (adding such assertions would be part of
|
---|
[a6c45c6] | 222 | completing the virtual system). The imaginary assertions would probably come
|
---|
| 223 | from a trait defined by the virtual system, and state that the exception type
|
---|
[4ed7946e] | 224 | is a virtual type, is a descendent of @exception_t@ (the base exception type)
|
---|
[a6c45c6] | 225 | and note its virtual table type.
|
---|
[29c9b23] | 226 |
|
---|
| 227 | % I did have a note about how it is the programmer's responsibility to make
|
---|
| 228 | % sure the function is implemented correctly. But this is true of every
|
---|
[de47a9d] | 229 | % similar system I know of (except Agda's I guess) so I took it out.
|
---|
| 230 |
|
---|
[f6106a6] | 231 | There are two more traits for exceptions defined as follows:
|
---|
[4706098c] | 232 | \begin{cfa}
|
---|
[02b73ea] | 233 | trait is_termination_exception(
|
---|
[4706098c] | 234 | exceptT &, virtualT & | is_exception(exceptT, virtualT)) {
|
---|
[29c9b23] | 235 | void defaultTerminationHandler(exceptT &);
|
---|
[02b73ea] | 236 | };
|
---|
| 237 |
|
---|
| 238 | trait is_resumption_exception(
|
---|
[4706098c] | 239 | exceptT &, virtualT & | is_exception(exceptT, virtualT)) {
|
---|
[29c9b23] | 240 | void defaultResumptionHandler(exceptT &);
|
---|
[02b73ea] | 241 | };
|
---|
[4706098c] | 242 | \end{cfa}
|
---|
[4ed7946e] | 243 | Both traits ensure a pair of types are an exception type and its virtual table,
|
---|
[f6106a6] | 244 | and defines one of the two default handlers. The default handlers are used
|
---|
[df24d37] | 245 | as fallbacks and are discussed in detail in \vref{s:ExceptionHandling}.
|
---|
[de47a9d] | 246 |
|
---|
[f6106a6] | 247 | However, all three of these traits can be tricky to use directly.
|
---|
| 248 | While there is a bit of repetition required,
|
---|
[de47a9d] | 249 | the largest issue is that the virtual table type is mangled and not in a user
|
---|
[f6106a6] | 250 | facing way. So these three macros are provided to wrap these traits to
|
---|
| 251 | simplify referring to the names:
|
---|
[29c9b23] | 252 | @IS_EXCEPTION@, @IS_TERMINATION_EXCEPTION@ and @IS_RESUMPTION_EXCEPTION@.
|
---|
[1830a86] | 253 |
|
---|
[f6106a6] | 254 | All three take one or two arguments. The first argument is the name of the
|
---|
| 255 | exception type. The macro passes its unmangled and mangled form to the trait.
|
---|
[1830a86] | 256 | The second (optional) argument is a parenthesized list of polymorphic
|
---|
[f6106a6] | 257 | arguments. This argument is only used with polymorphic exceptions and the
|
---|
| 258 | list is be passed to both types.
|
---|
| 259 | In the current set-up, the two types always have the same polymorphic
|
---|
| 260 | arguments so these macros can be used without losing flexibility.
|
---|
[29c9b23] | 261 |
|
---|
| 262 | For example consider a function that is polymorphic over types that have a
|
---|
| 263 | defined arithmetic exception:
|
---|
| 264 | \begin{cfa}
|
---|
[de47a9d] | 265 | forall(Num | IS_EXCEPTION(Arithmetic, (Num)))
|
---|
[29c9b23] | 266 | void some_math_function(Num & left, Num & right);
|
---|
| 267 | \end{cfa}
|
---|
[4706098c] | 268 |
|
---|
[1830a86] | 269 | \section{Exception Handling}
|
---|
[f6106a6] | 270 | \label{s:ExceptionHandling}
|
---|
[4ed7946e] | 271 | As stated, \CFA provides two kinds of exception handling: termination and resumption.
|
---|
[f6106a6] | 272 | These twin operations are the core of \CFA's exception handling mechanism.
|
---|
[4ed7946e] | 273 | This section covers the general patterns shared by the two operations and
|
---|
| 274 | then go on to cover the details of each individual operation.
|
---|
[de47a9d] | 275 |
|
---|
[f6106a6] | 276 | Both operations follow the same set of steps.
|
---|
[4ed7946e] | 277 | Both start with the user performing a raise on an exception.
|
---|
| 278 | Then the exception propagates up the stack.
|
---|
[f6106a6] | 279 | If a handler is found the exception is caught and the handler is run.
|
---|
[4ed7946e] | 280 | After that control returns to a point specific to the kind of exception.
|
---|
| 281 | If the search fails a default handler is run, and if it returns, control
|
---|
| 282 | continues after the raise. Note, the default handler may further change control flow rather than return.
|
---|
[f6106a6] | 283 |
|
---|
| 284 | This general description covers what the two kinds have in common.
|
---|
[4ed7946e] | 285 | Differences include how propagation is performed, where exception continues
|
---|
[f6106a6] | 286 | after an exception is caught and handled and which default handler is run.
|
---|
[1830a86] | 287 |
|
---|
[4706098c] | 288 | \subsection{Termination}
|
---|
| 289 | \label{s:Termination}
|
---|
[4ed7946e] | 290 |
|
---|
[f6106a6] | 291 | Termination handling is the familiar kind and used in most programming
|
---|
[1830a86] | 292 | languages with exception handling.
|
---|
[4ed7946e] | 293 | It is a dynamic, non-local goto. If the raised exception is matched and
|
---|
| 294 | handled, the stack is unwound and control (usually) continues in the function
|
---|
[f6106a6] | 295 | on the call stack that defined the handler.
|
---|
| 296 | Termination is commonly used when an error has occurred and recovery is
|
---|
| 297 | impossible locally.
|
---|
[1830a86] | 298 |
|
---|
| 299 | % (usually) Control can continue in the current function but then a different
|
---|
| 300 | % control flow construct should be used.
|
---|
[4706098c] | 301 |
|
---|
[f6106a6] | 302 | A termination raise is started with the @throw@ statement:
|
---|
[4706098c] | 303 | \begin{cfa}
|
---|
[4a36b344] | 304 | throw EXPRESSION;
|
---|
[4706098c] | 305 | \end{cfa}
|
---|
[29c9b23] | 306 | The expression must return a reference to a termination exception, where the
|
---|
[f6106a6] | 307 | termination exception is any type that satisfies the trait
|
---|
| 308 | @is_termination_exception@ at the call site.
|
---|
[4ed7946e] | 309 | Through \CFA's trait system, the trait functions are implicitly passed into the
|
---|
[f6106a6] | 310 | throw code and the EHM.
|
---|
| 311 | A new @defaultTerminationHandler@ can be defined in any scope to
|
---|
[4ed7946e] | 312 | change the throw's behaviour (see below).
|
---|
[de47a9d] | 313 |
|
---|
[4ed7946e] | 314 | The throw copies the provided exception into managed memory to ensure
|
---|
| 315 | the exception is not destroyed when the stack is unwound.
|
---|
[f6106a6] | 316 | It is the user's responsibility to ensure the original exception is cleaned
|
---|
[4ed7946e] | 317 | up whether the stack is unwound or not. Allocating it on the stack is
|
---|
[f6106a6] | 318 | usually sufficient.
|
---|
[de47a9d] | 319 |
|
---|
[4ed7946e] | 320 | Then propagation starts the search. \CFA uses a ``first match" rule so
|
---|
| 321 | matching is performed with the copied exception as the search continues.
|
---|
| 322 | It starts from the throwing function and proceeds towards the base of the stack,
|
---|
[1830a86] | 323 | from callee to caller.
|
---|
[de47a9d] | 324 | At each stack frame, a check is made for resumption handlers defined by the
|
---|
[1830a86] | 325 | @catch@ clauses of a @try@ statement.
|
---|
[4706098c] | 326 | \begin{cfa}
|
---|
[4a36b344] | 327 | try {
|
---|
[4706098c] | 328 | GUARDED_BLOCK
|
---|
[f6106a6] | 329 | } catch (EXCEPTION_TYPE$\(_1\)$ * [NAME$\(_1\)$]) {
|
---|
[4706098c] | 330 | HANDLER_BLOCK$\(_1\)$
|
---|
[f6106a6] | 331 | } catch (EXCEPTION_TYPE$\(_2\)$ * [NAME$\(_2\)$]) {
|
---|
[4706098c] | 332 | HANDLER_BLOCK$\(_2\)$
|
---|
[4a36b344] | 333 | }
|
---|
[4706098c] | 334 | \end{cfa}
|
---|
[4ed7946e] | 335 | When viewed on its own, a try statement simply executes the statements
|
---|
| 336 | in \snake{GUARDED_BLOCK} and when those are finished, the try statement finishes.
|
---|
[de47a9d] | 337 |
|
---|
| 338 | However, while the guarded statements are being executed, including any
|
---|
[4ed7946e] | 339 | invoked functions, all the handlers in these statements are included on the search
|
---|
| 340 | path. Hence, if a termination exception is raised, the search includes the added handlers associated with the guarded block and those further up the
|
---|
| 341 | stack from the guarded block.
|
---|
[f6106a6] | 342 |
|
---|
| 343 | Exception matching checks the handler in each catch clause in the order
|
---|
[4ed7946e] | 344 | they appear, top to bottom. If the representation of the raised exception type
|
---|
[f6106a6] | 345 | is the same or a descendant of @EXCEPTION_TYPE@$_i$ then @NAME@$_i$
|
---|
[4ed7946e] | 346 | (if provided) is bound to a pointer to the exception and the statements in
|
---|
| 347 | @HANDLER_BLOCK@$_i$ are executed.
|
---|
| 348 | If control reaches the end of the handler, the exception is
|
---|
[de47a9d] | 349 | freed and control continues after the try statement.
|
---|
[4706098c] | 350 |
|
---|
[4ed7946e] | 351 | If no termination handler is found during the search, the default handler
|
---|
| 352 | (\defaultTerminationHandler) visible at the raise statement is called.
|
---|
| 353 | Through \CFA's trait system, the best match at the raise sight is used.
|
---|
| 354 | This function is run and is passed the copied exception. If the default
|
---|
| 355 | handler returns, control continues after the throw statement.
|
---|
[1830a86] | 356 |
|
---|
[f6106a6] | 357 | There is a global @defaultTerminationHandler@ that is polymorphic over all
|
---|
[4ed7946e] | 358 | termination exception types. Since it is so general, a more specific handler can be
|
---|
| 359 | defined and is used for those types, effectively overriding the handler
|
---|
| 360 | for a particular exception type.
|
---|
[f6106a6] | 361 | The global default termination handler performs a cancellation
|
---|
[df24d37] | 362 | (see \vref{s:Cancellation}) on the current stack with the copied exception.
|
---|
[4706098c] | 363 |
|
---|
| 364 | \subsection{Resumption}
|
---|
| 365 | \label{s:Resumption}
|
---|
| 366 |
|
---|
[f6106a6] | 367 | Resumption exception handling is less common than termination but is
|
---|
| 368 | just as old~\cite{Goodenough75} and is simpler in many ways.
|
---|
| 369 | It is a dynamic, non-local function call. If the raised exception is
|
---|
[4ed7946e] | 370 | matched a closure is taken from up the stack and executed,
|
---|
| 371 | after which the raising function continues executing.
|
---|
| 372 | These are most often used when a potentially repairable error occurs, some handler is found on the stack to fix it, and
|
---|
| 373 | the raising function can continue with the correction.
|
---|
| 374 | Another common usage is dynamic event analysis, \eg logging, without disrupting control flow.
|
---|
| 375 | Note, if an event is raised and there is no interest, control continues normally.
|
---|
| 376 |
|
---|
| 377 | \PAB{We also have \lstinline{report} instead of \lstinline{throwResume}, \lstinline{recover} instead of \lstinline{catch}, and \lstinline{fixup} instead of \lstinline{catchResume}.
|
---|
| 378 | You may or may not want to mention it. You can still stick with \lstinline{catch} and \lstinline{throw/catchResume} in the thesis.}
|
---|
[8483c39a] | 379 |
|
---|
[4706098c] | 380 | A resumption raise is started with the @throwResume@ statement:
|
---|
| 381 | \begin{cfa}
|
---|
[4a36b344] | 382 | throwResume EXPRESSION;
|
---|
[4706098c] | 383 | \end{cfa}
|
---|
[f6106a6] | 384 | It works much the same way as the termination throw.
|
---|
| 385 | The expression must return a reference to a resumption exception,
|
---|
| 386 | where the resumption exception is any type that satisfies the trait
|
---|
| 387 | @is_resumption_exception@ at the call site.
|
---|
| 388 | The assertions from this trait are available to
|
---|
[4ed7946e] | 389 | the exception system, while handling the exception.
|
---|
[29c9b23] | 390 |
|
---|
[4ed7946e] | 391 | Resumption does not need to copy the raised exception, as the stack is not unwound.
|
---|
| 392 | The exception and
|
---|
| 393 | any values on the stack remain in scope, while the resumption is handled.
|
---|
[4706098c] | 394 |
|
---|
[f6106a6] | 395 | The EHM then begins propogation. The search starts from the raise in the
|
---|
[4ed7946e] | 396 | resuming function and proceeds towards the base of the stack, from callee to caller.
|
---|
[1830a86] | 397 | At each stack frame, a check is made for resumption handlers defined by the
|
---|
| 398 | @catchResume@ clauses of a @try@ statement.
|
---|
[4706098c] | 399 | \begin{cfa}
|
---|
[4a36b344] | 400 | try {
|
---|
[4706098c] | 401 | GUARDED_BLOCK
|
---|
[f6106a6] | 402 | } catchResume (EXCEPTION_TYPE$\(_1\)$ * [NAME$\(_1\)$]) {
|
---|
[4706098c] | 403 | HANDLER_BLOCK$\(_1\)$
|
---|
[f6106a6] | 404 | } catchResume (EXCEPTION_TYPE$\(_2\)$ * [NAME$\(_2\)$]) {
|
---|
[4706098c] | 405 | HANDLER_BLOCK$\(_2\)$
|
---|
[4a36b344] | 406 | }
|
---|
[4706098c] | 407 | \end{cfa}
|
---|
[f6106a6] | 408 | % I wonder if there would be some good central place for this.
|
---|
| 409 | Note that termination handlers and resumption handlers may be used together
|
---|
| 410 | in a single try statement, intermixing @catch@ and @catchResume@ freely.
|
---|
[4ed7946e] | 411 | Each type of handler only interacts with exceptions from the matching
|
---|
| 412 | kind of raise.
|
---|
| 413 | When a try statement is executed, it simply executes the statements in the
|
---|
| 414 | @GUARDED_BLOCK@ and then returns.
|
---|
[f6106a6] | 415 |
|
---|
| 416 | However, while the guarded statements are being executed, including any
|
---|
[4ed7946e] | 417 | invoked functions, all the handlers in these statements are included on the search
|
---|
| 418 | path. Hence, if a resumption exception is raised the search includes the added handlers associated with the guarded block and those further up the
|
---|
| 419 | stack from the guarded block.
|
---|
[f6106a6] | 420 |
|
---|
| 421 | Exception matching checks the handler in each catch clause in the order
|
---|
[4ed7946e] | 422 | they appear, top to bottom. If the representation of the raised exception type
|
---|
[f6106a6] | 423 | is the same or a descendant of @EXCEPTION_TYPE@$_i$ then @NAME@$_i$
|
---|
| 424 | (if provided) is bound to a pointer to the exception and the statements in
|
---|
| 425 | @HANDLER_BLOCK@$_i$ are executed.
|
---|
| 426 | If control reaches the end of the handler, execution continues after the
|
---|
| 427 | the raise statement that raised the handled exception.
|
---|
[de47a9d] | 428 |
|
---|
[4ed7946e] | 429 | Like termination, if no resumption handler is found during the search, the default handler
|
---|
| 430 | (\defaultResumptionHandler) visible at the raise statement is called.
|
---|
| 431 | It uses the best match at the
|
---|
| 432 | raise sight according to \CFA's overloading rules. The default handler is
|
---|
[de47a9d] | 433 | passed the exception given to the throw. When the default handler finishes
|
---|
[f6106a6] | 434 | execution continues after the raise statement.
|
---|
[de47a9d] | 435 |
|
---|
[4ed7946e] | 436 | There is a global \defaultResumptionHandler{} that is polymorphic over all
|
---|
| 437 | resumption exception types and preforms a termination throw on the exception.
|
---|
| 438 | The \defaultTerminationHandler{} can be
|
---|
[887fc79] | 439 | customized by introducing a new or better match as well.
|
---|
[1830a86] | 440 |
|
---|
[f6106a6] | 441 | \subsubsection{Resumption Marking}
|
---|
[df24d37] | 442 | \label{s:ResumptionMarking}
|
---|
[4ed7946e] | 443 |
|
---|
[1830a86] | 444 | A key difference between resumption and termination is that resumption does
|
---|
[de47a9d] | 445 | not unwind the stack. A side effect that is that when a handler is matched
|
---|
[4ed7946e] | 446 | and run, its try block (the guarded statements) and every try statement
|
---|
| 447 | searched before it are still on the stack. Their existence can lead to the recursive
|
---|
[1830a86] | 448 | resumption problem.
|
---|
| 449 |
|
---|
| 450 | The recursive resumption problem is any situation where a resumption handler
|
---|
| 451 | ends up being called while it is running.
|
---|
| 452 | Consider a trivial case:
|
---|
| 453 | \begin{cfa}
|
---|
| 454 | try {
|
---|
| 455 | throwResume (E &){};
|
---|
| 456 | } catchResume(E *) {
|
---|
| 457 | throwResume (E &){};
|
---|
| 458 | }
|
---|
| 459 | \end{cfa}
|
---|
[4ed7946e] | 460 | When this code is executed, the guarded @throwResume@ starts a
|
---|
| 461 | search and matchs the handler in the @catchResume@ clause. This
|
---|
| 462 | call is placed on the top of stack above the try-block. The second throw
|
---|
| 463 | searchs the same try block and puts call another instance of the
|
---|
| 464 | same handler on the stack leading to an infinite recursion.
|
---|
[1830a86] | 465 |
|
---|
[4ed7946e] | 466 | While this situation is trivial and easy to avoid, much more complex cycles
|
---|
[1830a86] | 467 | can form with multiple handlers and different exception types.
|
---|
| 468 |
|
---|
[4ed7946e] | 469 | To prevent all of these cases, the exception search marks the try statements it visits.
|
---|
[f6106a6] | 470 | A try statement is marked when a match check is preformed with it and an
|
---|
[4ed7946e] | 471 | exception. The statement is unmarked when the handling of that exception
|
---|
[f6106a6] | 472 | is completed or the search completes without finding a handler.
|
---|
[4ed7946e] | 473 | While a try statement is marked, its handlers are never matched, effectify
|
---|
| 474 | skipping over them to the next try statement.
|
---|
[4a36b344] | 475 |
|
---|
[6a8208cb] | 476 | \begin{center}
|
---|
| 477 | \input{stack-marking}
|
---|
| 478 | \end{center}
|
---|
[de47a9d] | 479 |
|
---|
[f6106a6] | 480 | These rules mirror what happens with termination.
|
---|
[4ed7946e] | 481 | When a termination throw happens in a handler, the search does not look at
|
---|
[f6106a6] | 482 | any handlers from the original throw to the original catch because that
|
---|
[4ed7946e] | 483 | part of the stack is unwound.
|
---|
[f6106a6] | 484 | A resumption raise in the same situation wants to search the entire stack,
|
---|
[4ed7946e] | 485 | but with marking, the search does match exceptions for try statements at equivalent sections
|
---|
| 486 | that would have been unwound by termination.
|
---|
[4706098c] | 487 |
|
---|
[4ed7946e] | 488 | The symmetry between resumption termination is why this pattern is picked.
|
---|
| 489 | Other patterns, such as marking just the handlers that caught the exception, also work but
|
---|
| 490 | lack the symmetry, meaning there are more rules to remember.
|
---|
[4706098c] | 491 |
|
---|
| 492 | \section{Conditional Catch}
|
---|
[4ed7946e] | 493 |
|
---|
[de47a9d] | 494 | Both termination and resumption handler clauses can be given an additional
|
---|
| 495 | condition to further control which exceptions they handle:
|
---|
[4706098c] | 496 | \begin{cfa}
|
---|
[f6106a6] | 497 | catch (EXCEPTION_TYPE * [NAME] ; CONDITION)
|
---|
[4706098c] | 498 | \end{cfa}
|
---|
| 499 | First, the same semantics is used to match the exception type. Second, if the
|
---|
| 500 | exception matches, @CONDITION@ is executed. The condition expression may
|
---|
[de47a9d] | 501 | reference all names in scope at the beginning of the try block and @NAME@
|
---|
[1c1c180] | 502 | introduced in the handler clause. If the condition is true, then the handler
|
---|
[1830a86] | 503 | matches. Otherwise, the exception search continues as if the exception type
|
---|
| 504 | did not match.
|
---|
[f6106a6] | 505 |
|
---|
[4ed7946e] | 506 | The condition matching allows finer matching to check
|
---|
[f6106a6] | 507 | more kinds of information than just the exception type.
|
---|
[4706098c] | 508 | \begin{cfa}
|
---|
| 509 | try {
|
---|
[f6106a6] | 510 | handle1 = open( f1, ... );
|
---|
| 511 | handle2 = open( f2, ... );
|
---|
| 512 | handle3 = open( f3, ... );
|
---|
[4706098c] | 513 | ...
|
---|
[de47a9d] | 514 | } catch( IOFailure * f ; fd( f ) == f1 ) {
|
---|
[f6106a6] | 515 | // Only handle IO failure for f1.
|
---|
| 516 | } catch( IOFailure * f ; fd( f ) == f3 ) {
|
---|
| 517 | // Only handle IO failure for f3.
|
---|
[4706098c] | 518 | }
|
---|
[f6106a6] | 519 | // Can't handle a failure relating to f2 here.
|
---|
[4706098c] | 520 | \end{cfa}
|
---|
[4ed7946e] | 521 | In this example, the file that experianced the IO error is used to decide
|
---|
[f6106a6] | 522 | which handler should be run, if any at all.
|
---|
| 523 |
|
---|
| 524 | \begin{comment}
|
---|
| 525 | % I know I actually haven't got rid of them yet, but I'm going to try
|
---|
| 526 | % to write it as if I had and see if that makes sense:
|
---|
| 527 | \section{Reraising}
|
---|
| 528 | \label{s:Reraising}
|
---|
[4706098c] | 529 | Within the handler block or functions called from the handler block, it is
|
---|
| 530 | possible to reraise the most recently caught exception with @throw@ or
|
---|
[1830a86] | 531 | @throwResume@, respectively.
|
---|
[4706098c] | 532 | \begin{cfa}
|
---|
[29c9b23] | 533 | try {
|
---|
| 534 | ...
|
---|
| 535 | } catch( ... ) {
|
---|
[1830a86] | 536 | ... throw;
|
---|
[4706098c] | 537 | } catchResume( ... ) {
|
---|
[1830a86] | 538 | ... throwResume;
|
---|
[4706098c] | 539 | }
|
---|
| 540 | \end{cfa}
|
---|
| 541 | The only difference between a raise and a reraise is that reraise does not
|
---|
| 542 | create a new exception; instead it continues using the current exception, \ie
|
---|
| 543 | no allocation and copy. However the default handler is still set to the one
|
---|
| 544 | visible at the raise point, and hence, for termination could refer to data that
|
---|
| 545 | is part of an unwound stack frame. To prevent this problem, a new default
|
---|
| 546 | handler is generated that does a program-level abort.
|
---|
[f6106a6] | 547 | \end{comment}
|
---|
| 548 |
|
---|
| 549 | \subsection{Comparison with Reraising}
|
---|
[4ed7946e] | 550 |
|
---|
[f6106a6] | 551 | A more popular way to allow handlers to match in more detail is to reraise
|
---|
[4ed7946e] | 552 | the exception after it has been caught, if it could not be handled here.
|
---|
[f6106a6] | 553 | On the surface these two features seem interchangable.
|
---|
| 554 |
|
---|
[4ed7946e] | 555 | If @throw@ is used to start a termination reraise then these two statements
|
---|
| 556 | have the same behaviour:
|
---|
[f6106a6] | 557 | \begin{cfa}
|
---|
| 558 | try {
|
---|
| 559 | do_work_may_throw();
|
---|
| 560 | } catch(exception_t * exc ; can_handle(exc)) {
|
---|
| 561 | handle(exc);
|
---|
| 562 | }
|
---|
| 563 | \end{cfa}
|
---|
| 564 |
|
---|
| 565 | \begin{cfa}
|
---|
| 566 | try {
|
---|
| 567 | do_work_may_throw();
|
---|
| 568 | } catch(exception_t * exc) {
|
---|
| 569 | if (can_handle(exc)) {
|
---|
| 570 | handle(exc);
|
---|
| 571 | } else {
|
---|
| 572 | throw;
|
---|
| 573 | }
|
---|
| 574 | }
|
---|
| 575 | \end{cfa}
|
---|
[4ed7946e] | 576 | However, if there are further handlers after this handler only the first is
|
---|
| 577 | check. For multiple handlers on a single try block that could handle the
|
---|
| 578 | same exception, the equivalent translations to conditional catch becomes more complex, resulting is multiple nested try blocks for all possible reraises.
|
---|
| 579 | So while catch-with-reraise is logically equivilant to conditional catch, there is a lexical explosion for the former.
|
---|
| 580 |
|
---|
| 581 | \PAB{I think the following discussion makes an incorrect assumption.
|
---|
| 582 | A conditional catch CAN happen with the stack unwound.
|
---|
| 583 | Roy talked about this issue in Section 2.3.3 here: \newline
|
---|
| 584 | \url{http://plg.uwaterloo.ca/theses/KrischerThesis.pdf}}
|
---|
[f6106a6] | 585 |
|
---|
[4ed7946e] | 586 | Specifically for termination handling, a
|
---|
[f6106a6] | 587 | conditional catch happens before the stack is unwound, but a reraise happens
|
---|
| 588 | afterwards. Normally this might only cause you to loose some debug
|
---|
| 589 | information you could get from a stack trace (and that can be side stepped
|
---|
| 590 | entirely by collecting information during the unwind). But for \CFA there is
|
---|
[4ed7946e] | 591 | another issue, if the exception is not handled the default handler should be
|
---|
[f6106a6] | 592 | run at the site of the original raise.
|
---|
| 593 |
|
---|
[4ed7946e] | 594 | There are two problems with this: the site of the original raise does not
|
---|
| 595 | exist anymore and the default handler might not exist anymore. The site is
|
---|
| 596 | always removed as part of the unwinding, often with the entirety of the
|
---|
[f6106a6] | 597 | function it was in. The default handler could be a stack allocated nested
|
---|
| 598 | function removed during the unwind.
|
---|
| 599 |
|
---|
| 600 | This means actually trying to pretend the catch didn't happening, continuing
|
---|
| 601 | the original raise instead of starting a new one, is infeasible.
|
---|
| 602 | That is the expected behaviour for most languages and we can't replicate
|
---|
| 603 | that behaviour.
|
---|
[4a36b344] | 604 |
|
---|
| 605 | \section{Finally Clauses}
|
---|
[f6106a6] | 606 | \label{s:FinallyClauses}
|
---|
[4ed7946e] | 607 |
|
---|
[de47a9d] | 608 | Finally clauses are used to preform unconditional clean-up when leaving a
|
---|
[f6106a6] | 609 | scope and are placed at the end of a try statement after any handler clauses:
|
---|
[4706098c] | 610 | \begin{cfa}
|
---|
[4a36b344] | 611 | try {
|
---|
[4706098c] | 612 | GUARDED_BLOCK
|
---|
[29c9b23] | 613 | } ... // any number or kind of handler clauses
|
---|
| 614 | ... finally {
|
---|
[4706098c] | 615 | FINALLY_BLOCK
|
---|
[4a36b344] | 616 | }
|
---|
[4706098c] | 617 | \end{cfa}
|
---|
[29c9b23] | 618 | The @FINALLY_BLOCK@ is executed when the try statement is removed from the
|
---|
[1830a86] | 619 | stack, including when the @GUARDED_BLOCK@ finishes, any termination handler
|
---|
[4ed7946e] | 620 | finishes, or during an unwind.
|
---|
[29c9b23] | 621 | The only time the block is not executed is if the program is exited before
|
---|
[1830a86] | 622 | the stack is unwound.
|
---|
[4706098c] | 623 |
|
---|
| 624 | Execution of the finally block should always finish, meaning control runs off
|
---|
[f6106a6] | 625 | the end of the block. This requirement ensures control always continues as if
|
---|
| 626 | the finally clause is not present, \ie finally is for cleanup not changing
|
---|
| 627 | control flow.
|
---|
| 628 | Because of this requirement, local control flow out of the finally block
|
---|
[1c1c180] | 629 | is forbidden. The compiler precludes any @break@, @continue@, @fallthru@ or
|
---|
[4706098c] | 630 | @return@ that causes control to leave the finally block. Other ways to leave
|
---|
| 631 | the finally block, such as a long jump or termination are much harder to check,
|
---|
[f6106a6] | 632 | and at best requiring additional run-time overhead, and so are only
|
---|
[1830a86] | 633 | discouraged.
|
---|
| 634 |
|
---|
[f6106a6] | 635 | Not all languages with unwinding have finally clauses. Notably \Cpp does
|
---|
[4ed7946e] | 636 | without it as destructors with RAII serve a similar role. Although destructors and
|
---|
| 637 | finally clauses have overlapping usage cases, they have their own
|
---|
| 638 | specializations, like top-level functions and lambda functions with closures.
|
---|
| 639 | Destructors take more work if a number of unrelated, local variables without destructors or dynamically allocated variables must be passed for de-intialization.
|
---|
| 640 | Maintaining this destructor during local-block modification is a source of errors.
|
---|
| 641 | A finally clause places local de-intialization inline with direct access to all local variables.
|
---|
[4a36b344] | 642 |
|
---|
| 643 | \section{Cancellation}
|
---|
[f6106a6] | 644 | \label{s:Cancellation}
|
---|
[de47a9d] | 645 | Cancellation is a stack-level abort, which can be thought of as as an
|
---|
[f6106a6] | 646 | uncatchable termination. It unwinds the entire current stack, and if
|
---|
[de47a9d] | 647 | possible forwards the cancellation exception to a different stack.
|
---|
[4706098c] | 648 |
|
---|
[29c9b23] | 649 | Cancellation is not an exception operation like termination or resumption.
|
---|
[4706098c] | 650 | There is no special statement for starting a cancellation; instead the standard
|
---|
[1c1c180] | 651 | library function @cancel_stack@ is called passing an exception. Unlike a
|
---|
[f6106a6] | 652 | raise, this exception is not used in matching only to pass information about
|
---|
[4706098c] | 653 | the cause of the cancellation.
|
---|
[4ed7946e] | 654 | (This restriction also means matching cannot fail so there is no default handler.)
|
---|
[4706098c] | 655 |
|
---|
[f6106a6] | 656 | After @cancel_stack@ is called the exception is copied into the EHM's memory
|
---|
| 657 | and the current stack is
|
---|
[4ed7946e] | 658 | unwound.
|
---|
| 659 | The result of a cancellation depends on the kind of stack that is being unwound.
|
---|
[a6c45c6] | 660 |
|
---|
| 661 | \paragraph{Main Stack}
|
---|
[4706098c] | 662 | The main stack is the one used by the program main at the start of execution,
|
---|
[f6106a6] | 663 | and is the only stack in a sequential program.
|
---|
| 664 | After the main stack is unwound there is a program-level abort.
|
---|
| 665 |
|
---|
[4ed7946e] | 666 | There are two reasons for this semantics. The first is that it obviously had to do the abort
|
---|
[f6106a6] | 667 | in a sequential program as there is nothing else to notify and the simplicity
|
---|
| 668 | of keeping the same behaviour in sequential and concurrent programs is good.
|
---|
[4ed7946e] | 669 | \PAB{I do not understand this sentence. $\Rightarrow$ Also, even in concurrent programs, there is no stack that an innate connection
|
---|
| 670 | to, so it would have be explicitly managed.}
|
---|
[4706098c] | 671 |
|
---|
[a6c45c6] | 672 | \paragraph{Thread Stack}
|
---|
[f6106a6] | 673 | A thread stack is created for a \CFA @thread@ object or object that satisfies
|
---|
| 674 | the @is_thread@ trait.
|
---|
[4ed7946e] | 675 | After a thread stack is unwound, the exception is stored until another
|
---|
[f6106a6] | 676 | thread attempts to join with it. Then the exception @ThreadCancelled@,
|
---|
| 677 | which stores a reference to the thread and to the exception passed to the
|
---|
[4ed7946e] | 678 | cancellation, is reported from the join to the joining thread.
|
---|
[f6106a6] | 679 | There is one difference between an explicit join (with the @join@ function)
|
---|
| 680 | and an implicit join (from a destructor call). The explicit join takes the
|
---|
| 681 | default handler (@defaultResumptionHandler@) from its calling context while
|
---|
[4ed7946e] | 682 | the implicit join provides its own, which does a program abort if the
|
---|
[f6106a6] | 683 | @ThreadCancelled@ exception cannot be handled.
|
---|
| 684 |
|
---|
[4ed7946e] | 685 | \PAB{Communication can occur during the lifetime of a thread using shared variable and \lstinline{waitfor} statements.
|
---|
| 686 | Are you sure you mean communication here? Maybe you mean synchronization (rendezvous) point. $\Rightarrow$ Communication is done at join because a thread only has two points of
|
---|
| 687 | communication with other threads: start and join.}
|
---|
[f6106a6] | 688 | Since a thread must be running to perform a cancellation (and cannot be
|
---|
| 689 | cancelled from another stack), the cancellation must be after start and
|
---|
[4ed7946e] | 690 | before the join, so join is use.
|
---|
[f6106a6] | 691 |
|
---|
| 692 | % TODO: Find somewhere to discuss unwind collisions.
|
---|
| 693 | The difference between the explicit and implicit join is for safety and
|
---|
| 694 | debugging. It helps prevent unwinding collisions by avoiding throwing from
|
---|
| 695 | a destructor and prevents cascading the error across multiple threads if
|
---|
| 696 | the user is not equipped to deal with it.
|
---|
| 697 | Also you can always add an explicit join if that is the desired behaviour.
|
---|
| 698 |
|
---|
[a6c45c6] | 699 | \paragraph{Coroutine Stack}
|
---|
[f6106a6] | 700 | A coroutine stack is created for a @coroutine@ object or object that
|
---|
| 701 | satisfies the @is_coroutine@ trait.
|
---|
[4ed7946e] | 702 | After a coroutine stack is unwound, control returns to the @resume@ function
|
---|
| 703 | that most recently resumed it. The resume reports a
|
---|
| 704 | @CoroutineCancelled@ exception, which contains references to the cancelled
|
---|
[f6106a6] | 705 | coroutine and the exception used to cancel it.
|
---|
[4ed7946e] | 706 | The @resume@ function also takes the \defaultResumptionHandler{} from the
|
---|
| 707 | caller's context and passes it to the internal cancellation.
|
---|
[f6106a6] | 708 |
|
---|
| 709 | A coroutine knows of two other coroutines, its starter and its last resumer.
|
---|
[4ed7946e] | 710 | The starter has a much more distant connection, while the last resumer just
|
---|
[f6106a6] | 711 | (in terms of coroutine state) called resume on this coroutine, so the message
|
---|
| 712 | is passed to the latter.
|
---|