4d690a808fd2b8acbc1ec99975c83b87032f38c8
[gitmo/Moose.git] / lib / Moose / Meta / Attribute / Native / Trait / String.pm
1 package Moose::Meta::Attribute::Native::Trait::String;
2 use Moose::Role;
3
4 our $VERSION   = '1.15';
5 $VERSION = eval $VERSION;
6 our $AUTHORITY = 'cpan:STEVAN';
7
8 use Moose::Meta::Method::Accessor::Native::String::append;
9 use Moose::Meta::Method::Accessor::Native::String::chomp;
10 use Moose::Meta::Method::Accessor::Native::String::chop;
11 use Moose::Meta::Method::Accessor::Native::String::clear;
12 use Moose::Meta::Method::Accessor::Native::String::inc;
13 use Moose::Meta::Method::Accessor::Native::String::length;
14 use Moose::Meta::Method::Accessor::Native::String::match;
15 use Moose::Meta::Method::Accessor::Native::String::prepend;
16 use Moose::Meta::Method::Accessor::Native::String::replace;
17 use Moose::Meta::Method::Accessor::Native::String::substr;
18
19 with 'Moose::Meta::Attribute::Native::Trait';
20
21 sub _default_default { q{} }
22 sub _default_is { 'rw' }
23 sub _helper_type { 'Str' }
24
25 no Moose::Role;
26
27 1;
28
29 __END__
30
31 =pod
32
33 =head1 NAME
34
35 Moose::Meta::Attribute::Native::Trait::String - Helper trait for Str attributes
36
37 =head1 SYNOPSIS
38
39   package MyHomePage;
40   use Moose;
41
42   has 'text' => (
43       traits  => ['String'],
44       is      => 'rw',
45       isa     => 'Str',
46       default => q{},
47       handles => {
48           add_text     => 'append',
49           replace_text => 'replace',
50       },
51   );
52
53   my $page = MyHomePage->new();
54   $page->add_text("foo");    # same as $page->text($page->text . "foo");
55
56 =head1 DESCRIPTION
57
58 This module provides a simple string attribute, to which mutating string
59 operations can be applied more easily (no need to make an lvalue attribute
60 metaclass or use temporary variables). Additional methods are provided for
61 completion.
62
63 If your attribute definition does not include any of I<is>, I<isa>,
64 I<default> or I<handles> but does use the C<String> metaclass,
65 then this module applies defaults as in the L</SYNOPSIS>
66 above. This allows for a very basic string definition:
67
68   has 'foo' => (traits => ['String']);
69   $obj->append_foo;
70
71 =head1 PROVIDED METHODS
72
73 =over 4
74
75 =item * B<inc>
76
77 Increments the value stored in this slot using the magical string autoincrement
78 operator. Note that Perl doesn't provide analogous behavior in C<-->, so
79 C<dec> is not available. This method returns the new value.
80
81 This method does not accept any arguments.
82
83 =item * B<append($string)>
84
85 Appends to the string, like C<.=>, and returns the new value.
86
87 This method requires a single argument.
88
89 =item * B<prepend($string)>
90
91 Prepends to the string and returns the new value.
92
93 This method requires a single argument.
94
95 =item * B<replace($pattern, $replacement)>
96
97 Performs a regexp substitution (L<perlop/s>). There is no way to provide the
98 C<g> flag, but code references will be accepted for the replacement, causing
99 the regex to be modified with a single C<e>. C</smxi> can be applied using the
100 C<qr> operator. This method returns the new value.
101
102 This method requires two arguments.
103
104 =item * B<match($pattern)>
105
106 Runs the regex against the string and returns the matching value(s).
107
108 This method requires a single argument.
109
110 =item * B<chop>
111
112 Just like L<perlfunc/chop>. This method returns the chopped character.
113
114 This method does not accept any arguments.
115
116 =item * B<chomp>
117
118 Just like L<perlfunc/chomp>. This method returns the number of characters
119 removed.
120
121 This method does not accept any arguments.
122
123 =item * B<clear>
124
125 Sets the string to the empty string (not the value passed to C<default>).
126
127 This method does not have a defined return value.
128
129 This method does not accept any arguments.
130
131 =item * B<length>
132
133 Just like L<perlfunc/length>, returns the length of the string.
134
135 =item * B<substr>
136
137 This acts just like L<perlfunc/substr>. When called as a writer, it returns
138 the substring that was replaced, just like the Perl builtin.
139
140 This method requires at least one argument, and accepts no more than three.
141
142 =back
143
144 =head1 BUGS
145
146 See L<Moose/BUGS> for details on reporting bugs.
147
148 =head1 AUTHOR
149
150 Stevan Little E<lt>stevan@iinteractive.comE<gt>
151
152 =head1 COPYRIGHT AND LICENSE
153
154 Copyright 2007-2009 by Infinity Interactive, Inc.
155
156 L<http://www.iinteractive.com>
157
158 This library is free software; you can redistribute it and/or modify
159 it under the same terms as Perl itself.
160
161 =cut