Skip to content

Commit bc092d5

Browse files
authored
Some minor fixes (#537)
* Minor bug fixes around operations that require mutability. * Replacing an incorrect identity function with std::identity{} * Removed unnecessary moves.
1 parent c59cfac commit bc092d5

File tree

5 files changed

+33
-44
lines changed

5 files changed

+33
-44
lines changed

README.md

+4-11
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ Release changelogs are listed in [CHANGES.md](CHANGES.md).
2626

2727
## Requirements
2828

29-
- A standards-compliant C++14, C++17, or C++20 compiler
30-
- **Use with a compiler in C++14-compliant mode** requires Boost.Optional and Boost.Variant >= 1.74.0
29+
- A standards-compliant C++17, C++20, or C++23 compiler
3130
- **Building** the library requires CMake 3.23 or later
3231
- **Testing or developing** the library requires Boost.Test >= 1.74.0
3332

@@ -41,16 +40,10 @@ for an introduction to this tool.
4140
1. Create a build directory outside this library's source tree. In this guide, we'll use a sibling
4241
directory called `BUILD`.
4342

44-
2. If you are using the library in C++14-compliant mode or need to run the test suite, be sure you
45-
have the necessary parts of Boost >= 1.74.0 installed. Linux distributions usually make a
46-
suitable version available through standard package managers. On macOS or Linux, you can easilly
47-
install Boost using [Homebrew](https://brew.sh/). To install Boost on Windows, you can use
48-
Boost's [binary installers](https://sourceforge.net/projects/boost/files/boost-binaries/).
49-
50-
3. Install a version of CMake >= 3.23. If you are on Debian or Ubuntu Linux you may need to use
43+
1. Install a version of CMake >= 3.23. If you are on Debian or Ubuntu Linux you may need to use
5144
`snap` to find one that's new enough.
5245

53-
4. If you are using MSVC, you may need to set environment variables appropriately for your target
46+
1. If you are using MSVC, you may need to set environment variables appropriately for your target
5447
architecture by invoking `VCVARSALL.BAT` with an appropriate option.
5548

5649
### Configure
@@ -65,7 +58,7 @@ cmake -S . -B ../BUILD -DCMAKE_BUILD_TYPE=# SEE BELOW
6558
but there are other options you may need to append in order to be successful. Among them:
6659

6760
* `-DCMAKE_BUILD_TYPE=`[`Release`|`Debug`] to build the given configuration (required unless you're using visual studio or another multi-config generator).
68-
* `-DCMAKE_CXX_STANDARD=`[`14`|`17`|`20`|`23`] to build with compliance to the given C++ standard.
61+
* `-DCMAKE_CXX_STANDARD=`[`17`|`20`|`23`] to build with compliance to the given C++ standard.
6962
* `-DBUILD_TESTING=OFF` if you only intend to build, but not test, this library.
7063
* `-DBoost_USE_STATIC_LIBS=TRUE` if you will be testing on Windows.
7164

stlab/concurrency/await.hpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,10 @@ T await(future<T> x) {
9999
std::condition_variable condition;
100100
bool flag{false};
101101

102+
future<T> result;
103+
102104
auto hold = std::move(x).recover(immediate_executor, [&](future<T>&& r) {
103-
x = std::move(r);
105+
result = std::move(r);
104106
{
105107
std::unique_lock<std::mutex> lock{m};
106108
flag = true;
@@ -136,7 +138,7 @@ T await(future<T> x) {
136138

137139
#endif
138140

139-
return detail::_get_ready_future<T>{}(std::move(x));
141+
return detail::_get_ready_future<T>{}(std::move(result));
140142
}
141143

142144
namespace detail {

stlab/concurrency/default_executor.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ constexpr auto platform_priority(executor_priority p) {
6464
case executor_priority::low:
6565
return DISPATCH_QUEUE_PRIORITY_LOW;
6666
default:
67-
assert(!"Unknown value!");
67+
assert(false && "Unknown value!");
6868
}
6969
return DISPATCH_QUEUE_PRIORITY_DEFAULT;
7070
}

stlab/concurrency/future.hpp

100755100644
+23-29
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include <atomic>
1616
#include <cassert>
1717
#include <exception>
18+
#include <functional>
1819
#include <initializer_list>
1920
#include <memory>
2021
#include <mutex>
@@ -567,34 +568,28 @@ class packaged_task {
567568
packaged_task() = default;
568569

569570
~packaged_task() {
570-
auto p = _p.lock();
571-
if (p) p->remove_promise();
571+
if (auto p = _p.lock()) p->remove_promise();
572572
}
573573

574574
packaged_task(const packaged_task& x) : _p(x._p) {
575-
auto p = _p.lock();
576-
if (p) p->add_promise();
575+
if (auto p = _p.lock()) p->add_promise();
577576
}
578577

579578
packaged_task(packaged_task&&) noexcept = default;
580-
packaged_task& operator=(const packaged_task& x) {
581-
auto tmp = x;
582-
*this = std::move(tmp);
583-
return *this;
584-
}
579+
580+
packaged_task& operator=(const packaged_task& x) { return *this = packaged_task{x}; }
581+
585582
packaged_task& operator=(packaged_task&& x) noexcept = default;
586583

587584
template <typename... A>
588585
void operator()(A&&... args) const noexcept {
589-
auto p = _p.lock();
590-
if (p) (*p)(std::forward<A>(args)...);
586+
if (auto p = _p.lock()) (*p)(std::forward<A>(args)...);
591587
}
592588

593589
bool canceled() const { return _p.expired(); }
594590

595591
void set_exception(std::exception_ptr error) const {
596-
auto p = _p.lock();
597-
if (p) p->set_error(std::move(error));
592+
if (auto p = _p.lock()) p->set_error(std::move(error));
598593
}
599594
};
600595

@@ -636,7 +631,7 @@ class STLAB_NODISCARD() future<T, enable_if_copyable<T>> {
636631

637632
template <typename F>
638633
auto then(F&& f) const& {
639-
return recover([_f = std::forward<F>(f)](future<result_type>&& p) {
634+
return recover([_f = std::forward<F>(f)](future<result_type>&& p) mutable {
640635
return std::move(_f)(*std::move(p).get_try());
641636
});
642637
}
@@ -649,7 +644,7 @@ class STLAB_NODISCARD() future<T, enable_if_copyable<T>> {
649644
template <typename E, typename F>
650645
auto then(E&& executor, F&& f) const& {
651646
return recover(std::forward<E>(executor),
652-
[_f = std::forward<F>(f)](future<result_type>&& p) {
647+
[_f = std::forward<F>(f)](future<result_type>&& p) mutable {
653648
return std::move(_f)(*std::move(p).get_try());
654649
});
655650
}
@@ -781,7 +776,7 @@ class STLAB_NODISCARD() future<void, void> {
781776

782777
template <typename F>
783778
auto then(F&& f) const& {
784-
return recover([_f = std::forward<F>(f)](future<result_type>&& p) {
779+
return recover([_f = std::forward<F>(f)](future<result_type>&& p) mutable {
785780
std::move(p).get_try();
786781
return std::move(_f)();
787782
});
@@ -795,7 +790,7 @@ class STLAB_NODISCARD() future<void, void> {
795790
template <typename E, typename F>
796791
auto then(E&& executor, F&& f) const& {
797792
return recover(std::forward<E>(executor),
798-
[_f = std::forward<F>(f)](future<result_type>&& p) {
793+
[_f = std::forward<F>(f)](future<result_type>&& p) mutable {
799794
(void)std::move(p).get_try();
800795
return std::move(_f)();
801796
});
@@ -1244,7 +1239,7 @@ struct make_when_any {
12441239
using result_t = detail::result_t<F, T, size_t>;
12451240

12461241
auto shared = std::make_shared<detail::when_any_shared<sizeof...(Ts) + 1, T>>();
1247-
auto p = package<result_t()>(executor, [_f = std::move(f), _p = shared] {
1242+
auto p = package<result_t()>(executor, [_f = std::move(f), _p = shared]() mutable {
12481243
return detail::apply_when_any_arg(_f, _p);
12491244
});
12501245
shared->_f = std::move(p.first);
@@ -1264,7 +1259,7 @@ struct make_when_any<void> {
12641259
using result_t = detail::result_t<F, size_t>;
12651260

12661261
auto shared = std::make_shared<detail::when_any_shared<sizeof...(Ts), void>>();
1267-
auto p = package<result_t()>(executor, [_f = std::forward<F>(f), _p = shared] {
1262+
auto p = package<result_t()>(executor, [_f = std::forward<F>(f), _p = shared]() mutable {
12681263
return detail::apply_when_any_arg(_f, _p);
12691264
});
12701265
shared->_f = std::move(p.first);
@@ -1566,7 +1561,7 @@ struct _reduce_coroutine : std::enable_shared_from_this<_reduce_coroutine<P, R>>
15661561
_this->_promise.set_exception(e);
15671562
return;
15681563
}
1569-
_this->stage_0(std::move(a));
1564+
_this->stage_0(std::forward<decltype(a)>(a));
15701565
});
15711566
}
15721567
void stage_0(future<future<R>>&& r) {
@@ -1672,12 +1667,13 @@ auto async(E executor, F&& f, Args&&... args)
16721667
using result_type = detail::result_t<std::decay_t<F>, std::decay_t<Args>...>;
16731668

16741669
auto p = package<result_type()>(
1675-
executor, std::bind<result_type>(
1676-
[_f = std::forward<F>(f)](
1677-
unwrap_reference_t<std::decay_t<Args>>&... args) mutable -> result_type {
1678-
return _f(move_if<!is_reference_wrapper_v<std::decay_t<Args>>>(args)...);
1679-
},
1680-
std::forward<Args>(args)...));
1670+
executor,
1671+
std::bind<result_type>(
1672+
[_f = std::forward<F>(f)](
1673+
unwrap_reference_t<std::decay_t<Args>>&... args) mutable -> result_type {
1674+
return std::move(_f)(move_if<!is_reference_wrapper_v<std::decay_t<Args>>>(args)...);
1675+
},
1676+
std::forward<Args>(args)...));
16811677

16821678
executor(std::move(p.first));
16831679

@@ -1813,9 +1809,7 @@ struct std::coroutine_traits<stlab::future<T>, Args...> {
18131809
std::pair<stlab::packaged_task<T>, stlab::future<T>> _promise;
18141810

18151811
promise_type() {
1816-
_promise = stlab::package<T(T)>(stlab::immediate_executor, [](auto&& x) -> decltype(x) {
1817-
return std::forward<decltype(x)>(x);
1818-
});
1812+
_promise = stlab::package<T(T)>(stlab::immediate_executor, std::identity{});
18191813
}
18201814

18211815
stlab::future<T> get_return_object() { return std::move(_promise.second); }

stlab/concurrency/system_timer.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ class system_timer {
224224
[[deprecated("Use chrono::duration as parameter instead")]] void operator()(
225225
std::chrono::steady_clock::time_point when, F&& f) {
226226
using namespace std::chrono;
227-
operator()(when - steady_clock::now(), std::move(f));
227+
operator()(when - steady_clock::now(), std::forward<decltype(f)>(f));
228228
}
229229

230230
template <typename F, typename Rep, typename Per = std::ratio<1>>

0 commit comments

Comments
 (0)