diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-06-19 12:42:21 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-06-26 17:57:29 +0200 |
commit | 5e3cc5a7a38e93159a81b940b19ced879a2d280c (patch) | |
tree | 7c2d51f424961f14ee7de758c68b2d59a5947930 /src/buildtool/execution_api/remote/bazel/bazel_response.hpp | |
parent | 3865c8556bde5e614dc1e8c72f83fa1ed65abcd9 (diff) | |
download | justbuild-5e3cc5a7a38e93159a81b940b19ced879a2d280c.tar.gz |
Execution response: Add output symlink paths
Diffstat (limited to 'src/buildtool/execution_api/remote/bazel/bazel_response.hpp')
-rw-r--r-- | src/buildtool/execution_api/remote/bazel/bazel_response.hpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/remote/bazel/bazel_response.hpp b/src/buildtool/execution_api/remote/bazel/bazel_response.hpp index 048c6291..358c98c8 100644 --- a/src/buildtool/execution_api/remote/bazel/bazel_response.hpp +++ b/src/buildtool/execution_api/remote/bazel/bazel_response.hpp @@ -56,12 +56,18 @@ class BazelResponse final : public IExecutionResponse { return action_id_; } - auto Artifacts() const noexcept -> ArtifactInfos final; + auto Artifacts() noexcept -> ArtifactInfos final; + + auto ArtifactsWithDirSymlinks() noexcept + -> std::pair<ArtifactInfos, DirSymlinks> final; private: std::string action_id_{}; std::shared_ptr<BazelNetwork> const network_{}; BazelExecutionClient::ExecutionOutput output_{}; + ArtifactInfos artifacts_{}; + DirSymlinks dir_symlinks_{}; + bool populated_{false}; BazelResponse(std::string action_id, std::shared_ptr<BazelNetwork> network, @@ -78,6 +84,8 @@ class BazelResponse final : public IExecutionResponse { return id.size_bytes() != 0; } + [[nodiscard]] auto Populate() noexcept -> bool; + [[nodiscard]] auto UploadTreeMessageDirectories( bazel_re::Tree const& tree) const -> std::optional<ArtifactDigest>; }; |