-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This gets rid of the inclusion of <future> in util.hh, cutting compilation time by ~20s (CPU time). Issue #4045.
- Loading branch information
Showing
12 changed files
with
57 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#include "store-api.hh" | ||
#include "callback.hh" | ||
|
||
namespace nix { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#pragma once | ||
|
||
#include <future> | ||
#include <functional> | ||
|
||
namespace nix { | ||
|
||
/* A callback is a wrapper around a lambda that accepts a valid of | ||
type T or an exception. (We abuse std::future<T> to pass the value or | ||
exception.) */ | ||
template<typename T> | ||
class Callback | ||
{ | ||
std::function<void(std::future<T>)> fun; | ||
std::atomic_flag done = ATOMIC_FLAG_INIT; | ||
|
||
public: | ||
|
||
Callback(std::function<void(std::future<T>)> fun) : fun(fun) { } | ||
|
||
Callback(Callback && callback) : fun(std::move(callback.fun)) | ||
{ | ||
auto prev = callback.done.test_and_set(); | ||
if (prev) done.test_and_set(); | ||
} | ||
|
||
void operator()(T && t) noexcept | ||
{ | ||
auto prev = done.test_and_set(); | ||
assert(!prev); | ||
std::promise<T> promise; | ||
promise.set_value(std::move(t)); | ||
fun(promise.get_future()); | ||
} | ||
|
||
void rethrow(const std::exception_ptr & exc = std::current_exception()) noexcept | ||
{ | ||
auto prev = done.test_and_set(); | ||
assert(!prev); | ||
std::promise<T> promise; | ||
promise.set_exception(exc); | ||
fun(promise.get_future()); | ||
} | ||
}; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters