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
|
package DBIx::Class::AccessorGroup;
use strict;
use warnings;
use Carp::Clan qw/^DBIx::Class/;
=head1 NAME
DBIx::Class::AccessorGroup - Lets you build groups of accessors
=head1 SYNOPSIS
=head1 DESCRIPTION
This class lets you build groups of accessors that will call different
getters and setters.
=head1 METHODS
=head2 mk_group_accessors
=over 4
=item Arguments: $group, @fieldspec
Returns: none
=back
Creates a set of accessors in a given group.
$group is the name of the accessor group for the generated accessors; they
will call get_$group($field) on get and set_$group($field, $value) on set.
@fieldspec is a list of field/accessor names; if a fieldspec is a scalar
this is used as both field and accessor name, if a listref it is expected to
be of the form [ $accessor, $field ].
=cut
sub mk_group_accessors {
my ($self, $group, @fields) = @_;
$self->_mk_group_accessors('make_group_accessor', $group, @fields);
return;
}
{
no strict 'refs';
no warnings 'redefine';
sub _mk_group_accessors {
my($self, $maker, $group, @fields) = @_;
my $class = ref $self || $self;
# So we don't have to do lots of lookups inside the loop.
$maker = $self->can($maker) unless ref $maker;
foreach my $field (@fields) {
if( $field eq 'DESTROY' ) {
carp("Having a data accessor named DESTROY in ".
"'$class' is unwise.");
}
my $name = $field;
($name, $field) = @$field if ref $field;
my $accessor = $self->$maker($group, $field);
my $alias = "_${name}_accessor";
#warn "$class $group $field $alias";
*{$class."\:\:$name"} = $accessor;
#unless defined &{$class."\:\:$field"}
*{$class."\:\:$alias"} = $accessor;
#unless defined &{$class."\:\:$alias"}
}
}
}
=head2 mk_group_ro_accessors
=over 4
=item Arguments: $group, @fieldspec
Returns: none
=back
Creates a set of read only accessors in a given group. Identical to
<L:/mk_group_accessors> but accessors will throw an error if passed a value
rather than setting the value.
=cut
sub mk_group_ro_accessors {
my($self, $group, @fields) = @_;
$self->_mk_group_accessors('make_group_ro_accessor', $group, @fields);
}
=head2 mk_group_wo_accessors
=over 4
=item Arguments: $group, @fieldspec
Returns: none
=back
Creates a set of write only accessors in a given group. Identical to
<L:/mk_group_accessors> but accessors will throw an error if not passed a
value rather than getting the value.
=cut
sub mk_group_wo_accessors {
my($self, $group, @fields) = @_;
$self->_mk_group_accessors('make_group_wo_accessor', $group, @fields);
}
=head2 make_group_accessor
=over 4
=item Arguments: $group, $field
Returns: $sub (\CODE)
=back
Returns a single accessor in a given group; called by mk_group_accessors
for each entry in @fieldspec.
=cut
sub make_group_accessor {
my ($class, $group, $field) = @_;
my $set = "set_$group";
my $get = "get_$group";
# Build a closure around $field.
return sub {
my $self = shift;
if(@_) {
return $self->$set($field, @_);
}
else {
return $self->$get($field);
}
};
}
=head2 make_group_ro_accessor
=over 4
=item Arguments: $group, $field
Returns: $sub (\CODE)
=back
Returns a single read-only accessor in a given group; called by
mk_group_ro_accessors for each entry in @fieldspec.
=cut
sub make_group_ro_accessor {
my($class, $group, $field) = @_;
my $get = "get_$group";
return sub {
my $self = shift;
if(@_) {
my $caller = caller;
croak("'$caller' cannot alter the value of '$field' on ".
"objects of class '$class'");
}
else {
return $self->$get($field);
}
};
}
=head2 make_group_wo_accessor
=over 4
=item Arguments: $group, $field
Returns: $sub (\CODE)
=back
Returns a single write-only accessor in a given group; called by
mk_group_wo_accessors for each entry in @fieldspec.
=cut
sub make_group_wo_accessor {
my($class, $group, $field) = @_;
my $set = "set_$group";
return sub {
my $self = shift;
unless (@_) {
my $caller = caller;
croak("'$caller' cannot access the value of '$field' on ".
"objects of class '$class'");
}
else {
return $self->$set($field, @_);
}
};
}
=head2 get_simple
=over 4
=item Arguments: $field
Returns: $value
=back
Simple getter for hash-based objects which returns the value for the field
name passed as an argument.
=cut
sub get_simple {
my ($self, $get) = @_;
return $self->{$get};
}
=head2 set_simple
=over 4
=item Arguments: $field, $new_value
Returns: $new_value
=back
Simple setter for hash-based objects which sets and then returns the value
for the field name passed as an argument.
=cut
sub set_simple {
my ($self, $set, $val) = @_;
return $self->{$set} = $val;
}
=head2 get_component_class
=over 4
=item Arguments: $name
Returns: $component_class
=back
Returns the class name for a component; returns an object key if called on
an object, or attempts to return classdata referenced by _$name if called
on a class.
=cut
sub get_component_class {
my ($self, $get) = @_;
if (ref $self) {
return $self->{$get};
} else {
$get = "_$get";
return $self->can($get) ? $self->$get : undef;
}
}
=head2 set_component_class
=over 4
=item Arguments: $name, $new_component_class
Returns: $new_component_class
=back
Sets a component class name; attempts to require the class before setting
but does not error if unable to do so. Sets an object key of the given name
if called or an object or classdata called _$name if called on a class.
=cut
sub set_component_class {
my ($self, $set, $val) = @_;
eval "require $val";
if ($@) {
my $val_path = $val;
$val_path =~ s{::}{/}g;
carp $@ unless $@ =~ /^Can't locate $val_path\.pm/;
}
if (ref $self) {
return $self->{$set} = $val;
} else {
$set = "_$set";
return $self->can($set) ?
$self->$set($val) :
$self->mk_classdata($set => $val);
}
}
1;
=head1 AUTHORS
Matt S. Trout <mst@shadowcatsystems.co.uk>
=head1 LICENSE
You may distribute this code under the same terms as Perl itself.
=cut
|