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 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
|
use Zef;
use Zef::Distribution;
use Zef::Distribution::Local;
use Zef::Distribution::DependencySpecification;
use Zef::Repository;
use Zef::Utils::FileSystem;
use Zef::Fetch;
use Zef::Extract;
use Zef::Build;
use Zef::Test;
use Zef::Install;
use Zef::Report;
class Zef::Client {
=begin pod
=title class Zef::Client
=subtitle Task coordinator for raku distribution installation workflows
=head1 Synopsis
=begin code :lang<raku>
use Zef::Client;
use Zef::Config;
# Get default config (see resources/config.json for more details on config options)
my $config-file = Zef::Config::guess-path();
my $config = Zef::Config::parse-file($config-file);
# Create a client
my $client = Zef::Client.new(:$config);
# Add some basic logging so there is output to see
my $logger = $client.logger.Supply;
$logger.tap: -> $m { say $m.<message> }
# Use the client to resolve the requested candidates
my @requested-candidates = $client.find-candidates('Distribution::Common::Remote');
my @dependencies-candidates = $client.find-prereq-candidates(|@requested-candidates);
my @candidates = |@requested-candidates, |@dependencies-candidates;
say "Found " ~ @candidates.elems ~ " candidates...";
# Use the client to fetch/build/test/install candidates to the default raku repository
my CompUnit::Repository @install-to = CompUnit::RepositoryRegistry.repository-for-name('site');
$client.make-install(|@candidates, :to(@install-to));
say "Installed candidates!";
=end code
=head1 Description
A class that coordinates the various stages of a raku distribution installation workflow based on
various configuration parameters.
Additionally it provides slightly higher level facilities for fetching, extracting, etc, than the
e.g. C<Zef::Fetch>, C<Zef::Extract>, etc modules it uses underneath. For example C<Zef::Client.fetch>
may run an extraction step unlike C<Zef::Fetch.fetch>, since the former is in the context of a distribution
(i.e. we want the distribution at the specific commit/tag, not the HEAD immediately after fetching).
=head1 Methods
=head2 method find-candidates
method find-candidates(*@identities ($, *@) --> Array[Candidate])
Searches all repositories via C<Zef::Repository> and returns a matching C<Candidate> / distribution for each supplied
identity. Generally this is used to find the top level distributions requested, such as C<Foo> in C<zef install Foo>.
=head2 method find-candidates
method find-prereq-candidates(Bool :$skip-installed = True, *@candis ($, *@) --> Array[Candidate])
Similar to C<method find-candidates> but returns matching a matching C<Candidate> for each dependency of the supplied
identities. Generally this is used to recursively discover and determine the dependencies of the identities requested.
If C<$skip-installed> is set to C<False> it will potentially install a newer version of an already installed matching
dependency (without uninstalling the previous version). It also skips any identity matching of C<@.ignore>, which allows
getting past an unresolvable dependency ala `zef install Inline::Perl5 --ignore="perl"`.
Returns an C<Array> of C<Candidate> that fulfill the dependency requirements of C<@identities>.
=head2 method search
method search(*@identities ($, *@), *%fields, Bool :$strict = False --> Array[Candidate])
Resolves each identity in C<@identities> to all of its matching C<Candidates> from all backends via C<Zef::Repository> (with C<$max-results>
applying to each individual backend). If C<$strict> is C<False> then it will consider partial matches on module short-names (i.e. 'zef search HTTP'
will get results for e.g. C<HTTP::UserAgent>).
=head2 method fetch
method fetch(*@candidates ($, *@) --> Array[Candidate])
Fetches a distribution from some location, and unpacks/extracts it to a temporary location to be used be cached, tested,
installed, etc. It effective combines the functionality of C<Zef::Fetch.fetch> and C<Zef::Extract.extract> into a single
method as there isn't yet a useful reason to have workflows that work with compressed archives/packages. Fetches up to
C<$.fetch-degree> different C<@candidates> in parallel.
Anytime a distribution is fetched it will call C<.store(@distributions)> on any C<Zef::Repository> that supports it (usually
just C<Zef::Repository::LocalCache>).
File are saved to the C<TempDir> setting in C<resources/config.json>, and extracted to the C<$.cache> directory (the C<StoreDir>
setting in C<resources/config.json>).
Returns an C<Array> of C<Candidate> containing the successfully fetched results.
=head2 method build
method build(*@candidates ($, *@) --> Array[Candidate])
Runs the build process on each C<@candidates> that the backends for C<Zef::Build> know how to process. Builds up to C<$.build-degree>
different C<@candidates> in parallel.
Returns an C<Array> of C<Candidate> with each C<.build-results> set appropriately.
=head2 method test
method test(*@candidates ($, *@) --> Array[Candidate])
Runs the test process on each C<@candidates> via the backends of C<Zef::Test>. Tests up to C<$.test-degree> different
C<@candidates> in parallel.
Returns an C<Array> of C<Candidate> with each C<.test-results> set appropriately.
=head2 method uninstall
method uninstall(CompUnit::Repository :@from!, *@identities --> Array[Candidate])
Searches each C<CompUnit::Repository> in C<@from> for each C<@identities> and uninstalls any matching distributions.
For instance uninstalling C<zef> could potentially uninstall multiple versions, whereas uninstall C<zef:ver("0.9.4")> would
only uninstall that specific version.
Returns an C<Array> containing each uninstalled C<Candidate>.
=head2 method install
method install(:@curs, *@candidates ($, *@) --> Array[Candidate])
Install a C<Candidate> containing a C<Distribution> to each C<CompUnit::Repository> in C<@curs>.
Returns an C<Array> containing each successfully installed C<Candidate>.
=head2 method make-install
method make-install(CompUnit::Repository :@to!, Bool :$fetch = True, Bool :$build = True, Bool :$test = True, Bool :$dry, Bool :$serial, *@candidates ($, *@), *%_)
The 'do everything but resolve dependencies' method. You essentially figure out all the C<Candidate> you need to install
(dependencies, etc) and pass them to this method. Its similar to C<method install> except it also handles calling C<method fetch>
(if C<$fetch> is C<True>), C<method build> (if C<$build> is C<True>), and C<method test> (if <$test> is C<True>). If C<$dry> is
C<True> then the final step of calling C<method install> (which moves the modules to where C<raku> will see them) will be skipped.
If <$serial> is C<True> then each C<Candidate> will be installed after it passes its own tests (instead of the default behavior of
only installing if all C<Candidate>, including dependencies, pass their tests).
=head2 method list-rev-depends
method list-rev-depends($identity, Bool :$indirect --> Array[Candidate])
Return an C<Array> of C<Candidate> of all distribution that directly depend on C<$identity>. If C<$indirect> is C<True> then it
additionally returns distributions that indirectly / transitively depend on C<$identity>
=head2 method list-available
method list-available(*@recommendation-manager-names --> Array[Candidate])
Returns an C<Array> of C<Candidate> for every distribution from every repository / recommendation-manager with a name (as
set in C<resources/config.json>) matching any of those in C<@recommendation-manager-names> (or all repositories if no names
are supplied). Note some non-standard repositories may not support listing all available distributions.
=head2 method list-installed
method list-installed(*@curis --> Array[Candidate])
Returns an C<Array> of C<Candidate> for each Raku distribution installed to each C<CompUnit::Repository::Installation> C<@curis>
(or all known C<CompUnit::Repository::Installation> if no C<@curis> are supplied).
=head2 method list-leaves
method list-leaves(--> Array[Candidate])
Returns an C<Array> of C<Candidate> for each installed distributions that nothing else appears to depend on.
=head2 method list-dependencies
method list-dependencies(*@candis --> Array[DependencySpecification])
Returns an C<Array> of C<Zef::Distribution::DependencySpecification> and // or C<Zef::Distribution::DependencySpecification::Any>
for each C<@candis> distributions various dependency requirements.
If C<$.depends> is set to C<False> then runtime dependencies will be ignored.
If C<$.test-depends> is set to C<False> then test dependencies will be ignored.
If C<$.build-depends> is set to C<False> then build dependencies will be ignored.
=head2 method resolve
method resolve($spec, CompUnit::Repository :@at --> Array[Candidate])
Returns the best matching distributions from installed sources for the given C<$spec>, in preferred order (highest api
version and highest version) from each C<CompUnit::Repository> in C<@at> (or all known C<CompUnit::Repository> if C<@at>
is not set). C<$spec> should be either a C<Zef::Distribution::DependencySpecification> or C<Zef::Distribution::DependencySpecification::Any>.
=head2 method is-installed
multi method is-installed(Str $spec, |c --> Bool:D)
multi method is-installed(Zef::Distribution::DependencySpecification::Any $spec, |c --> Bool:D)
multi method is-installed(Zef::Distribution::DependencySpecification $spec, |c --> Bool:D)
Returns C<True> if the requested C<$spec> is installed. The logic it uses to decide if something is installed is based on
the C<$spec.from-matcher>: C<foo:from<bin>> will search C<$PATH> for C<foo>, C<foo:from<native>> will check if C<NativeCall>
can see an e.g. C<libfoo.so> or C<foo.dll>, and everything else will be looked up as a C<foo> raku module.
=head2 method sort-candidates
method sort-candidates(@candis --> Array[Candidate])
Does a topological sort of C<@candis> based on their various dependency fields and C<$.depends>/C<$.test-depends>/C<$.build-depends>.
=end pod
#| Where zef will cache index databases (p6c.json, etc) and distributions
has IO::Path $.cache;
#| Repository abstraction used to query for distributions
has Zef::Repository $.recommendation-manager; # todo: rename this?
#| Fetcher abstraction used to fetch distributions, ecosystem databases, etc
has Zef::Fetch $.fetcher;
#| Extractor abstraction used to e.g. extract or checkout data sources
has Zef::Extract $.extractor;
#| Builder abstraction used to handle running the build phase of a distribution
has Zef::Build $.builder;
#| Tester abstraction used to handle running the test phase of a distribution
has Zef::Test $.tester;
#| Installer abstraction used to handle the install phase of a distribution
#| (we theoretically could install Perl modules with an adapter for instance)
has Zef::Install $.installer;
#| Reporter abstraction to to handle the report phase of a distribution
has Zef::Report $.reporter;
#| The config data (see resources/config.json)
has %.config;
#| Supplier where logging events originate
#| For example to get 'test' related event you might use:
#| $client.logger.Supply.grep({ .<phase> eq "TEST" })
has Supplier $.logger = Supplier.new;
#| Internal use store for keeping track of module names to skip
has @!ignore;
#
# NOTE: All attributes below this point have CLI equivalents
#
#| User supplied module names that will be skipped
#| For example to skip a native perl dependency like perl:from<bin>:
#| :exclude("perl");
#| or from the command line:
#| --exclude=perl
has @.exclude;
#| Continue resolving dependencies even if there is an error in doing so
has Bool $.force-resolve is rw = False;
#| Continue fetching dependencies even if there is an error in doing so
#| (I don't think there isn't a good reason to ever set this to True)
has Bool $.force-fetch is rw = False;
#| Continue extracting dependencies even if there is an error in doing so
#| (I don't think there isn't a good reason to ever set this to True)
has Bool $.force-extract is rw = False;
#| Continue building dependencies even if there is an error in doing so
has Bool $.force-build is rw = False;
#| Continue testing dependencies even if there is an error in doing so
has Bool $.force-test is rw = False;
#| Continue installing dependencies even if there is an error in doing so
has Bool $.force-install is rw = False;
#| The max number of items to fetch concurrently
has Int $.fetch-degree is rw = 1;
#| The max number of distributions to test concurrently
has Int $.test-degree is rw = 1;
#| The number of seconds to wait before aborting a fetching task
has Int $.fetch-timeout is rw = 600;
#| The number of seconds to wait before aborting a extracting task
has Int $.extract-timeout is rw = 3600;
#| The number of seconds to wait before aborting a building task
has Int $.build-timeout is rw = 3600;
#| The number of seconds to wait before aborting a testing task
has Int $.test-timeout is rw = 3600;
#| The number of seconds to wait before aborting a installing task
has Int $.install-timeout is rw = 3600;
#| If run time dependencies should be considered when processing distributions
has Bool $.depends is rw = True;
#| If build time dependencies should be considered when building distributions
has Bool $.build-depends is rw = True;
#| If test time dependencies should be considered when building distributions
has Bool $.test-depends is rw = True;
submethod TWEAK(
:$!cache = %!config<StoreDir>.IO,
:$!fetcher = Zef::Fetch.new(:backends(|%!config<Fetch>)),
:$!extractor = Zef::Extract.new(:backends(|%!config<Extract>)),
:$!builder = Zef::Build.new(:backends(|%!config<Build>)),
:$!installer = Zef::Install.new(:backends(|%!config<Install>)),
:$!tester = Zef::Test.new(:backends(|%!config<Test>)),
:$!reporter = Zef::Report.new(:backends(|%!config<Report>)),
:$!recommendation-manager = Zef::Repository.new(:backends(%!config<Repository>.tree({$_}, *.map({ $_<options><cache> //= $!cache; $_<options><fetcher> = $!fetcher; $_ })).Array)),
) {
mkdir $!cache unless $!cache.IO.e;
# Ignore CORE modules to speed up searches and to avoid dual-life issues until CORE is more strictly versioned
@!ignore = CompUnit::RepositoryRegistry
.repository-for-name('core')
.candidates('CORE')
.map(*.meta<provides>.keys.Slip)
.unique
.map({ Zef::Distribution::DependencySpecification.new($_) })
;
}
#| Return a matching candidate/distribution for each supplied identity
method find-candidates(Bool :$upgrade, *@identities ($, *@) --> Array[Candidate]) {
self.logger.emit({
level => INFO,
stage => RESOLVE,
phase => BEFORE,
message => "Searching for: {@identities.join(', ')}",
});
my Candidate @candidates = self!find-candidates(:$upgrade, @identities);
for @candidates.classify({.from}).kv -> $from, $found {
self.logger.emit({
level => VERBOSE,
stage => RESOLVE,
phase => AFTER,
message => "Found: {$found.map(*.dist.identity).join(', ')} [via {$from}]",
})
}
return @candidates;
}
#| Similar to self.find-candidates, but this can be called recursively. Notably
#| it allows the message for the call to .find-candidates(...) to differentiate
#| between later calls to .find-prereq-candidates(...) (which calls !find-candidates
#| so it doesn't send the aforementioned logging message for a top level request).
method !find-candidates(Bool :$upgrade, *@identities ($, *@) --> Array[Candidate]) {
my Candidate @candidates = $!recommendation-manager.candidates(@identities, :$upgrade)\
.grep(-> $candi { not @!exclude.first({$candi.dist.contains-spec($_)}) })\
.grep(-> $candi { not @!ignore.first({$candi.dist.contains-spec($_)}) })\
.unique(:as(*.dist.identity));
return @candidates;
}
#| Return matching candidates that fulfill the dependencies (including transitive) for each supplied candidate/distribution
method find-prereq-candidates(Bool :$skip-installed = True, Bool :$upgrade, *@candis ($, *@) --> Array[Candidate]) {
my Candidate @results = self!find-prereq-candidates(:$skip-installed, :$upgrade, |@candis);
return @results;
}
#| Similar .find-prereq-candidates this has an additional non-public api parameter :@certain used during recursion
method !find-prereq-candidates(Bool :$skip-installed = True, Bool :$upgrade, :@certain, *@candis ($, *@) --> Array[Candidate]) {
my @skip = @candis.map(*.dist);
my $prereqs := gather {
my @specs = self.list-dependencies(@candis);
while @specs.splice -> @specs-batch {
self.logger.emit({
level => DEBUG,
stage => RESOLVE,
phase => BEFORE,
message => "Dependencies: {@specs-batch.map(*.name).unique.join(', ')}",
});
next unless my @needed = @specs-batch\ # The current set of specs
.grep({ not @skip.first(*.contains-spec($_)) })\ # Dists in @skip are not needed
.grep(-> $spec { not @!exclude.first({ $_.spec-matcher($spec) }) })\
.grep(-> $spec { not @!ignore.first({ $_.spec-matcher($spec) }) })\
.grep({ $skip-installed ?? self.is-installed($_).not !! True });
my %needed = @needed.classify: {
$_.isa(Zef::Distribution::DependencySpecification::Any)
?? "alternative"
!! "certain"
};
my @identities = %needed<certain>.map(*.identity) if %needed<certain>;
self.logger.emit({
level => INFO,
stage => RESOLVE,
phase => BEFORE,
message => "Searching for missing dependencies: {@needed.map(*.identity).join(', ')}",
});
my @prereq-candidates = self!find-candidates(:$upgrade, @identities) if @identities;
my @alt-identities = gather for %needed<alternative>.list -> $needed {
next if any(|@certain, |@prereq-candidates).dist.contains-spec($needed);
my @candidates;
if $needed.specs.first({
CATCH {
when X::Zef::UnsatisfiableDependency { @candidates = (); }
}
@candidates = self!find-candidates(:$upgrade, $_.identity);
if @candidates {
my Candidate @new-candidates = self!find-prereq-candidates(
:$upgrade,
:certain(|@certain, |@prereq-candidates),
@candidates,
);
@candidates.append: @new-candidates;
}
@candidates
})
-> $ {
@prereq-candidates.append(@candidates);
}
else {
take $needed.identity;
}
} if %needed<alternative>;
@prereq-candidates.append: self!find-candidates(:$upgrade, @alt-identities) if @alt-identities;
my @not-found = @needed.grep({ not @prereq-candidates.first(*.dist.contains-spec($_)) });
# The failing part of this should ideally be handled in Zef::CLI I think
if +@prereq-candidates == +@needed || @not-found.cache.elems == 0 {
for @prereq-candidates.classify({.from}).kv -> $from, $found {
self.logger.emit({
level => VERBOSE,
stage => RESOLVE,
phase => AFTER,
message => "Found dependencies: {$found.map(*.dist.identity).join(', ')} [via {$from}]",
})
}
}
else {
self.logger.emit({
level => ERROR,
stage => RESOLVE,
phase => AFTER,
message => "Failed to find dependencies: {@not-found.map(*.identity).join(', ')}",
});
$!force-resolve
?? $!logger.emit({
level => ERROR,
stage => RESOLVE,
phase => LIVE,
message => 'Failed to resolve missing dependencies, but continuing with --force-resolve',
})
!! die X::Zef::UnsatisfiableDependency.new but role :: {
method message {
X::Zef::UnsatisfiableDependency.message ~ qq| (use e.g. --exclude="{@not-found.head.name}" to skip)|;
}
};
};
@skip.append: @prereq-candidates.map(*.dist);
@specs = self.list-dependencies(@prereq-candidates);
for @prereq-candidates -> $prereq {
$prereq.is-dependency = True;
take $prereq;
}
}
}
# check $prereqs to see if we have any unneeded depends
my Candidate @results = $prereqs.unique(:as(*.dist.identity));
return @results;
}
method fetch(*@candidates ($, *@) --> Array[Candidate]) {
my @fetched = self!fetch(@candidates);
my @extracted = self!extract(@fetched);
my Candidate @local-candis = @extracted.map: -> $candi {
my $dist = Zef::Distribution::Local.new(~$candi.uri);
$candi.clone(:$dist);
}
$!recommendation-manager.store(@local-candis.map(*.dist));
return @local-candis;
}
method !fetch(*@candidates ($, *@) --> Array[Candidate]) {
my Candidate @fetched = @candidates.hyper(:batch(1), :degree($!fetch-degree || 5)).map: -> $candi {
self.logger.emit({
level => DEBUG,
stage => FETCH,
phase => BEFORE,
candi => $candi,
message => "Fetching: {$candi.as}",
});
die "Cannot determine a uri to fetch {$candi.as} from. Perhaps it's META6.json is missing an e.g. source-url"
unless $candi.uri;
my $tmp = %!config<TempDir>.IO.child("{time}.{$*PID}.{(^10000).rand}");
my $stage-at = $tmp.child($candi.uri.IO.basename);
die "failed to create directory: {$tmp.absolute}"
unless ($tmp.IO.e || mkdir($tmp));
# $candi.uri will always point to where $candi.dist should be copied from.
# It could be a file or url; $dist.source-url contains where the source was
# originally located but we may want to use a local copy (while retaining
# the original source-url for some other purpose like updating)
my $save-to = $!fetcher.fetch($candi, $stage-at, :$!logger, :timeout($!fetch-timeout));
if !$save-to {
self.logger.emit({
level => ERROR,
stage => FETCH,
phase => AFTER,
candi => $candi,
message => "Fetching [FAIL]: {$candi.dist.?identity // $candi.as} from {$candi.uri}",
});
$!force-fetch
?? $!logger.emit({
level => ERROR,
stage => FETCH,
phase => LIVE,
candi => $candi,
message => 'Failed to fetch, but continuing with --force-fetch',
})
!! die("Aborting due to fetch failure: {$candi.dist.?identity // $candi.uri} (use --force-fetch to override)");
}
else {
self.logger.emit({
level => VERBOSE,
stage => FETCH,
phase => AFTER,
candi => $candi,
message => "Fetching [OK]: {$candi.dist.?identity // $candi.as} to $save-to",
});
}
$candi.uri = $save-to;
$candi;
};
return @fetched;
}
method !extract(*@candidates ($, *@) --> Array[Candidate]) {
my Candidate @extracted = eager gather for @candidates -> $candi {
self.logger.emit({
level => DEBUG,
stage => EXTRACT,
phase => BEFORE,
candi => $candi,
message => "Extracting: {$candi.as}",
});
my $tmp = $candi.uri.parent;
my $stage-at = $candi.uri;
my $relpath = $stage-at.relative($tmp);
my $extract-to = %!config<TempDir>.IO.child($relpath);
die "failed to create directory: {$tmp.absolute}"
unless ($tmp.IO.e || mkdir($tmp));
my $meta6-prefix = '' R// $!extractor.ls-files($candi).sort.first({ .IO.basename eq 'META6.json' });
self.logger.emit({
level => WARN,
stage => EXTRACT,
phase => BEFORE,
candi => $candi,
message => "Extraction: Failed to find a META6.json file for {$candi.dist.?identity // $candi.as} -- failure is likely",
}) unless $meta6-prefix;
my $extracted-to = $!extractor.extract($candi, $extract-to, :$!logger, :timeout($!extract-timeout));
if !$extracted-to {
self.logger.emit({
level => ERROR,
stage => EXTRACT,
phase => AFTER,
candi => $candi,
message => "Extraction [FAIL]: {$candi.dist.?identity // $candi.as} from {$candi.uri}",
});
$!force-extract
?? $!logger.emit({
level => ERROR,
stage => EXTRACT,
phase => LIVE,
candi => $candi,
message => 'Failed to extract, but continuing with --force-extract',
})
!! die("Aborting due to extract failure: {$candi.dist.?identity // $candi.uri} (use --force-extract to override)");
}
else {
try { delete-paths($tmp) }
# Remove this when META.info support can finally be removed
if !$meta6-prefix and my $meta-info = $extracted-to.IO.add('META.info') and $meta-info.e {
self.logger.emit({
level => WARN,
stage => EXTRACT,
phase => AFTER,
candi => $candi,
message => "Extraction: Failed to find a META6.json file for {$candi.dist.?identity // $candi.as} -- creating it from deprecated META.info file",
});
try { $meta-info.copy($meta-info.parent.add('META6.json')) }
}
self.logger.emit({
level => VERBOSE,
stage => EXTRACT,
phase => AFTER,
candi => $candi,
message => "Extraction [OK]: {$candi.as} to {$extract-to}",
});
}
$candi.uri = $extracted-to.child($meta6-prefix);
take $candi;
}
return @extracted;
}
# xxx: needs some love. also an entire specification
method build(*@candidates ($, *@) --> Array[Candidate]) {
my Candidate @built = eager gather for @candidates -> $candi {
my $dist := $candi.dist;
unless $!builder.build-matcher($dist) {
self.logger.emit({
level => DEBUG,
stage => BUILD,
phase => BEFORE,
candi => $candi,
message => "# SKIP: No need to build {$candi.dist.?identity // $candi.as}",
});
take $candi;
next();
}
$!logger.emit({
level => INFO,
stage => BUILD,
phase => BEFORE,
candi => $candi,
message => "Building: {$candi.dist.?identity // $candi.as}",
});
my $result := $!builder.build($candi, :includes($candi.dist.metainfo<includes> // []), :$!logger, :timeout($!build-timeout)).cache;
$candi.build-results = $result;
if $result.grep(*.not).elems {
self.logger.emit({
level => ERROR,
stage => BUILD,
phase => AFTER,
candi => $candi,
message => "Building [FAIL]: {$candi.dist.?identity // $candi.as}",
});
$!force-build
?? $!logger.emit({
level => ERROR,
stage => BUILD,
phase => LIVE,
candi => $candi,
message => 'Failed to build, but continuing with --force-build',
})
!! die("Aborting due to build failure: {$candi.dist.?identity // $candi.uri} (use --force-build to override)");
}
else {
self.logger.emit({
level => INFO,
stage => BUILD,
phase => AFTER,
candi => $candi,
message => "Building [OK] for {$candi.dist.?identity // $candi.as}",
});
}
take $candi;
}
@built
}
# xxx: needs some love
method test(*@candidates ($, *@) --> Array[Candidate]) {
my Candidate @tested = @candidates.hyper(:batch(1), :degree($!test-degree || 1)).map: -> $candi {
self.logger.emit({
level => INFO,
stage => TEST,
phase => BEFORE,
candi => $candi,
message => "Testing: {$candi.dist.?identity // $candi.as}",
});
my $result := $!tester.test($candi, :includes($candi.dist.metainfo<includes> // []), :$!logger, :timeout($!test-timeout)).cache;
$candi.test-results = $result;
if $result.grep(*.not).elems {
self.logger.emit({
level => ERROR,
stage => TEST,
phase => AFTER,
candi => $candi,
message => "Testing [FAIL]: {$candi.dist.?identity // $candi.as}",
});
$!force-test
?? $!logger.emit({
level => ERROR,
stage => TEST,
phase => LIVE,
candi => $candi,
message => 'Failed to get passing tests, but continuing with --force-test',
})
!! die("Aborting due to test failure: {$candi.dist.?identity // $candi.uri} (use --force-test to override)");
}
else {
self.logger.emit({
level => INFO,
stage => TEST,
phase => AFTER,
candi => $candi,
message => "Testing [OK] for {$candi.dist.?identity // $candi.as}",
});
}
$candi;
}
return @tested
}
#| Search for identities from the various repository backends and returns the matching distributions
method search(*@identities ($, *@), *%fields, Bool :$strict = False --> Array[Candidate]) {
my Candidate @results = $!recommendation-manager.search(@identities, :$strict, |%fields);
return @results;
}
#| Uninstall a distribution from a given repository
method uninstall(CompUnit::Repository :@from!, *@identities --> Array[Candidate]) {
my @specs = @identities.map: { Zef::Distribution::DependencySpecification.new($_) }
my Candidate @results = eager gather for self.list-installed(@from) -> $candi {
my $dist = $candi.dist;
if @specs.first({ $dist.spec-matcher($_) }) {
my $cur = CompUnit::RepositoryRegistry.repository-for-spec("inst#{$candi.from}", :next-repo($*REPO));
$cur.uninstall($dist);
take $candi;
}
}
return @results;
}
#| Install a distribution to a given repository
method install(:@curs, *@candidates ($, *@) --> Array[Candidate]) {
my Candidate @installed = eager gather for @candidates -> $candi {
self.logger.emit({
level => INFO,
stage => INSTALL,
phase => BEFORE,
candi => $candi,
message => "Installing: {$candi.dist.?identity // $candi.as}",
});
for @curs -> $cur {
KEEP self.logger.emit({
level => VERBOSE,
stage => INSTALL,
phase => AFTER,
candi => $candi,
message => "Install [OK] for {$candi.dist.?identity // $candi.as}",
});
CATCH {
when /'already installed'/ {
self.logger.emit({
level => INFO,
stage => INSTALL,
phase => AFTER,
candi => $candi,
message => "Install [SKIP] for {$candi.dist.?identity // $candi.as}: {$_}",
});
}
default {
self.logger.emit({
level => ERROR,
stage => INSTALL,
phase => AFTER,
candi => $candi,
message => "Install [FAIL] for {$candi.dist.?identity // $candi.as}: {$_}",
});
$_.rethrow;
}
}
take $candi if $!installer.install($candi, :$cur, :force($!force-install), :$!logger, :timeout($!install-timeout));
}
}
return @installed;
}
#| This organizes and executes multiples phases for multiples candidates (test/build/install/etc)
method make-install(
CompUnit::Repository :@to!, # target CompUnit::Repository
Bool :$fetch = True, # try fetching whats missing
Bool :$build = True, # run Build.pm (DEPRECATED..?)
Bool :$test = True, # run tests
Bool :$dry, # do everything *but* actually install
Bool :$serial,
*@candidates ($, *@),
*%_
) {
my @curs = @to.grep: -> $cur {
UNDO {
self.logger.emit({
level => WARN,
stage => INSTALL,
phase => BEFORE,
message => "CompUnit::Repository install target is not writeable/installable: {$cur}"
});
}
KEEP {
self.logger.emit({
level => TRACE,
stage => INSTALL,
phase => BEFORE,
message => "CompUnit::Repository install target is valid: {$cur}"
});
}
$cur.?can-install || next();
}
die "Need a valid installation target to continue" unless ?$dry || +@curs;
# XXX: Each loop block below essentially represents a phase, so they will probably
# be moved into their own method/module related directly to their phase. For now
# lumping them here allows us to easily move functionality between phases until we
# find the perfect balance/structure.
die "Must specify something to install" unless +@candidates;
# Fetch Stage:
# Use the results from searching each available Repository and download/fetch the distributions they point at
my @fetched-candidates = eager gather for @candidates -> $store {
# Note that this method of not fetching Zef::Distribution::Local means we cannot
# show fetching messages that would be fired in self.fetch(|) ( such as the download uri ).
# The reason it doesn't just fetch regardless is because it avoids caching local dev dists
# ala `zef install .` from polluting the name/auth/api/ver namespace of the local cache.
# TODO: Find a solution for the issues noted above which will resolve GH#261 "zef install should tell user where the install was from"
take $_ for ($store.dist.^name.contains('Zef::Distribution::Local') || !$fetch) ?? $store !! self.fetch($store, |%_);
}
die "Failed to fetch any candidates. No reason to proceed" unless +@fetched-candidates;
# Filter Stage:
# Handle stuff like removing distributions that are already installed, that don't have
# an allowable license, etc. It faces the same "fetch an alternative if available on failure"
# problem outlined below under `Sort Phase` (a depends on [A, B] where A gets filtered out
# below because it has the wrong license means we don't need anything that depends on A but
# *do* need to replace those items with things depended on by B [which replaces A])
my @filtered-candidates = @fetched-candidates.grep: -> $candi {
my $*error;
self.logger.emit({
level => DEBUG,
stage => FILTER,
phase => BEFORE,
candi => $candi,
message => "Filtering: {$candi.dist.identity}",
});
KEEP $!logger.emit({
level => DEBUG,
stage => FILTER,
phase => AFTER,
candi => $candi,
message => "Filtering [OK] for {$candi.dist.?identity // $candi.as}",
});
UNDO $!logger.emit({
level => ERROR,
stage => FILTER,
phase => AFTER,
candi => $candi,
message => "Filtering [FAIL] for {$candi.dist.?identity // $candi.as}: {$*error}",
});
$*error = do given %!config<License> {
when .<blacklist>.?chars && any(|.<blacklist>) ~~ any('*', $candi.dist.meta<license> // '') {
"License blacklist configuration exists and matches {$candi.dist.meta<license> // 'n/a'} for {$candi.dist.name}";
}
when .<whitelist>.?chars && any(|.<whitelist>) ~~ none('*', $candi.dist.meta<license> // '') {
"License whitelist configuration exists and does not match {$candi.dist.meta<license> // 'n/a'} for {$candi.dist.name}";
}
}
$*error.?chars;
}
die "All candidates have been filtered out. No reason to proceed" unless +@filtered-candidates;
# Sort Phase:
# This ideally also handles creating alternate build orders when a `depends` includes
# alternative dependencies. Then if the first build order fails it can try to fall back
# to the next possible build order. However such functionality may not be useful this late
# as at this point we expect to have already fetched/filtered the distributions... so either
# we fetch all alternatives (most of which would probably would not use) or do this in a way
# that allows us to return to a previous state in our plan (xxx: Zef::Plan is planned)
my @sorted-candidates = self.sort-candidates(@filtered-candidates, |%_);
die "Something went terribly wrong determining the build order" unless +@sorted-candidates;
# Setup(?) Phase:
# Attach appropriate metadata so we can do --dry runs using -I/some/dep/path
# and can install after we know they pass any required tests
my @linked-candidates = self.link-candidates(@sorted-candidates);
die "Something went terribly wrong linking the distributions" unless +@linked-candidates;
my $installer = sub (*@_) {
# Build Phase:
my @built-candidates = ?$build ?? self.build(@_) !! @_;
die "No installable candidates remain after `build` failures" unless +@built-candidates;
# Test Phase:
my @tested-candidates = !$test
?? @built-candidates
!! self.test(@built-candidates).grep({ $!force-test || .test-results.grep(!*.so).elems == 0 });
# actually we *do* want to proceed here later so that the Report phase can know about the failed tests/build
die "All candidates failed building and/or testing. No reason to proceed" unless +@tested-candidates;
# Install Phase:
# Ideally `--dry` uses a special unique CompUnit::Repository that is meant to be deleted entirely
# and contain only the modules needed for this specific run/plan
my @installed-candidates = ?$dry ?? @tested-candidates !! self.install(:@curs, @tested-candidates);
# Report phase:
# Handle exit codes for various option permutations like --force
# Inform user of what was tested/built/installed and what failed
# Optionally report to any cpan testers type service (testers.perl6.org)
unless $dry {
# Get the name of the bin scripts
my sub bin-names($dist) { $dist.meta<files>.hash.keys.grep(*.starts-with("bin/")).map(*.substr(4)) };
if @installed-candidates.map(*.dist).map(*.&bin-names.Slip).unique -> @bins {
my $msg = "\n{+@bins} bin/ script{+@bins>1??'s'!!''}{+@bins??' ['~@bins~']'!!''} installed to:"
~ "\n" ~ @curs.map(*.prefix.child('bin')).join("\n");
self.logger.emit({
level => INFO,
stage => REPORT,
phase => LIVE,
message => $msg,
});
}
}
@installed-candidates;
} # sub installer
my Candidate @installed = ?$serial ?? @linked-candidates.map({ |$installer($_) }) !! $installer(@linked-candidates);
return @installed;
}
#| Return distributions that depend on the given identity
method list-rev-depends($identity, Bool :indirect($) --> Array[Candidate]) {
my $spec = Zef::Distribution::DependencySpecification.new($identity);
my $dist = self.list-available.first(*.dist.contains-spec($spec)).?dist
|| self.list-installed.first(*.dist.contains-spec($spec)).?dist;
return Array[Candidate].new unless $dist;
my $rev-deps := gather for self.list-available -> $candi {
my $specs := self.list-dependencies($candi);
take $candi if $specs.first({ $dist.contains-spec($_, :strict) });
}
my Candidate @results = $rev-deps.unique(:as(*.dist.identity));
return @results;
}
#| Return all distributions from all configured repositories
method list-available(*@recommendation-manager-names --> Array[Candidate]) {
my Candidate @available = $!recommendation-manager.available(@recommendation-manager-names);
return @available;
}
#| Return all distributions in known CompUnit::Repository::Installation repositories
method list-installed(*@repos --> Array[Candidate]) {
my @curs = +@repos ?? @repos !! $*REPO.repo-chain;
my @curis = @curs.grep(CompUnit::Repository::Installation);
my @curi-dists = @curis.map(-> $curi { Hash.new({ :$curi, :dists($curi.installed) }) }).grep({ $_<dists>.defined });
my Candidate @dists = gather for @curi-dists -> % [:$curi, :@dists] {
for @dists -> $curi-dist {
if try { Zef::Distribution.new( |%($curi-dist.meta) ) } -> $dist {
take Candidate.new( :$dist, :from($curi), :uri($curi.path-spec) );
}
}
}
return @dists;
}
method list-leaves(--> Array[Candidate]) {
my @installed = self.list-installed;
my @dep-specs = self.list-dependencies(@installed);
my Candidate @leaves = gather for @installed -> $candi {
my $dist := $candi.dist;
take $candi unless @dep-specs.first: { $dist.contains-spec($_) }
}
return @leaves;
}
#| Return distributions that are direct dependencies of the supplied distributions
method list-dependencies(*@candis --> Array[DependencySpecification]) {
my $deps := gather for @candis -> $candi {
take $_ for grep *.defined,
($candi.dist.depends-specs if ?$!depends).Slip,
($candi.dist.test-depends-specs if ?$!test-depends).Slip,
($candi.dist.build-depends-specs if ?$!build-depends).Slip;
}
# This returns both Zef::Distribution::DependencySpecification and Zef::Distribution::DependencySpecification::Any
#my Zef::Distribution::DependencySpecification @results = $deps.unique(:as(*.identity));
my DependencySpecification @results = $deps.unique(:as(*.identity));
return @results;
}
#| Returns the best matching distributions from installed sources, in preferred order, similar to $*REPO.resolve
method resolve($spec, CompUnit::Repository :@at --> Array[Candidate]) {
my $candis := self.list-installed(@at).grep(*.dist.contains-spec($spec));
my Candidate @results = $candis.sort(*.dist.ver).sort(*.dist.api).reverse;
return @results;
}
#| Return true if the requested dependency is already installed
multi method is-installed(Str $spec, |c --> Bool:D) {
return self.is-installed(Zef::Distribution::DependencySpecification.new($spec));
}
#| Return true of one-or-more of the requested dependencies are already installed
multi method is-installed(Zef::Distribution::DependencySpecification::Any $spec, |c --> Bool:D) {
return so $spec.specs.first({ self.is-installed($_, |c) });
}
#| Return true if the requested dependency is already installed
multi method is-installed(Zef::Distribution::DependencySpecification $spec, |c --> Bool:D) {
return do given $spec.?from-matcher {
when 'bin' { so Zef::Utils::FileSystem::which($spec.name) }
when 'native' { so self!native-library-is-installed($spec) }
default { so self.resolve($spec, |c).so }
}
}
#| Return true of a native library can be seen by NativeCall
method !native-library-is-installed($spec --> Bool) {
use MONKEY-SEE-NO-EVAL;
my $lib = "'$spec.name()'";
$lib = "$lib, v$spec.ver()" if $spec.ver;
try {
EVAL qq[use NativeCall; sub native_library_is_installed is native($lib) \{ !!! \}; native_library_is_installed(); ];
CATCH { default { return False if .payload.starts-with("Cannot locate native library") } }
}
return True;
}
#| Topological sort used to determine which dependency can be processed next in a given phase
method sort-candidates(@candis --> Array[Candidate]) {
my Candidate @tree;
my $visit = sub ($candi) {
return if ($candi.dist.metainfo<marked> // 0) == 1;
if ($candi.dist.metainfo<marked> // 0) == 0 {
$candi.dist.metainfo<marked> = 1;
my @deps = |self.list-dependencies($candi);
for @deps -> $m {
for @candis.grep(*.dist.contains-spec($m)) -> $m2 {
$visit($m2);
}
}
@tree.append($candi);
}
};
for @candis -> $candi {
$visit($candi) if ($candi.dist.metainfo<marked> // 0) == 0;
}
.dist.metainfo<marked> = Nil for @tree;
return @tree;
}
#| Adds appropriate include (-I / PERL6LIB) paths for dependencies
proto method link-candidates(|) {*}
multi method link-candidates(Bool :recursive($)! where *.so, *@candidates) {
# :recursive
# Given Foo::XXX that depends on Bar::YYY that depends on Baz::ZZZ
# - Foo::XXX -> -I/Foo/XXX -I/Bar/YYY -I/Baz/ZZZ
# - Bar::YYY -> -I/Bar/YYY -I/Baz/ZZZ
# - Baz::ZZZ -> -I/Baz/ZZZ
# XXX: Need to change this so it only add indirect dependencies
# instead of just using recursion on the array in order. Otherwise there
# can be distributions that are part of a different dependency
# chain will end up with some extra includes
my @linked = self.link-candidates(@candidates);
@ = @linked.map: -> $candi { # can probably use rotor instead of doing the `@a[$index + 1..*]` dance
my @direct-includes = $candi.dist.metainfo<includes>.grep(*.so);
my @recursive-includes = try @linked[(++$)..*]\
.map(*.dist.metainfo<includes>).flatmap(*.flat);
my @unique-includes = unique(@direct-includes, @recursive-includes);
my Str @results = @unique-includes.grep(*.so);
$candi.dist.metainfo<includes> = @results;
$candi;
}
}
multi method link-candidates(Bool :inclusive($)! where *.so, *@candidates) {
# :inclusive
# Given Foo::XXX that depends on Bar::YYY that depends on Baz::ZZZ
# - Foo::XXX -> -I/Foo/XXX -I/Bar/YYY -I/Baz/ZZZ
# - Bar::YYY -> -I/Foo/XXX -I/Bar/YYY -I/Baz/ZZZ
# - Baz::ZZZ -> -I/Foo/XXX -I/Bar/YYY -I/Baz/ZZZ
my @linked = self.link-candidates(@candidates);
@ = @linked.map(*.dist.metainfo<includes>).flatmap(*.flat).unique;
}
multi method link-candidates(*@candidates) {
# Default
# Given Foo::XXX that depends on Bar::YYY that depends on Baz::ZZZ
# - Foo::XXX -> -I/Foo/XXX -I/Bar/YYY
# - Bar::YYY -> -I/Bar/YYY -I/Baz/ZZZ
# - Baz::ZZZ -> -I/Baz/ZZZ
@ = @candidates.map: -> $candi {
my @dep-specs = |self.list-dependencies($candi);
# this could probably be done in the topological-sort itself
my $includes := eager gather for @dep-specs -> $spec {
CANDIDATE: for @candidates -> $fcandi {
my $fdist := $fcandi.dist;
if $fdist.contains-spec($spec) {
take $fdist.IO.absolute;
take $_ for |$fdist.metainfo<includes>.grep(*.so);
last CANDIDATE;
}
}
}
my Str @results = $includes.unique;
$candi.dist.metainfo<includes> = @results;
$candi;
}
}
}
|