1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
// Copyright 2024 Huawei Cloud Computing Technology Co., Ltd.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "src/buildtool/main/add_to_cas.hpp"
#ifndef BOOTSTRAP_BUILD_TOOL
#include <filesystem>
#include <iostream>
#include <optional>
#include <string>
#include "src/buildtool/compatibility/native_support.hpp"
#include "src/buildtool/execution_api/bazel_msg/bazel_msg_factory.hpp"
#include "src/buildtool/execution_api/common/execution_api.hpp"
#include "src/buildtool/file_system/file_system_manager.hpp"
#include "src/buildtool/logging/log_level.hpp"
#include "src/buildtool/logging/logger.hpp"
#include "src/buildtool/storage/storage.hpp"
auto AddArtifactsToCas(ToAddArguments const& clargs, ApiBundle const& apis)
-> bool {
auto const& cas = Storage::Instance().CAS();
std::optional<bazel_re::Digest> digest{};
auto object_location = clargs.location;
if (clargs.follow_symlinks) {
if (not FileSystemManager::ResolveSymlinks(&object_location)) {
Logger::Log(LogLevel::Error,
"Failed resolving {}",
clargs.location.string());
return false;
}
}
auto object_type =
FileSystemManager::Type(object_location, /*allow_upwards=*/true);
if (not object_type) {
Logger::Log(LogLevel::Error,
"Non existent or unsupported file-system entry at {}",
object_location.string());
return false;
}
switch (*object_type) {
case ObjectType::File:
digest = cas.StoreBlob(object_location, /*is_executable=*/false);
break;
case ObjectType::Executable:
digest = cas.StoreBlob(object_location, /*is_executable=*/true);
break;
case ObjectType::Symlink: {
auto content = FileSystemManager::ReadSymlink(object_location);
if (not content) {
Logger::Log(LogLevel::Error,
"Failed to read symlink at {}",
object_location.string());
return false;
}
digest = cas.StoreBlob(*content, /*is_executable=*/false);
} break;
case ObjectType::Tree: {
if (Compatibility::IsCompatible()) {
Logger::Log(LogLevel::Error,
"Storing of trees only supported in native mode");
return false;
}
auto store_blob =
[&cas](std::filesystem::path const& path,
auto is_exec) -> std::optional<bazel_re::Digest> {
return cas.StoreBlob</*kOwner=*/true>(path, is_exec);
};
auto store_tree = [&cas](std::string const& content)
-> std::optional<bazel_re::Digest> {
return cas.StoreTree(content);
};
auto store_symlink = [&cas](std::string const& content)
-> std::optional<bazel_re::Digest> {
return cas.StoreBlob(content);
};
digest = BazelMsgFactory::CreateGitTreeDigestFromLocalTree(
clargs.location, store_blob, store_tree, store_symlink);
} break;
}
if (not digest) {
Logger::Log(LogLevel::Error,
"Failed to store {} in local CAS",
clargs.location.string());
return false;
}
std::cout << NativeSupport::Unprefix(digest->hash()) << std::endl;
auto object = std::vector<Artifact::ObjectInfo>{
Artifact::ObjectInfo{ArtifactDigest(*digest), *object_type, false}};
if (not apis.local->RetrieveToCas(object, *apis.remote)) {
Logger::Log(LogLevel::Error,
"Failed to upload artifact to remote endpoint");
return false;
}
return true;
}
#endif
|