diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2025-02-28 16:41:21 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2025-03-24 09:29:58 +0100 |
commit | 4fbbb6977d73af9958e38bb07e096dee773c9e61 (patch) | |
tree | 56bcdf6e7c37f0e19bbc484b495926796b5b7cb8 /src/buildtool/common/artifact_blob.cpp | |
parent | f192705cb4834252507d228e7d6e0a38095976e3 (diff) | |
download | justbuild-4fbbb6977d73af9958e38bb07e096dee773c9e61.tar.gz |
ArtifactBlob: Support construction from temporary files
Diffstat (limited to 'src/buildtool/common/artifact_blob.cpp')
-rw-r--r-- | src/buildtool/common/artifact_blob.cpp | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/buildtool/common/artifact_blob.cpp b/src/buildtool/common/artifact_blob.cpp index a9c70621..8c48d34e 100644 --- a/src/buildtool/common/artifact_blob.cpp +++ b/src/buildtool/common/artifact_blob.cpp @@ -91,12 +91,79 @@ auto ArtifactBlob::FromFile(HashFunction hash_function, } } +auto ArtifactBlob::FromTempFile(HashFunction hash_function, + ObjectType type, + TmpFile::Ptr file) noexcept + -> expected<ArtifactBlob, std::string> { + try { + if (file == nullptr) { + return unexpected<std::string>{ + "ArtifactBlob::CreateFromTempFile: missing temp file."}; + } + + auto digest = IsTreeObject(type) + ? ArtifactDigestFactory::HashFileAs<ObjectType::Tree>( + hash_function, file->GetPath()) + : ArtifactDigestFactory::HashFileAs<ObjectType::File>( + hash_function, file->GetPath()); + if (not digest.has_value()) { + return unexpected{fmt::format( + "ArtifactBlob::CreateFromTempFile: Failed to hash {}", + file->GetPath().string())}; + } + return ArtifactBlob{ + *std::move(digest), std::move(file), IsExecutableObject(type)}; + } catch (const std::exception& e) { + return unexpected{fmt::format( + "ArtifactBlob::FromTempFile: Got an exception:\n{}", e.what())}; + } catch (...) { + return unexpected<std::string>{ + "ArtifactBlob::FromTempFile: Got an unknown exception."}; + } +} + +auto ArtifactBlob::FromTempFile(HashFunction hash_type, + ObjectType type, + TmpDir::Ptr const& temp_space, + std::string const& content) noexcept + -> expected<ArtifactBlob, std::string> { + try { + if (temp_space == nullptr) { + return unexpected<std::string>{ + "ArtifactBlob::FromTempFile: missing temp space."}; + } + + auto file = TmpDir::CreateFile(temp_space); + if (file == nullptr) { + return unexpected<std::string>{ + "ArtifactBlob::FromTempFile: failed to create a new temp " + "file."}; + } + + if (not FileSystemManager::WriteFile(content, file->GetPath())) { + return unexpected<std::string>{ + "ArtifactBlob::FromTempFile: failed to write content to a " + "temp file."}; + } + return FromTempFile(hash_type, type, std::move(file)); + } catch (const std::exception& e) { + return unexpected{fmt::format( + "ArtifactBlob::FromTempFile: Got an exception:\n{}", e.what())}; + } catch (...) { + return unexpected<std::string>{ + "ArtifactBlob::FromTempFile: Got an unknown exception."}; + } +} + auto ArtifactBlob::ReadContent() const noexcept -> std::shared_ptr<std::string const> { using Result = std::shared_ptr<std::string const>; static constexpr InPlaceVisitor kVisitor{ [](InMemory const& value) -> Result { return value; }, [](InFile const& value) -> Result { return ::ReadFromFile(value); }, + [](InTempFile const& value) -> Result { + return ::ReadFromFile(value->GetPath()); + }, }; try { return std::visit(kVisitor, content_); @@ -119,6 +186,9 @@ auto ArtifactBlob::ReadIncrementally(std::size_t chunk_size) const& noexcept [chunk_size](InFile const& value) -> Result { return IncrementalReader::FromFile(chunk_size, value); }, + [chunk_size](InTempFile const& value) -> Result { + return IncrementalReader::FromFile(chunk_size, value->GetPath()); + }, }; try { return std::visit(visitor, content_); |