X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2Ffibers%2FAtomicBatchDispatcher.h;h=93f9c93b54baba4ceb3083b6b9328ab5a344f2a0;hb=d7ea6b714258b732407cef68072f55ee4d24f00c;hp=ebe52fac3b018d8b66de204e90599198bc44fe56;hpb=ed8c80a0e0988e4ce687f51ca832a00e4a6b7930;p=folly.git diff --git a/folly/fibers/AtomicBatchDispatcher.h b/folly/fibers/AtomicBatchDispatcher.h index ebe52fac..93f9c93b 100644 --- a/folly/fibers/AtomicBatchDispatcher.h +++ b/folly/fibers/AtomicBatchDispatcher.h @@ -17,15 +17,50 @@ #include #include +#include #include #include #include +#include +#include #include #include namespace folly { namespace fibers { +/** + * An exception class that gets thrown when the AtomicBatchDispatcher is used + * incorrectly. This is indicative of a bug in the user code. + * Examples are, multiple dispatch calls on the same token, trying to get more + * tokens from the dispatcher after commit has been called, etc. + */ +class ABDUsageException : public std::logic_error { + using std::logic_error::logic_error; +}; + +/** + * An exception class that gets set on the promise for dispatched tokens, when + * the AtomicBatchDispatcher was destroyed before commit was called on it. + */ +class ABDCommitNotCalledException : public std::runtime_error { + public: + ABDCommitNotCalledException() + : std::runtime_error( + "AtomicBatchDispatcher destroyed before commit() was called") {} +}; + +/** + * An exception class that gets set on the promise for dispatched tokens, when + * one or more other tokens in the batch were destroyed before dispatch was + * called on them. + * Only here so that the caller can distinguish the real failure cause + * rather than these subsequently thrown exceptions. + */ +class ABDTokenNotDispatchedException : public std::runtime_error { + using std::runtime_error::runtime_error; +}; + /** * AtomicBatchDispatcher should be used if you want to process fiber tasks in * parallel, but require to synchronize them at some point. The canonical @@ -72,21 +107,21 @@ namespace fibers { * 1) The dispatcher is destroyed before calling commit on it, for example * because the user forgot to call commit OR an exception was thrown * in user code before the call to commit: - * - The future ResultT has an exception of type std::logic_error set for all - * tokens that were issued by the dispatcher (once all tokens are either - * destroyed or have called dispatch) + * - The future ResultT has an exception of type ABDCommitNotCalledException + * set for all tokens that were issued by the dispatcher (once all tokens + * are either destroyed or have called dispatch) * 2) Calling the dispatch function more than once on the same Token object * (or a moved version of the same Token): * - Subsequent calls to dispatch (after the first one) will throw an - * std::logic_error exception (the batch itself will not have any errors + * ABDUsageException exception (the batch itself will not have any errors * and will get processed) * 3) One/more of the Tokens issued are destroyed before calling dispatch on * it/them: - * - The future ResultT has an exception of type std::logic_error set for all + * - The future ResultT has an ABDTokenNotDispatchedException set for all * tokens that were issued by the dispatcher (once all tokens are either * destroyed or have called dispatch) * 4) dispatcher.getToken() is called after calling dispatcher.commit() - * - the call to getToken() will throw an std::logic_error exception + * - the call to getToken() will throw an ABDUsageException exception * (the batch itself will not have any errors and will get processed). * 5) All tokens were issued and called dispatch, the user provided batch * dispatch function is called, but that function throws any exception.