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
|
# ABSTRACT: Moose types used within Pinto
package Pinto::Types;
use strict;
use warnings;
use version;
use MooseX::Types -declare => [
qw( AuthorID Username Uri Dir File FileList Io Version
StackName StackAll StackDefault PropertyName PkgSpec
PkgSpecList StackObject DistSpec DistSpecList
Spec SpecList RevisionID RevisionHead
ANSIColor ANSIColorSet PerlVersion)
];
use MooseX::Types::Moose qw( Str Num ScalarRef ArrayRef Undef
HashRef FileHandle Object Int );
use URI;
use Path::Class::Dir;
use Path::Class::File;
use Term::ANSIColor;
use Module::CoreList;
use IO::String;
use IO::Handle;
use IO::File;
use Pinto::SpecFactory;
use Pinto::Constants qw(:all);
#-----------------------------------------------------------------------------
our $VERSION = '0.097'; # VERSION
#-----------------------------------------------------------------------------
subtype AuthorID, as Str,
where { $_ =~ $PINTO_AUTHOR_REGEX },
message { 'The author id (' . ( defined() ? $_ : 'undef' ) . ') must match /^[A-Z]{2}[-A-Z0-9]*$/' };
coerce AuthorID, from Str, via { uc $_ };
#-----------------------------------------------------------------------------
subtype Username, as Str,
where { $_ =~ $PINTO_USERNAME_REGEX },
message { 'The username (' . ( defined() ? $_ : 'undef' ) . ') must be alphanumeric' };
#-----------------------------------------------------------------------------
subtype StackName, as Str,
where { $_ =~ $PINTO_STACK_NAME_REGEX },
message { 'The stack name (' . ( defined() ? $_ : 'undef' ) . ') must be alphanumeric' };
#-----------------------------------------------------------------------------
subtype StackAll, as Str,
where { $_ eq $PINTO_STACK_NAME_ALL },
message {qq{The stack name must be '$PINTO_STACK_NAME_ALL'}};
#-----------------------------------------------------------------------------
subtype StackDefault, as Undef;
#-----------------------------------------------------------------------------
class_type StackObject, { class => 'Pinto::Schema::Result::Stack' };
#-----------------------------------------------------------------------------
subtype PropertyName, as Str,
where { $_ =~ $PINTO_PROPERTY_NAME_REGEX },
message { 'The property name (' . ( defined() ? $_ : 'undef' ) . 'must be alphanumeric' };
#-----------------------------------------------------------------------------
class_type Version, { class => 'version' };
coerce Version, from Str, via { version->parse($_) };
coerce Version, from Num, via { version->parse($_) };
#-----------------------------------------------------------------------------
subtype PerlVersion, as Object,
where { $_->isa('version') && exists $Module::CoreList::version{ $_->numify + 0 } },
message {"perl version ($_) is unknown to me"};
coerce PerlVersion, from Str, via { version->parse($_) };
coerce PerlVersion, from Num, via { version->parse($_) };
#-----------------------------------------------------------------------------
subtype ANSIColor, as Str,
where { Term::ANSIColor::colorvalid($_) },
message { 'The color name (' . ( defined() ? $_ : 'undef' ) . 'is not valid' };
#-----------------------------------------------------------------------------
subtype ANSIColorSet, as ArrayRef [ANSIColor], where { @{$_} == 3 }, message {'Must be exactly three colors'};
#-----------------------------------------------------------------------------
class_type Uri, { class => 'URI' };
coerce Uri, from Str, via { URI->new($_) };
#-----------------------------------------------------------------------------
class_type Dir, { class => 'Path::Class::Dir' };
coerce Dir, from Str, via { Path::Class::Dir->new($_) }, from ArrayRef, via { Path::Class::Dir->new( @{$_} ) };
#-----------------------------------------------------------------------------
class_type File, { class => 'Path::Class::File' };
coerce File, from Str, via { Path::Class::File->new($_) }, from ArrayRef, via { Path::Class::File->new( @{$_} ) };
#-----------------------------------------------------------------------------
subtype FileList, as ArrayRef [File];
coerce FileList, from File, via { [$_] }, from Str, via { [ Path::Class::File->new($_) ] }, from ArrayRef [Str], via {
[ map { Path::Class::File->new($_) } @$_ ];
};
#-----------------------------------------------------------------------------
class_type PkgSpec, { class => 'Pinto::PackageSpec' };
coerce PkgSpec,
from Str, via { Pinto::SpecFactory->make_spec($_) },
from HashRef, via { Pinto::SpecFactory->make_spec($_) };
#-----------------------------------------------------------------------------
class_type DistSpec, { class => 'Pinto::DistributionSpec' };
coerce DistSpec,
from Str, via { Pinto::SpecFactory->make_spec($_) },
from HashRef, via { Pinto::SpecFactory->make_spec($_) };
#-----------------------------------------------------------------------------
subtype SpecList, as ArrayRef [ PkgSpec | DistSpec ]; ## no critic qw(ProhibitBitwiseOperators);
coerce SpecList,
from PkgSpec, via { [$_] },
from DistSpec, via { [$_] }, from Str, via { [ Pinto::SpecFactory->make_spec($_) ] }, from ArrayRef [Str], via {
[ map { Pinto::SpecFactory->make_spec($_) } @$_ ];
};
#-----------------------------------------------------------------------------
subtype DistSpecList, as ArrayRef [DistSpec]; ## no critic qw(ProhibitBitwiseOperators);
coerce DistSpecList,
from DistSpec, via { [$_] }, from Str, via { [ Pinto::DistributionSpec->new($_) ] }, from ArrayRef [Str], via {
[ map { Pinto::DistributionSpec->new($_) } @$_ ];
};
#-----------------------------------------------------------------------------
subtype PkgSpecList, as ArrayRef [PkgSpec]; ## no critic qw(ProhibitBitwiseOperators);
coerce PkgSpecList,
from DistSpec, via { [$_] }, from Str, via { [ Pinto::PackageSpec->new($_) ] }, from ArrayRef [Str], via {
[ map { Pinto::PackageSpec->new($_) } @$_ ];
};
#-----------------------------------------------------------------------------
subtype Io, as Object;
coerce Io,
from Str, via { my $fh = IO::File->new(); $fh->open($_); return $fh },
from File, via { my $fh = IO::File->new(); $fh->open("$_"); return $fh },
from ArrayRef, via { IO::Handle->new_from_fd(@$_) },
from ScalarRef, via { IO::String->new( ${$_} ) };
#-----------------------------------------------------------------------------
subtype RevisionID, as Str,
where { $_ =~ $PINTO_REVISION_ID_REGEX and length($_) >= 4 },
message { 'The revision id (' . ( defined() ? $_ : 'undef' ) . ') must be a hexadecimal string of 4 or more chars' };
coerce RevisionID, from Str, via { lc $_ };
#-----------------------------------------------------------------------------
subtype RevisionHead, as Undef;
#-----------------------------------------------------------------------------
1;
__END__
=pod
=encoding UTF-8
=for :stopwords Jeffrey Ryan Thalhammer BenRifkah Fowler Jakob Voss Karen Etheridge Michael
G. Bergsten-Buret Schwern Oleg Gashev Steffen Schwigon Tommy Stanton
Wolfgang Kinkeldei Yanick Boris Champoux hesco popl Däppen Cory G Watson
David Steinbrunner Glenn
=head1 NAME
Pinto::Types - Moose types used within Pinto
=head1 VERSION
version 0.097
=head1 AUTHOR
Jeffrey Ryan Thalhammer <jeff@stratopan.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Jeffrey Ryan Thalhammer.
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
|