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
|
package Module::Faker::Dist 0.027;
# ABSTRACT: a fake CPAN distribution
use v5.20.0;
use Moose;
use Module::Faker::File;
use Module::Faker::Heavy;
use Module::Faker::Package;
use Module::Faker::Module;
use Archive::Any::Create;
use CPAN::DistnameInfo;
use CPAN::Meta 2.130880; # github issue #9
use CPAN::Meta::Converter;
use CPAN::Meta::Merge;
use CPAN::Meta::Requirements;
use Data::OptList ();
use Encode qw( encode_utf8 );
use File::Temp ();
use File::Path ();
use Parse::CPAN::Meta 1.4401;
use Path::Class;
use Storable qw(dclone);
#pod =head1 SYNOPSIS
#pod
#pod Building one dist at a time makes plenty of sense, so Module::Faker::Dist makes
#pod it easy. Building dists from definitions in files is also useful for doing
#pod things in bulk (see L<CPAN::Faker>), so there are a bunch of ways to build
#pod dists from a definition in a file.
#pod
#pod # Build from a META.yml or META.json file, or the delightful
#pod # AUTHOR_Foo-Bar-1.234.tar.gz.dist file, which can be zero bytes and gets
#pod # all the relevant data from the filename.
#pod my $dist = Module::Faker::Dist->from_file($filename);
#pod
#pod META files can contain a key called X_Module_Faker that contains attributes to
#pod use in constructing the dist. C<dist> files can contain anything you want, but
#pod the contents won't do a thing.
#pod
#pod You can use the C<new> method on Module::Faker::Dist, of course, but it's a bit
#pod of a pain. You might, instead, want to use C<from_struct>, which is very close
#pod to C<new>, but with more sugar.
#pod
#pod =cut
#pod =attr name
#pod
#pod This is the name of the dist. It will usually look like C<Foo-Bar>.
#pod
#pod =attr version
#pod
#pod This is the version of the dist, usually some kind of versiony string like
#pod C<1.234> or maybe C<1.2.3>.
#pod
#pod =attr abstract
#pod
#pod The abstract! This is a short, pithy description of the distribution, usually
#pod less than a sentence.
#pod
#pod =attr release_status
#pod
#pod This is the dist's release status. (See L<CPAN::Meta::Spec>.) It defaults to
#pod C<stable> but C<unstable> and C<testing> are valid values.
#pod
#pod =cut
my $DEFAULT_VERSION;
# required by CPAN::Meta::Spec
has name => (is => 'ro', isa => 'Str', required => $DEFAULT_VERSION);
has version => (is => 'ro', isa => 'Maybe[Str]', default => '0.01');
has abstract => (is => 'ro', isa => 'Str', default => 'a great new dist');
has release_status => (is => 'ro', isa => 'Str', default => 'stable');
#pod =attr cpan_author
#pod
#pod This is the PAUSE id of the author, like C<RJBS>.
#pod
#pod =attr archive_ext
#pod
#pod This is the extension of the archive to build, when you build an archive. This
#pod defaults to C<tar.gz>. C<zip> works. Other things might. Try it and find
#pod out.
#pod
#pod =attr append
#pod
#pod This is an arrayref of hashrefs, each of which looks like:
#pod
#pod { file => $filename, content => $character_string }
#pod
#pod The content will be UTF-8 encoded and put into a file with the given name.
#pod
#pod This feature is a bit weird. Maybe it will go away eventually.
#pod
#pod =attr mtime
#pod
#pod If given, this is the epoch seconds to which to set the mtime of the generated
#pod file. This is useful in rare occasions.
#pod
#pod =cut
# Module::Faker options
has cpan_author => (is => 'ro', isa => 'Maybe[Str]', default => 'LOCAL');
has archive_ext => (is => 'ro', isa => 'Str', default => 'tar.gz');
has append => (is => 'ro', isa => 'ArrayRef[HashRef]', default => sub {[]});
has mtime => (is => 'ro', isa => 'Int', predicate => 'has_mtime');
#pod =attr x_authority
#pod
#pod This is the C<X_Authority> header that gets put into the META files.
#pod
#pod =cut
has x_authority => (is => 'ro', isa => 'Str');
#pod =attr license
#pod
#pod This is the meta spec license string for the distribution. It defaults to
#pod C<perl_5>.
#pod
#pod =cut
has license => (
is => 'ro',
isa => 'ArrayRef[Str]',
default => sub { [ 'perl_5' ] },
);
#pod =attr authors
#pod
#pod This is an array of strings who are used as the authors in the dist metadata.
#pod The default is:
#pod
#pod [ "AUTHOR <AUTHOR@cpan.local>" ]
#pod
#pod ...where C<AUTHOR> is the C<cpan_author> of the dist.
#pod
#pod =cut
has authors => (
isa => 'ArrayRef[Str]',
lazy => 1,
traits => [ 'Array' ],
handles => { authors => 'elements' },
default => sub {
my ($self) = @_;
return [ sprintf '%s <%s@cpan.local>', ($self->cpan_author) x 2 ];
},
);
#pod =attr include_provides_in_meta
#pod
#pod This is a bool. If true, the produced META files will include a C<provides>
#pod key based on the packages in the dist. It defaults to false, to match the
#pod most common behavior of dists in the wild.
#pod
#pod =cut
has include_provides_in_meta => (
is => 'ro',
isa => 'Bool',
default => 0,
);
#pod =attr provides
#pod
#pod This is a hashref that gets used as the C<provides> in the metadata.
#pod
#pod If not provided, it is built from the C<packages> provided in construction.
#pod
#pod If no packages were provided, for a dist named Foo-Bar, it defaults to:
#pod
#pod { 'Foo::Bar' => { version => $DIST_VERSION, file => "lib/Foo/Bar.pm" } }
#pod
#pod =cut
has provides => (
is => 'ro',
isa => 'HashRef',
lazy_build => 1,
);
sub _build_provides {
my ($self) = @_;
if ($self->has_packages) {
return {
map {; $_->name => {
file => $_->in_file,
(defined $_->version ? (version => $_->version) : ()),
} } $self->packages
}
}
my $pkg = __dist_to_pkg($self->name);
return {
$pkg => {
version => $self->version,
file => __pkg_to_file($pkg),
}
};
};
sub __dor { defined $_[0] ? $_[0] : $_[1] }
sub append_for {
my ($self, $filename) = @_;
return [
# YAML and JSON should both be in utf8 (if not plain ascii)
map { encode_utf8($_->{content}) }
grep { $filename eq $_->{file} }
@{ $self->append }
];
}
#pod =attr archive_basename
#pod
#pod If written to disk, the archive will be written to...
#pod
#pod $dist->archive_basename . '.' . $dist->archive_ext
#pod
#pod The default is:
#pod
#pod $dist->name . '.' . ($dist->version // 'undef')
#pod
#pod =cut
has archive_basename => (
is => 'ro',
isa => 'Str',
lazy => 1,
default => sub {
my ($self) = @_;
return sprintf '%s-%s', $self->name, __dor($self->version, 'undef');
},
);
#pod =attr omitted_files
#pod
#pod If given, this is an arrayref of filenames that shouldn't be automatically
#pod generated and included.
#pod
#pod =cut
has omitted_files => (
isa => 'ArrayRef[Str]',
traits => [ 'Array' ],
handles => { omitted_files => 'elements' },
lazy => 1,
default => sub { [] },
);
sub __dist_to_pkg { my $str = shift; $str =~ s/-/::/g; return $str; }
sub __pkg_to_file { my $str = shift; $str =~ s{::}{/}g; return "lib/$str.pm"; }
# This is stupid, but copes with MakeMaker wanting to have a module name as its
# NAME parameter. Ugh! -- rjbs, 2008-03-13
sub _pkgy_name {
my $name = shift->name;
$name =~ s/-/::/g;
return $name;
}
#pod =attr packages
#pod
#pod This is an array of L<Module::Faker::Package> objects. It's built by
#pod C<provides> if needed, but you might want to look at using the
#pod C<L</from_struct>> method to set it up.
#pod
#pod =cut
has packages => (
isa => 'Module::Faker::Type::Packages',
lazy => 1,
builder => '_build_packages',
traits => [ 'Array' ],
handles => { packages => 'elements' },
predicate => 'has_packages',
);
sub _build_packages {
my ($self) = @_;
my $provides = $self->provides;
# do this dance so we don't autovivify X_Module_Faker in provides
my %package_order = map {;
$_ => (exists $provides->{$_}{X_Module_Faker} ? $provides->{$_}{X_Module_Faker}{order} : 0 )
} keys %$provides;
my @pkg_names = do {
no warnings 'uninitialized';
sort { $package_order{$a} <=> $package_order{$b} } keys %package_order;
};
my @packages;
for my $name (@pkg_names) {
push @packages, Module::Faker::Package->new({
name => $name,
version => $provides->{$name}{version},
in_file => $provides->{$name}{file},
($provides->{$name}{style} ? (style => $provides->{$name}{style}) : ()),
});
}
return \@packages;
}
#pod =method modules
#pod
#pod This produces and returns a list of L<Module::Faker::Module> objects,
#pod representing modules. Modules, if you're not as steeped in CPAN toolchain
#pod nonsense, are the C<.pm> files in which packages are defined.
#pod
#pod These are produced by combining the packages from C<L</packages>> into files
#pod based on their C<in_file> attributes.
#pod
#pod =cut
sub modules {
my ($self) = @_;
my %module;
for my $pkg ($self->packages) {
my $filename = $pkg->in_file;
push @{ $module{ $filename } ||= [] }, $pkg;
}
my @modules = map {
Module::Faker::Module->new({
packages => $module{$_},
filename => $_,
append => $self->append_for($_)
});
} keys %module;
return @modules;
}
sub _mk_container_path {
my ($self, $filename) = @_;
my (@parts) = File::Spec->splitdir($filename);
my $leaf_filename = pop @parts;
File::Path::mkpath(File::Spec->catdir(@parts));
}
#pod =method C<make_dist_dir>
#pod
#pod my $directory_name = $dist->make_dist_dir(\%arg);
#pod
#pod This returns the name of a directory into which the dist's contents have been
#pod written. If a C<dir> argument is provided, the dist will be written to a
#pod directory beneath that dir. Otherwise, it will be written below a temporary
#pod directory.
#pod
#pod =cut
sub make_dist_dir {
my ($self, $arg) = @_;
$arg ||= {};
my $dir = $arg->{dir} || File::Temp::tempdir;
my $dist_dir = File::Spec->catdir($dir, $self->archive_basename);
for my $file ($self->files) {
my $fqfn = File::Spec->catfile($dist_dir, $file->filename);
$self->_mk_container_path($fqfn);
open my $fh, '>', $fqfn or die "couldn't open $fqfn for writing: $!";
print $fh $file->as_string;
close $fh or die "error when closing $fqfn: $!";
}
return $dist_dir;
}
sub _author_dir_infix {
my ($self) = @_;
Carp::croak "can't put archive in author dir with no author defined"
unless my $pauseid = $self->cpan_author;
# Sorta like pow- pow- power-wheels! -- rjbs, 2008-03-14
my ($pa, $p) = $pauseid =~ /^((.).)/;
return ($p, $pa, $pauseid);
}
sub archive_filename {
my ($self, $arg) = @_;
my $base = $self->archive_basename;
my $ext = $self->archive_ext;
return File::Spec->catfile(
($arg->{author_prefix} ? $self->_author_dir_infix : ()),
"$base.$ext",
);
}
#pod =method make_archive
#pod
#pod my $archive_filename = $dist->make_archive(\%arg);
#pod
#pod This writes the dist archive file, like a tarball or zip file. If a C<dir>
#pod argument is given, it will be written in that directory. Otherwise, it will be
#pod written to a temporary directory. If the C<author_prefix> argument is given
#pod and true, it will be written under a hashed author dir, like:
#pod
#pod U/US/USERID/Foo-Bar-1.23.tar.gz
#pod
#pod =cut
package
Module::Faker::Dist::ZipCreator {
use parent 'Archive::Any::Create::Zip';
sub add_file {
my $self = shift;
my($file, $data) = @_;
my $member = $self->SUPER::add_file($file, $data);
$member->unixFileAttributes(0644);
return $member;
}
}
sub make_archive {
my ($self, $arg) = @_;
$arg ||= {};
my $dir = $arg->{dir} || File::Temp::tempdir;
# This is, admittedly, sort of bananas. We're doing this because by default,
# Archive::Any::Create would make the files a+w. PAUSE will reject uploaded
# archives with files like that, and we want these archives to be useful for
# testing PAUSE.
local $Archive::Any::Create::Type2Class{zip} = [
'Module::Faker::Dist::ZipCreator'
];
local $INC{'Module/Faker/Dist/ZipCreator.pm'} = 1;
my $archive = Archive::Any::Create->new;
my $container = $self->archive_basename;
$archive->container($container);
for my $file ($self->files) {
$archive->add_file($file->filename, $file->as_string);
}
my $archive_filename = File::Spec->catfile(
$dir,
$self->archive_filename({ author_prefix => $arg->{author_prefix} })
);
$self->_mk_container_path($archive_filename);
$archive->write_file($archive_filename);
utime time, $self->mtime, $archive_filename if $self->has_mtime;
return $archive_filename;
}
sub files {
my ($self) = @_;
my @files = ($self->modules, $self->_extras, $self->_manifest_file);
for my $file (@{$self->append}) {
next if grep { $_->filename eq $file->{file} } @files;
push(@files,
$self->_file_class->new(
filename => $file->{file},
content => '',
append => $self->append_for($file->{file}),
) );
}
return @files;
}
sub _file_class { 'Module::Faker::File' }
around BUILDARGS => sub {
my ($orig, $self, @rest) = @_;
my $arg = $self->$orig(@rest);
confess "can't supply both requires and prereqs"
if $arg->{prereqs} && $arg->{requires};
if ($arg->{requires}) {
$arg->{prereqs} = {
runtime => { requires => delete $arg->{requires} }
};
}
return $arg;
};
sub BUILD {
my ($self) = @_;
my $provides = $self->provides;
$provides->{$_}{file} //= __pkg_to_file($_) for keys %$provides;
}
has prereqs => (
is => 'ro',
isa => 'HashRef',
default => sub { {} },
);
has _manifest_file => (
is => 'ro',
isa => 'Module::Faker::File',
lazy => 1,
default => sub {
my ($self) = @_;
my @files = ($self->modules, $self->_extras);
return $self->_file_class->new({
filename => 'MANIFEST',
content => join("\n",
'MANIFEST',
map { $_->filename } @files
),
});
},
);
#pod =attr more_metadata
#pod
#pod This can be given as a hashref of data to merge into the CPAN::Meta files.
#pod
#pod =cut
has more_metadata => (
is => 'ro',
isa => 'HashRef',
predicate => 'has_more_metadata',
);
#pod =attr meta_munger
#pod
#pod If given, this is a coderef that's called just before the CPAN::Meta data for
#pod the dist is written to disk, an can be used to change things, especially into
#pod invalid data. It is expected to return the new content to serialize.
#pod
#pod It's called like this:
#pod
#pod $coderef->($struct, { format => $format, version => $version });
#pod
#pod ...where C<$struct> is the result of C<< $cpan_meta->as_struct >>.
#pod C<$version> is the version number of the target metafile. Normally, both
#pod version 1.4 and 2 are requested. C<$format> is either C<yaml> or C<json>.
#pod
#pod If the munger returns a string instead of a structure, it will be used as the
#pod content of the file being written. This lets you put all kinds of nonsense in
#pod those meta files. Have fun, go nuts!
#pod
#pod =cut
has meta_munger => (
isa => 'CodeRef',
predicate => 'has_meta_munger',
traits => [ 'Code' ],
handles => { munge_meta => 'execute' },
);
has _cpan_meta => (
is => 'ro',
isa => 'CPAN::Meta',
lazy_build => 1,
);
sub _build__cpan_meta {
my ($self) = @_;
my $meta = {
'meta-spec' => { version => '2' },
dynamic_config => 0,
author => [ $self->authors ], # plural attribute that derefs
};
# required fields
for my $key ( qw/abstract license name release_status version/ ) {
$meta->{$key} = $self->$key;
}
# optional fields
for my $key ( qw/prereqs x_authority/ ) {
my $value = $self->$key;
$meta->{$key} = $value if $value;
}
if ($self->provides && $self->include_provides_in_meta) {
$meta->{provides} = $self->provides;
}
my $cpanmeta = CPAN::Meta->new( $meta, {lazy_validation => 1} );
return $cpanmeta unless $self->has_more_metadata;
return CPAN::Meta->new(
CPAN::Meta::Merge->new(default_version => 2)->merge(
$cpanmeta,
$self->more_metadata,
),
{ lazy_validation => 1 }
);
}
has _extras => (
isa => 'ArrayRef[Module::Faker::File]',
lazy => 1,
traits => [ 'Array' ],
handles => { _extras => 'elements' },
default => sub {
my ($self) = @_;
my @files;
for my $filename (qw(Makefile.PL t/00-nop.t)) {
next if grep { $_ eq $filename } $self->omitted_files;
push @files, $self->_file_class->new({
filename => $filename,
content => Module::Faker::Heavy->_render(
$filename,
{ dist => $self },
),
});
}
unless ( grep { $_ eq 'META.json' } $self->omitted_files ) {
push @files, $self->_file_class->new({
filename => 'META.json',
content => $self->_meta_file_content(json => 2),
});
}
unless ( grep { $_ eq 'META.yml' } $self->omitted_files ) {
push @files, $self->_file_class->new({
filename => 'META.yml',
content => $self->_meta_file_content(yaml => 1.4),
});
}
return \@files;
},
);
# This code is based on the code in CPAN::Meta v2.150010
# -- rjbs, 2019-04-28
sub _meta_file_content {
my ($self, $format, $version) = @_;
my $meta = $self->_cpan_meta;
my $struct;
if ($meta->meta_spec_version ne $version) {
$struct = CPAN::Meta::Converter->new($meta->as_struct)
->convert(version => $version);
} else {
$struct = $meta->as_struct;
}
if ($self->has_meta_munger) {
# Is that dclone() paranoia? Maybe. -- rjbs, 2019-04-28
$struct = $self->munge_meta(
dclone($struct),
{
format => $format,
version => $version
},
);
return $struct unless ref $struct;
}
my ($data, $backend);
if ($format eq 'json') {
$backend = Parse::CPAN::Meta->json_backend();
local $struct->{x_serialization_backend} = sprintf '%s version %s',
$backend, $backend->VERSION;
$data = $backend->new->pretty->canonical->encode($struct);
} elsif ($format eq 'yaml') {
$backend = Parse::CPAN::Meta->yaml_backend();
local $struct->{x_serialization_backend} = sprintf '%s version %s',
$backend, $backend->VERSION;
$data = eval { no strict 'refs'; &{"$backend\::Dump"}($struct) };
if ( $@ ) {
croak($backend->can('errstr') ? $backend->errstr : $@);
}
} else {
confess "unknown meta format: $format"
}
return $data;
}
#pod =method from_file
#pod
#pod my $dist = Module::Faker::Dist->from_file($filename);
#pod
#pod Given a filename with dist configuration, this builds the dist described by the
#pod file.
#pod
#pod Given a file ending in C<yaml> or C<yml> or C<json>, it's treated as a
#pod CPAN::Meta file and interpreted as such. The key C<X_Module_Faker> can be
#pod present to provide attributes that don't match data found in a meta file.
#pod
#pod Given a file ending in C<dist>, all the configuration comes from the filename,
#pod which should look like this:
#pod
#pod AUTHOR_Dist-Name-1.234.tar.gz.dist
#pod
#pod =cut
# TODO: make this a registry -- rjbs, 2008-03-12
my %HANDLER_FOR = (
yaml => '_from_meta_file',
yml => '_from_meta_file',
json => '_from_meta_file',
dist => '_from_distnameinfo'
);
sub from_file {
my ($self, $filename) = @_;
my ($ext) = $filename =~ /.*\.(.+?)\z/;
Carp::croak "don't know how to handle file $filename"
unless $ext and my $method = $HANDLER_FOR{$ext};
$self->$method($filename);
}
sub _from_distnameinfo {
my ($self, $filename) = @_;
$filename = file($filename)->basename;
$filename =~ s/\.dist$//;
my ($author, $path) = split /_/, $filename, 2;
my $dni = CPAN::DistnameInfo->new($path);
return $self->new({
name => $dni->dist,
version => $dni->version,
abstract => sprintf('the %s dist', $dni->dist),
archive_ext => $dni->extension,
cpan_author => $author,
});
}
sub _from_meta_file {
my ($self, $filename) = @_;
my $data = Parse::CPAN::Meta->load_file($filename);
my $extra = (delete $data->{X_Module_Faker}) || {};
my $dist = $self->new({ %$data, %$extra });
}
sub _flat_prereqs {
my ($self) = @_;
my $prereqs = $self->_cpan_meta->effective_prereqs;
my $req = CPAN::Meta::Requirements->new;
for my $phase ( qw/runtime build test/ ) {
$req->add_requirements( $prereqs->requirements_for( $phase, 'requires' ) );
}
return %{ $req->as_string_hash };
}
#pod =method from_struct
#pod
#pod my $dist = Module::Faker::Dist->from_struct(\%arg);
#pod
#pod This is sugar over C<new>, working like this:
#pod
#pod =for :list
#pod * packages version defaults to the dist version unless specified
#pod * packages for dist Foo-Bar defaults to Foo::Bar unless specified
#pod * if specified, packages is an L<optlist|Data::OptList>
#pod
#pod =cut
sub from_struct {
my ($self, $arg) = @_;
my $version = exists $arg->{version} ? $arg->{version} : $DEFAULT_VERSION;
my $specs = Data::OptList::mkopt(
! exists $arg->{packages} ? [ __dist_to_pkg($arg->{name}) ]
: ref $arg->{packages} ? $arg->{packages}
: defined $arg->{packages} ? [ $arg->{packages} ]
: ()
);
my @packages;
for my $spec (@$specs) {
my %spec = $spec->[1] ? %{ $spec->[1] } : ();
push @packages, Module::Faker::Package->new({
name => $spec->[0],
in_file => __pkg_to_file($spec->[0]), # to be overridden below if needed
%spec,
version => (exists $spec{version} ? $spec{version} : $version),
});
}
return $self->new({
%$arg,
version => $version,
packages => \@packages,
});
}
1;
# vim: ts=2 sts=2 sw=2 et:
__END__
=pod
=encoding UTF-8
=head1 NAME
Module::Faker::Dist - a fake CPAN distribution
=head1 VERSION
version 0.027
=head1 SYNOPSIS
Building one dist at a time makes plenty of sense, so Module::Faker::Dist makes
it easy. Building dists from definitions in files is also useful for doing
things in bulk (see L<CPAN::Faker>), so there are a bunch of ways to build
dists from a definition in a file.
# Build from a META.yml or META.json file, or the delightful
# AUTHOR_Foo-Bar-1.234.tar.gz.dist file, which can be zero bytes and gets
# all the relevant data from the filename.
my $dist = Module::Faker::Dist->from_file($filename);
META files can contain a key called X_Module_Faker that contains attributes to
use in constructing the dist. C<dist> files can contain anything you want, but
the contents won't do a thing.
You can use the C<new> method on Module::Faker::Dist, of course, but it's a bit
of a pain. You might, instead, want to use C<from_struct>, which is very close
to C<new>, but with more sugar.
=head1 PERL VERSION
This module should work on any version of perl still receiving updates from
the Perl 5 Porters. This means it should work on any version of perl
released in the last two to three years. (That is, if the most recently
released version is v5.40, then this module should work on both v5.40 and
v5.38.)
Although it may work on older versions of perl, no guarantee is made that the
minimum required version will not be increased. The version may be increased
for any reason, and there is no promise that patches will be accepted to
lower the minimum required perl.
=head1 ATTRIBUTES
=head2 name
This is the name of the dist. It will usually look like C<Foo-Bar>.
=head2 version
This is the version of the dist, usually some kind of versiony string like
C<1.234> or maybe C<1.2.3>.
=head2 abstract
The abstract! This is a short, pithy description of the distribution, usually
less than a sentence.
=head2 release_status
This is the dist's release status. (See L<CPAN::Meta::Spec>.) It defaults to
C<stable> but C<unstable> and C<testing> are valid values.
=head2 cpan_author
This is the PAUSE id of the author, like C<RJBS>.
=head2 archive_ext
This is the extension of the archive to build, when you build an archive. This
defaults to C<tar.gz>. C<zip> works. Other things might. Try it and find
out.
=head2 append
This is an arrayref of hashrefs, each of which looks like:
{ file => $filename, content => $character_string }
The content will be UTF-8 encoded and put into a file with the given name.
This feature is a bit weird. Maybe it will go away eventually.
=head2 mtime
If given, this is the epoch seconds to which to set the mtime of the generated
file. This is useful in rare occasions.
=head2 x_authority
This is the C<X_Authority> header that gets put into the META files.
=head2 license
This is the meta spec license string for the distribution. It defaults to
C<perl_5>.
=head2 authors
This is an array of strings who are used as the authors in the dist metadata.
The default is:
[ "AUTHOR <AUTHOR@cpan.local>" ]
...where C<AUTHOR> is the C<cpan_author> of the dist.
=head2 include_provides_in_meta
This is a bool. If true, the produced META files will include a C<provides>
key based on the packages in the dist. It defaults to false, to match the
most common behavior of dists in the wild.
=head2 provides
This is a hashref that gets used as the C<provides> in the metadata.
If not provided, it is built from the C<packages> provided in construction.
If no packages were provided, for a dist named Foo-Bar, it defaults to:
{ 'Foo::Bar' => { version => $DIST_VERSION, file => "lib/Foo/Bar.pm" } }
=head2 archive_basename
If written to disk, the archive will be written to...
$dist->archive_basename . '.' . $dist->archive_ext
The default is:
$dist->name . '.' . ($dist->version // 'undef')
=head2 omitted_files
If given, this is an arrayref of filenames that shouldn't be automatically
generated and included.
=head2 packages
This is an array of L<Module::Faker::Package> objects. It's built by
C<provides> if needed, but you might want to look at using the
C<L</from_struct>> method to set it up.
=head2 more_metadata
This can be given as a hashref of data to merge into the CPAN::Meta files.
=head2 meta_munger
If given, this is a coderef that's called just before the CPAN::Meta data for
the dist is written to disk, an can be used to change things, especially into
invalid data. It is expected to return the new content to serialize.
It's called like this:
$coderef->($struct, { format => $format, version => $version });
...where C<$struct> is the result of C<< $cpan_meta->as_struct >>.
C<$version> is the version number of the target metafile. Normally, both
version 1.4 and 2 are requested. C<$format> is either C<yaml> or C<json>.
If the munger returns a string instead of a structure, it will be used as the
content of the file being written. This lets you put all kinds of nonsense in
those meta files. Have fun, go nuts!
=head1 METHODS
=head2 modules
This produces and returns a list of L<Module::Faker::Module> objects,
representing modules. Modules, if you're not as steeped in CPAN toolchain
nonsense, are the C<.pm> files in which packages are defined.
These are produced by combining the packages from C<L</packages>> into files
based on their C<in_file> attributes.
=head2 C<make_dist_dir>
my $directory_name = $dist->make_dist_dir(\%arg);
This returns the name of a directory into which the dist's contents have been
written. If a C<dir> argument is provided, the dist will be written to a
directory beneath that dir. Otherwise, it will be written below a temporary
directory.
=head2 make_archive
my $archive_filename = $dist->make_archive(\%arg);
This writes the dist archive file, like a tarball or zip file. If a C<dir>
argument is given, it will be written in that directory. Otherwise, it will be
written to a temporary directory. If the C<author_prefix> argument is given
and true, it will be written under a hashed author dir, like:
U/US/USERID/Foo-Bar-1.23.tar.gz
=head2 from_file
my $dist = Module::Faker::Dist->from_file($filename);
Given a filename with dist configuration, this builds the dist described by the
file.
Given a file ending in C<yaml> or C<yml> or C<json>, it's treated as a
CPAN::Meta file and interpreted as such. The key C<X_Module_Faker> can be
present to provide attributes that don't match data found in a meta file.
Given a file ending in C<dist>, all the configuration comes from the filename,
which should look like this:
AUTHOR_Dist-Name-1.234.tar.gz.dist
=head2 from_struct
my $dist = Module::Faker::Dist->from_struct(\%arg);
This is sugar over C<new>, working like this:
=over 4
=item *
packages version defaults to the dist version unless specified
=item *
packages for dist Foo-Bar defaults to Foo::Bar unless specified
=item *
if specified, packages is an L<optlist|Data::OptList>
=back
=head1 AUTHOR
Ricardo Signes <cpan@semiotic.systems>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2008 by Ricardo Signes.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|