Asio Extensions
Additional functionality built on top of (Boost.)Asio
cancellation_token.hpp
1 /// @file
2 /// Declares the asioext::cancellation_token utility class.
3 ///
4 /// @copyright Copyright (c) 2016 Tim Niederhausen (tim@rnc-ag.de)
5 /// Distributed under the Boost Software License, Version 1.0.
6 /// (See accompanying file LICENSE_1_0.txt or copy at
7 /// http://www.boost.org/LICENSE_1_0.txt)
8 
9 #ifndef ASIOEXT_CANCELLATIONTOKEN_HPP
10 #define ASIOEXT_CANCELLATIONTOKEN_HPP
11 
12 #include "asioext/detail/config.hpp"
13 
14 #if ASIOEXT_HAS_PRAGMA_ONCE
15 # pragma once
16 #endif
17 
18 #include "asioext/detail/memory.hpp"
19 
20 ASIOEXT_NS_BEGIN
21 
22 /// @ingroup core
23 /// @brief Manager for cancellation_tokens.
24 ///
25 /// This class provides functionality to create and cancel cancellation_tokens.
27 {
28 friend class cancellation_token;
29 
30 public:
31  /// Construct a cancellation_token_source.
32  ASIOEXT_DECL cancellation_token_source();
33 
34 #if defined(ASIOEXT_HAS_MOVE)
35  /// @brief Move-construct a cancellation_token_source.
36  ///
37  /// This constructor moves the token source.
38  ///
39  /// @param other The other cancellation_token_source object from which
40  /// the move will occur.
41  ///
42  /// @note Following the move, the moved-from object is in the same state as if
43  /// destroy() had been called on it.
44  ASIOEXT_DECL cancellation_token_source(
45  cancellation_token_source&& other) ASIOEXT_NOEXCEPT;
46 
47  /// @brief Move-assign a cancellation_token_source.
48  ///
49  /// This assignment operator moves the token source.
50  ///
51  /// @param other The other cancellation_token_source object from which
52  /// the move will occur.
53  ///
54  /// @note Following the move, the moved-from object is in the same state as if
55  /// destroy() had been called on it.
56  ASIOEXT_DECL cancellation_token_source& operator=(
57  cancellation_token_source&& other) ASIOEXT_NOEXCEPT;
58 #endif
59 
60  /// @brief Cancel all currently issued cancellation_tokens.
61  ///
62  /// This function cancels all tokens that have been issued
63  /// until this call.
64  ///
65  /// Tokens issued after a call to cancel() are unaffected.
66  ASIOEXT_DECL void cancel();
67 
68  /// @brief Cancel all tokens, present and future.
69  ///
70  /// This function cancels all currently issued tokens,
71  /// as well as tokens issued after this call.
72  ///
73  /// All new tokens created from this source will start
74  /// in the cancelled state.
75  ///
76  /// @see reset()
77  ASIOEXT_DECL void destroy() ASIOEXT_NOEXCEPT;
78 
79  /// @brief Reset a destroyed token source.
80  ///
81  /// This function resets a destroyed token source,
82  /// so that it can be used to issue and cancel tokens again.
83  ///
84  /// After a call to this function, the object's state is as if
85  /// just constructed.
86  ///
87  /// @see destroy()
88  ASIOEXT_DECL void reset();
89 
90 private:
91 #if !defined(ASIOEXT_HAS_MOVE)
92  // Prevent copying
94  cancellation_token_source& operator=(
95  const cancellation_token_source&) ASIOEXT_DELETED;
96 #endif
97 
98  detail::shared_ptr<void> ptr_;
99 };
100 
101 /// @ingroup core
102 /// @brief Token to determine if an operation was cancelled.
103 ///
104 /// This class provides the ability to determine if an operation
105 /// was cancelled. cancellation_token objects can only be created
106 /// from a cancellation_token_source.
107 ///
108 /// A cancellation_token is not dependent on the lifetime of its
109 /// cancellation_token_source (i.e. the token can outlive the source).
111 {
112 public:
113  ASIOEXT_DECL cancellation_token(
114  const cancellation_token_source& source) ASIOEXT_NOEXCEPT;
115 
116  /// @brief Check whether this operation is cancelled.
117  ///
118  /// This function checks whether this token is cancelled (i.e.
119  /// whether cancel() has been called after this token was created).
120  ///
121  /// @return @c true if the operation was cancelled, @c false otherwise.
122  ASIOEXT_DECL bool cancelled() const ASIOEXT_NOEXCEPT;
123 
124 private:
125  detail::weak_ptr<void> ptr_;
126 };
127 
128 ASIOEXT_NS_END
129 
130 #if defined(ASIOEXT_HEADER_ONLY)
131 # include "asioext/impl/cancellation_token.cpp"
132 #endif
133 
134 #endif
Token to determine if an operation was cancelled.
Definition: cancellation_token.hpp:110
Manager for cancellation_tokens.
Definition: cancellation_token.hpp:26