diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-12-05 12:22:22 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-12-05 15:15:46 +0100 |
commit | d40eb82b519fb17819c8e8f0827f7338bed02bf7 (patch) | |
tree | c042e5f83f30f592ef751176620eeb2c79ef04eb /src/buildtool/execution_api/remote/bazel/bazel_api.cpp | |
parent | 74096dce2ee85ea5df940155fc2717d249e14d80 (diff) | |
download | justbuild-d40eb82b519fb17819c8e8f0827f7338bed02bf7.tar.gz |
execution api: support retrieving from more than one API, also for fd
Extend the api to optionally accept a different API for preferred
fetching. This is already supported when fetching to a file path;
therefore, extend to keep the interface symmetric.
Diffstat (limited to 'src/buildtool/execution_api/remote/bazel/bazel_api.cpp')
-rw-r--r-- | src/buildtool/execution_api/remote/bazel/bazel_api.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/remote/bazel/bazel_api.cpp b/src/buildtool/execution_api/remote/bazel/bazel_api.cpp index 6032ab44..0b05dd19 100644 --- a/src/buildtool/execution_api/remote/bazel/bazel_api.cpp +++ b/src/buildtool/execution_api/remote/bazel/bazel_api.cpp @@ -307,10 +307,12 @@ auto BazelApi::CreateAction( return true; } +// NOLINTNEXTLINE(google-default-arguments) [[nodiscard]] auto BazelApi::RetrieveToFds( std::vector<Artifact::ObjectInfo> const& artifacts_info, std::vector<int> const& fds, - bool raw_tree) const noexcept -> bool { + bool raw_tree, + IExecutionApi const* /*alternative*/) const noexcept -> bool { auto dumper = StreamDumper<BazelNetworkReader>{network_->CreateReader()}; return CommonRetrieveToFds( artifacts_info, |