diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-11-07 11:41:12 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-11-14 14:23:05 +0100 |
commit | e24b0a8cbebee4e5dc9fa3c071753acbeb1bdde0 (patch) | |
tree | b6159c1d644a4141fec0935e17c44b84d6e961f8 /src/buildtool/execution_api/execution_service/bytestream_server.cpp | |
parent | 300adf3d40cf9e87b277e6922b571c3938d41655 (diff) | |
download | justbuild-e24b0a8cbebee4e5dc9fa3c071753acbeb1bdde0.tar.gz |
execution_api/execution_service: Implement IWYU suggestions
Diffstat (limited to 'src/buildtool/execution_api/execution_service/bytestream_server.cpp')
-rw-r--r-- | src/buildtool/execution_api/execution_service/bytestream_server.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/buildtool/execution_api/execution_service/bytestream_server.cpp b/src/buildtool/execution_api/execution_service/bytestream_server.cpp index 642347cc..802878a4 100644 --- a/src/buildtool/execution_api/execution_service/bytestream_server.cpp +++ b/src/buildtool/execution_api/execution_service/bytestream_server.cpp @@ -12,22 +12,26 @@ // See the License for the specific language governing permissions and // limitations under the License. -#include "bytestream_server.hpp" +#include "src/buildtool/execution_api/execution_service/bytestream_server.hpp" #include <cstddef> +#include <filesystem> #include <fstream> -#include <sstream> -#include <utility> +#include <memory> +#include <optional> +#include <string> #include "fmt/core.h" +#include "google/protobuf/stubs/port.h" #include "src/buildtool/common/artifact_digest.hpp" #include "src/buildtool/common/artifact_digest_factory.hpp" #include "src/buildtool/common/bazel_types.hpp" +#include "src/buildtool/crypto/hash_function.hpp" #include "src/buildtool/execution_api/common/bytestream_utils.hpp" #include "src/buildtool/execution_api/execution_service/cas_utils.hpp" -#include "src/buildtool/file_system/file_system_manager.hpp" #include "src/buildtool/logging/log_level.hpp" #include "src/buildtool/storage/garbage_collector.hpp" +#include "src/utils/cpp/expected.hpp" #include "src/utils/cpp/tmp_dir.hpp" auto BytestreamServiceImpl::Read( |