Version 1.04
[gitmo/Moose.git] / lib / Moose / Util / TypeConstraints / OptimizedConstraints.pm
1 package Moose::Util::TypeConstraints::OptimizedConstraints;
2
3 use strict;
4 use warnings;
5
6 use Class::MOP;
7 use Scalar::Util 'blessed', 'looks_like_number';
8
9 our $VERSION   = '1.04';
10 $VERSION = eval $VERSION;
11 our $AUTHORITY = 'cpan:STEVAN';
12
13 sub Value { defined($_[0]) && !ref($_[0]) }
14
15 sub Ref { ref($_[0]) }
16
17 # We need to use a temporary here to flatten LVALUEs, for instance as in
18 # Str(substr($_,0,255)).
19 sub Str {
20     my $value = $_[0];
21     defined($value) && ref(\$value) eq 'SCALAR'
22 }
23
24 sub Num { !ref($_[0]) && looks_like_number($_[0]) }
25
26 sub Int { defined($_[0]) && !ref($_[0]) && $_[0] =~ /^-?[0-9]+$/ }
27
28 sub ScalarRef { ref($_[0]) eq 'SCALAR' || ref($_[0]) eq 'REF' }
29 sub ArrayRef  { ref($_[0]) eq 'ARRAY'  }
30 sub HashRef   { ref($_[0]) eq 'HASH'   }
31 sub CodeRef   { ref($_[0]) eq 'CODE'   }
32 sub RegexpRef { ref($_[0]) eq 'Regexp' }
33 sub GlobRef   { ref($_[0]) eq 'GLOB'   }
34
35 sub FileHandle { ref($_[0]) eq 'GLOB' && Scalar::Util::openhandle($_[0]) or blessed($_[0]) && $_[0]->isa("IO::Handle") }
36
37 sub Object { blessed($_[0]) && blessed($_[0]) ne 'Regexp' }
38
39 sub Role { Carp::cluck('The Role type is deprecated.'); blessed($_[0]) && $_[0]->can('does') }
40
41 sub ClassName {
42     return Class::MOP::is_class_loaded( $_[0] );
43 }
44
45 sub RoleName {
46     ClassName($_[0])
47     && (Class::MOP::class_of($_[0]) || return)->isa('Moose::Meta::Role')
48 }
49
50 # NOTE:
51 # we have XS versions too, ...
52 # 04:09 <@konobi> nothingmuch: konobi.co.uk/code/utilsxs.tar.gz
53 # 04:09 <@konobi> or utilxs.tar.gz iirc
54
55 1;
56
57 __END__
58
59 =pod
60
61 =head1 NAME
62
63 Moose::Util::TypeConstraints::OptimizedConstraints - Optimized constraint
64 bodies for various moose types
65
66 =head1 DESCRIPTION
67
68 This file contains the hand optimized versions of Moose type constraints,
69 no user serviceable parts inside.
70
71 =head1 FUNCTIONS
72
73 =over 4
74
75 =item C<Value>
76
77 =item C<Ref>
78
79 =item C<Str>
80
81 =item C<Num>
82
83 =item C<Int>
84
85 =item C<ScalarRef>
86
87 =item C<ArrayRef>
88
89 =item C<HashRef>
90
91 =item C<CodeRef>
92
93 =item C<RegexpRef>
94
95 =item C<GlobRef>
96
97 =item C<FileHandle>
98
99 =item C<Object>
100
101 =item C<Role>
102
103 =item C<ClassName>
104
105 =item C<RoleName>
106
107 =back
108
109 =head1 BUGS
110
111 See L<Moose/BUGS> for details on reporting bugs.
112
113 =head1 AUTHOR
114
115 Yuval Kogman E<lt>nothingmuch@cpan.orgE<gt>
116
117 =head1 COPYRIGHT AND LICENSE
118
119 Copyright 2007-2009 by Infinity Interactive, Inc.
120
121 L<http://www.iinteractive.com>
122
123 This library is free software; you can redistribute it and/or modify
124 it under the same terms as Perl itself.
125
126 =cut