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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
|
// Copyright 2023 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.
#ifndef BOOTSTRAP_BUILD_TOOL
#include "src/buildtool/serve_api/serve_service/target.hpp"
#include <exception>
#include <functional>
#include <optional>
#include <utility>
#include "fmt/core.h"
#include "google/protobuf/repeated_ptr_field.h"
#include "nlohmann/json.hpp"
#include "src/buildtool/build_engine/base_maps/entity_name.hpp"
#include "src/buildtool/build_engine/base_maps/entity_name_data.hpp"
#include "src/buildtool/build_engine/expression/configuration.hpp"
#include "src/buildtool/build_engine/expression/expression.hpp"
#include "src/buildtool/build_engine/expression/expression_ptr.hpp"
#include "src/buildtool/build_engine/expression/target_result.hpp"
#include "src/buildtool/build_engine/target_map/configured_target.hpp"
#include "src/buildtool/build_engine/target_map/result_map.hpp"
#include "src/buildtool/common/artifact.hpp"
#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/common/cli.hpp"
#include "src/buildtool/common/repository_config.hpp"
#include "src/buildtool/common/statistics.hpp"
#include "src/buildtool/crypto/hash_function.hpp"
#include "src/buildtool/execution_api/common/execution_api.hpp"
#include "src/buildtool/execution_engine/executor/context.hpp"
#include "src/buildtool/file_system/file_system_manager.hpp"
#include "src/buildtool/file_system/git_repo.hpp"
#include "src/buildtool/file_system/object_type.hpp"
#include "src/buildtool/graph_traverser/graph_traverser.hpp"
#include "src/buildtool/logging/log_level.hpp"
#include "src/buildtool/logging/log_sink_file.hpp"
#include "src/buildtool/main/analyse.hpp"
#include "src/buildtool/main/analyse_context.hpp"
#include "src/buildtool/main/build_utils.hpp"
#include "src/buildtool/multithreading/task_system.hpp"
#include "src/buildtool/progress_reporting/progress.hpp"
#include "src/buildtool/progress_reporting/progress_reporter.hpp"
#include "src/buildtool/serve_api/serve_service/target_utils.hpp"
#include "src/buildtool/storage/backend_description.hpp"
#include "src/buildtool/storage/config.hpp"
#include "src/buildtool/storage/garbage_collector.hpp"
#include "src/buildtool/storage/repository_garbage_collector.hpp"
#include "src/buildtool/storage/storage.hpp"
#include "src/buildtool/storage/target_cache.hpp"
#include "src/buildtool/storage/target_cache_entry.hpp"
#include "src/buildtool/storage/target_cache_key.hpp"
#include "src/utils/cpp/tmp_dir.hpp"
namespace {
// Store the artifact root given by the target-cache entry. Return std::nullopt
// on success and an error message on failure.
auto KeepRoot(TargetCacheEntry const& target_entry,
LocalContext const& local_context,
gsl::not_null<IExecutionApi::Ptr> const& api,
gsl::not_null<std::mutex*> const& tagging_lock)
-> std::optional<std::string> {
auto cache_result = target_entry.ToResult();
if (not cache_result) {
return "Failed to get analysis result for target cache entry.";
}
auto tmp_dir =
local_context.storage_config->CreateTypedTmpDir("keep-artifacts-stage");
if (not tmp_dir) {
return "Failed to create a temporary directory for keeping stage.";
}
std::vector<std::filesystem::path> paths{};
std::vector<Artifact::ObjectInfo> object_infos{};
for (auto const& [rel_path, artifact] :
cache_result->artifact_stage->Map()) {
paths.push_back(tmp_dir->GetPath() / rel_path);
object_infos.push_back(*artifact->Artifact().ToArtifact().Info());
}
if (not api->RetrieveToPaths(object_infos, paths)) {
return fmt::format("Failed installing {} to temp dir {}.",
cache_result->artifact_stage->ToString(),
tmp_dir->GetPath().string());
}
auto import_result = GitRepo::ImportToGit(*local_context.storage_config,
tmp_dir->GetPath(),
"Keep artifact stage",
tagging_lock);
if (not import_result) {
return import_result.error();
}
return std::nullopt; // No errors
}
} // namespace
auto TargetService::GetDispatchList(
ArtifactDigest const& dispatch_digest) noexcept
-> expected<std::vector<DispatchEndpoint>, ::grpc::Status> {
// get blob from remote cas
auto const& dispatch_info = Artifact::ObjectInfo{.digest = dispatch_digest,
.type = ObjectType::File};
if (not apis_.local->IsAvailable(dispatch_digest) and
not apis_.remote->RetrieveToCas({dispatch_info}, *apis_.local)) {
return unexpected{
::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION,
fmt::format("Could not retrieve blob {} from "
"remote-execution endpoint",
dispatch_info.ToString())}};
}
// get blob content
auto const& dispatch_str = apis_.local->RetrieveToMemory(dispatch_info);
if (not dispatch_str) {
// this should not fail unless something really broke...
return unexpected{::grpc::Status{
::grpc::StatusCode::INTERNAL,
fmt::format("Unexpected failure in reading blob {} from CAS",
dispatch_info.ToString())}};
}
// parse content
auto parsed = ParseDispatch(*dispatch_str);
if (not parsed) {
// pass the parsing error forward
return unexpected{
::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION,
std::move(parsed).error()}};
}
return *std::move(parsed);
}
auto TargetService::HandleFailureLog(
std::filesystem::path const& logfile,
std::string const& failure_scope,
::justbuild::just_serve::ServeTargetResponse* response) noexcept
-> ::grpc::Status {
logger_->Emit(LogLevel::Trace, [&logfile] {
if (auto s = FileSystemManager::ReadFile(logfile)) {
return *s;
}
return fmt::format("Failed to read failure log file {}",
logfile.string());
});
// ...but try to give the client the proper log
auto const& cas = local_context_.storage->CAS();
auto digest = cas.StoreBlob(logfile, /*is_executable=*/false);
if (not digest) {
auto msg = fmt::format("Failed to store log of failed {} to local CAS",
failure_scope);
logger_->Emit(LogLevel::Error, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, msg};
}
// upload log blob to remote
if (not apis_.local->RetrieveToCas(
{Artifact::ObjectInfo{.digest = *digest, .type = ObjectType::File}},
*apis_.remote)) {
auto msg =
fmt::format("Failed to upload to remote CAS the failed {} log {}",
failure_scope,
digest->hash());
logger_->Emit(LogLevel::Error, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::UNAVAILABLE, msg};
}
// set response with log digest
(*response->mutable_log()) = ArtifactDigestFactory::ToBazel(*digest);
return ::grpc::Status::OK;
}
auto TargetService::CreateRemoteExecutionConfig(
const ::justbuild::just_serve::ServeTargetRequest* request) noexcept
-> expected<RemoteExecutionConfig, ::grpc::Status> {
// read in the execution properties
auto platform_properties = ExecutionProperties{};
for (auto const& p : request->execution_properties()) {
platform_properties[p.name()] = p.value();
}
// read in the dispatch list
auto const dispatch_info_digest = ArtifactDigestFactory::FromBazel(
local_context_.storage_config->hash_function.GetType(),
request->dispatch_info());
if (not dispatch_info_digest) {
logger_->Emit(LogLevel::Error, "{}", dispatch_info_digest.error());
return unexpected{::grpc::Status{::grpc::StatusCode::INVALID_ARGUMENT,
dispatch_info_digest.error()}};
}
auto res = GetDispatchList(*dispatch_info_digest);
if (not res) {
auto err = std::move(res).error();
logger_->Emit(LogLevel::Info, "{}", err.error_message());
return unexpected{std::move(err)};
}
// the remote and cache addresses are kept from the stored ApiBundle
return RemoteExecutionConfig{
.remote_address = remote_context_.exec_config->remote_address,
.dispatch = *std::move(res),
.cache_address = remote_context_.exec_config->cache_address,
.platform_properties = std::move(platform_properties)};
}
auto TargetService::ServeTarget(
::grpc::ServerContext* /*context*/,
const ::justbuild::just_serve::ServeTargetRequest* request,
::justbuild::just_serve::ServeTargetResponse* response) -> ::grpc::Status {
// check target cache key hash for validity
auto const target_cache_key_digest = ArtifactDigestFactory::FromBazel(
local_context_.storage_config->hash_function.GetType(),
request->target_cache_key_id());
if (not target_cache_key_digest) {
logger_->Emit(LogLevel::Error, "{}", target_cache_key_digest.error());
return ::grpc::Status{::grpc::StatusCode::INVALID_ARGUMENT,
target_cache_key_digest.error()};
}
logger_->Emit(
LogLevel::Debug, "ServeTarget({})", target_cache_key_digest->hash());
// acquire locks
auto repo_lock =
RepositoryGarbageCollector::SharedLock(*local_context_.storage_config);
if (not repo_lock) {
auto msg = std::string("Could not acquire repo gc SharedLock");
logger_->Emit(LogLevel::Error, msg);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, msg};
}
auto lock = GarbageCollector::SharedLock(*local_context_.storage_config);
if (not lock) {
auto msg = std::string("Could not acquire CAS gc SharedLock");
logger_->Emit(LogLevel::Error, msg);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, msg};
}
// set up the remote execution config instance for the orchestrated build
auto remote_config = CreateRemoteExecutionConfig(request);
if (not remote_config) {
return std::move(remote_config).error();
}
// get backend description
auto description =
BackendDescription::Describe(remote_config->remote_address,
remote_config->platform_properties,
remote_config->dispatch);
if (not description) {
auto err = fmt::format("Failed to create backend description:\n{}",
description.error());
logger_->Emit(LogLevel::Error, err);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, err};
}
// get a target cache instance with the correct computed shard
auto const tc =
local_context_.storage->TargetCache().WithShard(*description);
auto const tc_key =
TargetCacheKey{{*target_cache_key_digest, ObjectType::File}};
// check if target-level cache entry has already been computed
if (auto target_entry = tc.Read(tc_key); target_entry) {
// make sure all artifacts referenced in the target cache value are in
// the remote cas
std::vector<Artifact::ObjectInfo> artifacts;
if (not target_entry->first.ToArtifacts(&artifacts)) {
auto msg = fmt::format(
"Failed to extract artifacts from target cache entry {}",
target_entry->second.ToString());
logger_->Emit(LogLevel::Error, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, msg};
}
artifacts.emplace_back(target_entry->second); // add the tc value
if (not apis_.local->RetrieveToCas(artifacts, *apis_.remote)) {
auto msg = fmt::format(
"Failed to upload to remote cas the artifacts referenced in "
"the target cache entry {}",
target_entry->second.ToString());
logger_->Emit(LogLevel::Error, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::UNAVAILABLE, msg};
}
if (request->keep_artifact_root()) {
auto keep = KeepRoot(
target_entry->first, local_context_, apis_.local, lock_);
if (keep) {
logger_->Emit(LogLevel::Error, "{}", *keep);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, *keep};
}
}
// populate response with the target cache value
(*response->mutable_target_value()) =
ArtifactDigestFactory::ToBazel(target_entry->second.digest);
return ::grpc::Status::OK;
}
// get target description from remote cas
auto const& target_cache_key_info = Artifact::ObjectInfo{
.digest = *target_cache_key_digest, .type = ObjectType::File};
if (not apis_.local->IsAvailable(*target_cache_key_digest) and
not apis_.remote->RetrieveToCas({target_cache_key_info},
*apis_.local)) {
auto msg = fmt::format(
"Could not retrieve blob {} from remote-execution endpoint",
target_cache_key_info.ToString());
logger_->Emit(LogLevel::Error, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, msg};
}
auto const& target_description_str =
apis_.local->RetrieveToMemory(target_cache_key_info);
if (not target_description_str) {
// this should not fail unless something really broke...
auto msg = fmt::format(
"Unexpected failure in retrieving blob {} from local CAS",
target_cache_key_info.ToString());
logger_->Emit(LogLevel::Error, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, msg};
}
ExpressionPtr target_description_dict{};
try {
target_description_dict = Expression::FromJson(
nlohmann::json::parse(*target_description_str));
} catch (std::exception const& ex) {
auto msg = fmt::format("Parsing TargetCacheKey {} failed with:\n{}",
target_cache_key_digest->hash(),
ex.what());
logger_->Emit(LogLevel::Warning, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, msg};
}
if (not target_description_dict.IsNotNull() or
not target_description_dict->IsMap()) {
auto msg =
fmt::format("TargetCacheKey {} should contain a map, but found {}",
target_cache_key_digest->hash(),
target_description_dict.ToJson().dump());
logger_->Emit(LogLevel::Warning, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::NOT_FOUND, msg};
}
std::string error_msg{}; // buffer to store various error messages
// utility function to check the correctness of the TargetCacheKey
auto check_key = [&target_description_dict,
this,
&target_cache_key_digest,
&error_msg](std::string const& key) -> bool {
if (not target_description_dict->At(key)) {
error_msg =
fmt::format("TargetCacheKey {} does not contain key \"{}\"",
target_cache_key_digest->hash(),
key);
logger_->Emit(LogLevel::Warning, "{}", error_msg);
return false;
}
return true;
};
if (not check_key("repo_key") or not check_key("target_name") or
not check_key("effective_config")) {
return ::grpc::Status{::grpc::StatusCode::NOT_FOUND, error_msg};
}
// get repository config blob path
auto const& repo_key =
target_description_dict->Get("repo_key", Expression::none_t{});
if (not repo_key.IsNotNull() or not repo_key->IsString()) {
auto msg = fmt::format(
"TargetCacheKey {}: \"repo_key\" value should be a string, but "
"found {}",
target_cache_key_digest->hash(),
repo_key.ToJson().dump());
logger_->Emit(LogLevel::Warning, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::NOT_FOUND, msg};
}
auto const repo_key_dgst =
ArtifactDigestFactory::Create(apis_.local->GetHashType(),
repo_key->String(),
0,
/*is_tree=*/false);
if (not repo_key_dgst) {
logger_->Emit(LogLevel::Error, "{}", repo_key_dgst.error());
return ::grpc::Status{::grpc::StatusCode::INTERNAL,
repo_key_dgst.error()};
}
if (not apis_.local->IsAvailable(*repo_key_dgst) and
not apis_.remote->RetrieveToCas(
{Artifact::ObjectInfo{.digest = *repo_key_dgst,
.type = ObjectType::File}},
*apis_.local)) {
auto msg = fmt::format(
"Could not retrieve blob {} from remote-execution endpoint",
repo_key->String());
logger_->Emit(LogLevel::Error, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, msg};
}
auto repo_config_path = local_context_.storage->CAS().BlobPath(
*repo_key_dgst, /*is_executable=*/false);
if (not repo_config_path) {
// This should not fail unless something went really bad...
auto msg = fmt::format(
"Unexpected failure in retrieving blob {} from local CAS",
repo_key->String());
logger_->Emit(LogLevel::Error, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, msg};
}
// populate the RepositoryConfig instance
RepositoryConfig repository_config{};
std::string const main_repo{"0"}; // known predefined main repository name
if (auto msg = DetermineRoots(serve_config_,
local_context_.storage_config,
main_repo,
*repo_config_path,
&repository_config,
logger_)) {
logger_->Emit(LogLevel::Info, "{}", *msg);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, *msg};
}
// get the target name
auto const& target_expr =
target_description_dict->Get("target_name", Expression::none_t{});
if (not target_expr.IsNotNull() or not target_expr->IsString()) {
auto msg = fmt::format(
"TargetCacheKey {}: \"target_name\" value should be a string, but"
" found {}",
target_cache_key_digest->hash(),
target_expr.ToJson().dump());
logger_->Emit(LogLevel::Warning, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, msg};
}
auto target_name = nlohmann::json::object();
try {
target_name = nlohmann::json::parse(target_expr->String());
} catch (std::exception const& ex) {
auto msg = fmt::format(
"TargetCacheKey {}: parsing \"target_name\" failed with:\n{}",
target_cache_key_digest->hash(),
ex.what());
logger_->Emit(LogLevel::Warning, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, msg};
}
// get the effective config of the export target
auto const& config_expr =
target_description_dict->Get("effective_config", Expression::none_t{});
if (not config_expr.IsNotNull() or not config_expr->IsString()) {
auto msg = fmt::format(
"TargetCacheKey {}: \"effective_config\" value should be a string,"
" but found {}",
target_cache_key_digest->hash(),
config_expr.ToJson().dump());
logger_->Emit(LogLevel::Warning, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, msg};
}
Configuration config{};
try {
config = Configuration{
Expression::FromJson(nlohmann::json::parse(config_expr->String()))};
} catch (std::exception const& ex) {
auto msg = fmt::format(
"TargetCacheKey {}: parsing \"effective_config\" failed with:\n{}",
target_cache_key_digest->hash(),
ex.what());
logger_->Emit(LogLevel::Warning, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, msg};
}
// get the ConfiguredTarget
auto entity = BuildMaps::Base::ParseEntityNameFromJson(
target_name,
BuildMaps::Base::EntityName{
BuildMaps::Base::NamedTarget{main_repo, ".", ""}},
&repository_config,
[&error_msg, &target_name](std::string const& parse_err) {
error_msg = fmt::format("Parsing target name {} failed with:\n {} ",
target_name.dump(),
parse_err);
});
if (not entity) {
logger_->Emit(LogLevel::Warning, "{}", error_msg);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION,
error_msg};
}
auto configured_target = BuildMaps::Target::ConfiguredTarget{
.target = std::move(*entity), .config = std::move(config)};
// setup progress reporting; these instances need to be kept alive for
// graph traversal, analysis, and build
Statistics stats{};
Progress progress{};
// setup logging for analysis and build; write into a temporary file
auto tmp_dir =
local_context_.storage_config->CreateTypedTmpDir("serve-target");
if (not tmp_dir) {
auto msg = std::string("Could not create TmpDir");
logger_->Emit(LogLevel::Error, msg);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, msg};
}
std::filesystem::path tmp_log{tmp_dir->GetPath() / "log"};
Logger logger{"serve-target", {LogSinkFile::CreateFactory(tmp_log)}};
AnalyseContext analyse_ctx{.repo_config = &repository_config,
.storage = local_context_.storage,
.statistics = &stats,
.progress = &progress,
.serve = serve_};
// analyse the configured target
auto analyse_result = AnalyseTarget(&analyse_ctx,
configured_target,
serve_config_.jobs,
std::nullopt /*request_action_input*/,
&logger);
if (not analyse_result) {
// report failure locally, to keep track of it...
auto msg = fmt::format("Failed to analyse target {}",
configured_target.target.ToString());
logger_->Emit(LogLevel::Warning, "{}", msg);
return HandleFailureLog(tmp_log, "analysis", response);
}
logger_->Emit(
LogLevel::Info, "Analysed target {}", analyse_result->id.ToString());
auto jobs = serve_config_.build_jobs;
if (jobs == 0) {
jobs = serve_config_.jobs;
}
{
// setup graph traverser
GraphTraverser::CommandLineArguments traverser_args{};
traverser_args.jobs = jobs;
traverser_args.build.timeout = serve_config_.action_timeout;
traverser_args.stage = std::nullopt;
traverser_args.rebuild = std::nullopt;
// pack the remote context instances to be passed as needed
RemoteContext const dispatch_context{
.auth = remote_context_.auth,
.retry_config = remote_context_.retry_config,
.exec_config = &(*remote_config)};
// Use a new ApiBundle that knows about local repository config and
// dispatch endpoint for traversing
auto const local_apis = ApiBundle::Create(
&local_context_, &dispatch_context, &repository_config);
ExecutionContext const exec_context{.repo_config = &repository_config,
.apis = &local_apis,
.remote_context = &dispatch_context,
.statistics = &stats,
.progress = &progress,
.profile = std::nullopt};
GraphTraverser const traverser{
std::move(traverser_args),
&exec_context,
ProgressReporter::Reporter(&stats, &progress, &logger),
&logger};
// get the output artifacts
auto const [artifacts, runfiles] =
ReadOutputArtifacts(analyse_result->target);
// get the analyse_result map outputs
auto [actions, blobs, trees, tree_overlays] =
analyse_result->result_map.ToResult(&stats, &progress, &logger);
// collect cache targets and artifacts for target-level caching
auto const cache_targets = analyse_result->result_map.CacheTargets();
auto cache_artifacts = CollectNonKnownArtifacts(cache_targets);
// Clean up analyse_result map, now that it is no longer needed
{
TaskSystem ts{serve_config_.jobs};
analyse_result->result_map.Clear(&ts);
}
// perform build
auto build_result = traverser.BuildAndStage(artifacts,
runfiles,
std::move(actions),
std::move(blobs),
std::move(trees),
std::move(tree_overlays),
std::move(cache_artifacts));
if (not build_result) {
// report failure locally, to keep track of it...
logger_->Emit(LogLevel::Warning,
"Build for target {} failed",
configured_target.target.ToString());
return HandleFailureLog(tmp_log, "build", response);
}
WriteTargetCacheEntries(cache_targets,
build_result->extra_infos,
jobs,
local_apis,
serve_config_.tc_strategy,
tc,
&logger,
LogLevel::Error);
if (build_result->failed_artifacts) {
// report failure locally, to keep track of it...
logger_->Emit(
LogLevel::Warning,
"Build result for target {} contains failed artifacts ",
configured_target.target.ToString());
return HandleFailureLog(tmp_log, "artifacts", response);
}
}
// now that the target cache key is in, make sure remote CAS has all
// required entries
if (auto target_entry = tc.Read(tc_key); target_entry) {
// make sure all artifacts referenced in the target cache value are in
// the remote cas
std::vector<Artifact::ObjectInfo> tc_artifacts;
if (not target_entry->first.ToArtifacts(&tc_artifacts)) {
auto msg = fmt::format(
"Failed to extract artifacts from target cache entry {}",
target_entry->second.ToString());
logger_->Emit(LogLevel::Error, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, msg};
}
tc_artifacts.emplace_back(target_entry->second); // add the tc value
if (not apis_.local->RetrieveToCas(tc_artifacts, *apis_.remote)) {
auto msg = fmt::format(
"Failed to upload to remote cas the artifacts referenced in "
"the target cache entry {}",
target_entry->second.ToString());
logger_->Emit(LogLevel::Error, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::UNAVAILABLE, msg};
}
if (request->keep_artifact_root()) {
auto keep_error = KeepRoot(
target_entry->first, local_context_, apis_.local, lock_);
if (keep_error) {
logger_->Emit(LogLevel::Error, "{}", *keep_error);
return ::grpc::Status{::grpc::StatusCode::INTERNAL,
*keep_error};
}
}
// populate response with the target cache value
(*response->mutable_target_value()) =
ArtifactDigestFactory::ToBazel(target_entry->second.digest);
return ::grpc::Status::OK;
}
// target cache value missing -- internally something is very wrong
auto msg = fmt::format("Failed to read TargetCacheKey {} after store",
target_cache_key_digest->hash());
logger_->Emit(LogLevel::Error, "{}", msg);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, msg};
}
auto TargetService::ServeTargetVariables(
::grpc::ServerContext* /*context*/,
const ::justbuild::just_serve::ServeTargetVariablesRequest* request,
::justbuild::just_serve::ServeTargetVariablesResponse* response)
-> ::grpc::Status {
auto const& root_tree{request->root_tree()};
auto const& target_file{request->target_file()};
auto const& target{request->target()};
logger_->Emit(LogLevel::Debug, "ServeTargetVariables({}, ...)", root_tree);
// retrieve content of target file
std::optional<std::string> target_file_content{std::nullopt};
bool tree_found{false};
// try in local build root Git cache
if (auto res = GetBlobContent(local_context_.storage_config->GitRoot(),
root_tree,
target_file,
logger_)) {
tree_found = true;
if (res->first) {
if (not res->second) {
// tree exists, but does not contain target file
auto err = fmt::format(
"Target-root {} found, but does not contain targets file "
"{}",
root_tree,
target_file);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION,
err};
}
target_file_content = *res->second;
}
}
if (not target_file_content) {
// try given extra repositories, in order
for (auto const& path : serve_config_.known_repositories) {
if (auto res =
GetBlobContent(path, root_tree, target_file, logger_)) {
tree_found = true;
if (res->first) {
if (not res->second) {
// tree exists, but does not contain target file
auto err = fmt::format(
"Target-root {} found, but does not contain "
"targets file {}",
root_tree,
target_file);
return ::grpc::Status{
::grpc::StatusCode::FAILED_PRECONDITION, err};
}
target_file_content = *res->second;
break;
}
}
}
}
// report if failed to find root tree
if (not target_file_content) {
if (tree_found) {
// something went wrong trying to read the target file blob
auto err =
fmt::format("Could not read targets file {}", target_file);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, err};
}
// tree not found
auto err = fmt::format("Missing target-root tree {}", root_tree);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
// parse target file as json
ExpressionPtr map{nullptr};
try {
map = Expression::FromJson(nlohmann::json::parse(*target_file_content));
} catch (std::exception const& e) {
auto err = fmt::format(
"Failed to parse targets file {} as json with error:\n{}",
target_file,
e.what());
logger_->Emit(LogLevel::Error, err);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
if (not map->IsMap()) {
auto err =
fmt::format("Targets file {} should contain a map, but found:\n{}",
target_file,
map->ToString());
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
// do validity checks (target present, is export, flexible_config valid)
auto target_desc = map->At(target);
if (not target_desc) {
// target is not present
auto err = fmt::format("Missing target {} in targets file {}",
nlohmann::json(target).dump(),
target_file);
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
auto export_desc = target_desc->get()->At("type");
if (not export_desc) {
auto err = fmt::format(
"Missing \"type\" field for target {} in targets file {}.",
nlohmann::json(target).dump(),
target_file);
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
if (not export_desc->get()->IsString()) {
auto err = fmt::format(
"Expected field \"type\" for target {} in targets file {} to be a "
"string, but found:\n{}",
nlohmann::json(target).dump(),
target_file,
export_desc->get()->ToString());
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
if (export_desc->get()->String() != "export") {
// target is not of "type" : "export"
auto err = fmt::format(R"(target {} is not of "type" : "export")",
nlohmann::json(target).dump());
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
auto flexible_config = target_desc->get()->At("flexible_config");
if (not flexible_config) {
// respond with success and an empty flexible_config list
return ::grpc::Status::OK;
}
if (not flexible_config->get()->IsList()) {
auto err = fmt::format(
"Field \"flexible_config\" for target {} in targets file {} should "
"be a list, but found {}",
nlohmann::json(target).dump(),
target_file,
flexible_config->get()->ToString());
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
// populate response with flexible_config list
auto flexible_config_list = flexible_config->get()->List();
for (auto const& elem : flexible_config_list) {
if (not elem->IsString()) {
auto err = fmt::format(
"Field \"flexible_config\" for target {} in targets file {} "
"has non-string entry {}",
nlohmann::json(target).dump(),
target_file,
elem->ToString());
logger_->Emit(LogLevel::Error, "{}", err);
response->clear_flexible_config(); // must be unset
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
response->add_flexible_config(elem->String());
}
// respond with success
return ::grpc::Status::OK;
}
auto TargetService::ServeTargetDescription(
::grpc::ServerContext* /*context*/,
const ::justbuild::just_serve::ServeTargetDescriptionRequest* request,
::justbuild::just_serve::ServeTargetDescriptionResponse* response)
-> ::grpc::Status {
auto const& root_tree{request->root_tree()};
auto const& target_file{request->target_file()};
auto const& target{request->target()};
logger_->Emit(
LogLevel::Debug, "ServeTargetDescription({}, ...)", root_tree);
// retrieve content of target file
std::optional<std::string> target_file_content{std::nullopt};
bool tree_found{false};
// Get repository lock before inspecting the root git cache
auto repo_lock =
RepositoryGarbageCollector::SharedLock(*local_context_.storage_config);
if (not repo_lock) {
auto msg = std::string("Could not acquire repo gc SharedLock");
logger_->Emit(LogLevel::Error, msg);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, msg};
}
// try in local build root Git cache
if (auto res = GetBlobContent(local_context_.storage_config->GitRoot(),
root_tree,
target_file,
logger_)) {
tree_found = true;
if (res->first) {
if (not res->second) {
// tree exists, but does not contain target file
auto err = fmt::format(
"Target-root {} found, but does not contain targets file "
"{}",
root_tree,
target_file);
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION,
err};
}
target_file_content = *res->second;
}
}
if (not target_file_content) {
// try given extra repositories, in order
for (auto const& path : serve_config_.known_repositories) {
if (auto res =
GetBlobContent(path, root_tree, target_file, logger_)) {
tree_found = true;
if (res->first) {
if (not res->second) {
// tree exists, but does not contain target file
auto err = fmt::format(
"Target-root {} found, but does not contain "
"targets file {}",
root_tree,
target_file);
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{
::grpc::StatusCode::FAILED_PRECONDITION, err};
}
target_file_content = *res->second;
break;
}
}
}
}
// report if failed to find root tree
if (not target_file_content) {
if (tree_found) {
// something went wrong trying to read the target file blob
auto err =
fmt::format("Could not read targets file {}", target_file);
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, err};
}
// tree not found
auto err = fmt::format("Missing target-root tree {}", root_tree);
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
// parse target file as json
ExpressionPtr map{nullptr};
try {
map = Expression::FromJson(nlohmann::json::parse(*target_file_content));
} catch (std::exception const& e) {
auto err = fmt::format(
"Failed to parse targets file {} as json with error:\n{}",
target_file,
e.what());
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
if (not map->IsMap()) {
auto err =
fmt::format("Targets file {} should contain a map, but found:\n{}",
target_file,
map->ToString());
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
// do validity checks (target is present and is of "type": "export")
auto target_desc = map->At(target);
if (not target_desc) {
// target is not present
auto err = fmt::format("Missing target {} in targets file {}",
nlohmann::json(target).dump(),
target_file);
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
auto export_desc = target_desc->get()->At("type");
if (not export_desc) {
auto err = fmt::format(
"Missing \"type\" field for target {} in targets file {}.",
nlohmann::json(target).dump(),
target_file);
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
if (not export_desc->get()->IsString()) {
auto err = fmt::format(
"Expected field \"type\" for target {} in targets file {} to be a "
"string, but found:\n{}",
nlohmann::json(target).dump(),
target_file,
export_desc->get()->ToString());
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
if (export_desc->get()->String() != "export") {
// target is not of "type" : "export"
auto err = fmt::format(R"(target {} is not of "type" : "export")",
nlohmann::json(target).dump());
logger_->Emit(LogLevel::Error, "{}", err);
return ::grpc::Status{::grpc::StatusCode::FAILED_PRECONDITION, err};
}
// populate response description object with fields as-is
auto desc = nlohmann::json::object();
if (auto doc = target_desc->get()->Get("doc", Expression::none_t{});
doc.IsNotNull()) {
desc["doc"] = doc->ToJson();
}
if (auto config_doc =
target_desc->get()->Get("config_doc", Expression::none_t{});
config_doc.IsNotNull()) {
desc["config_doc"] = config_doc->ToJson();
}
if (auto flexible_config =
target_desc->get()->Get("flexible_config", Expression::none_t{});
flexible_config.IsNotNull()) {
desc["flexible_config"] = flexible_config->ToJson();
}
// acquire lock for CAS
auto lock = GarbageCollector::SharedLock(*local_context_.storage_config);
if (not lock) {
auto error_msg = fmt::format("Could not acquire gc SharedLock");
logger_->Emit(LogLevel::Error, error_msg);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, error_msg};
}
// store description blob to local CAS and sync with remote CAS;
// we keep the documentation strings as close to actual as possible, so we
// do not fail if they contain invalid UTF-8 characters, instead we use the
// UTF-8 replacement character to solve any decoding errors.
std::string description_str;
try {
description_str =
desc.dump(2, ' ', false, nlohmann::json::error_handler_t::replace);
} catch (std::exception const& ex) {
// normally shouldn't happen
std::string err{"Failed to dump backend JSON description to string"};
logger_->Emit(LogLevel::Error, err);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, err};
}
if (auto dgst =
local_context_.storage->CAS().StoreBlob(description_str,
/*is_executable=*/false)) {
if (not apis_.local->RetrieveToCas(
{Artifact::ObjectInfo{.digest = *dgst,
.type = ObjectType::File}},
*apis_.remote)) {
auto error_msg = fmt::format(
"Failed to upload to remote cas the description blob {}",
dgst->hash());
logger_->Emit(LogLevel::Error, "{}", error_msg);
return ::grpc::Status{::grpc::StatusCode::UNAVAILABLE, error_msg};
}
// populate response
(*response->mutable_description_id()) =
ArtifactDigestFactory::ToBazel(*dgst);
return ::grpc::Status::OK;
}
// failed to store blob
const auto* const error_msg =
"Failed to store description blob to local cas";
logger_->Emit(LogLevel::Error, error_msg);
return ::grpc::Status{::grpc::StatusCode::INTERNAL, error_msg};
}
#endif // BOOTSTRAP_BUILD_TOOL
|