Play nicer with lower-level methods
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / FilterColumn.pm
CommitLineData
51bec050 1package DBIx::Class::FilterColumn;
51bec050 2use strict;
3use warnings;
4
5use base qw/DBIx::Class::Row/;
6
7sub filter_column {
8 my ($self, $col, $attrs) = @_;
9
10 $self->throw_exception("No such column $col to filter")
11 unless $self->has_column($col);
12
13 $self->throw_exception("filter_column needs attr hashref")
14 unless ref $attrs eq 'HASH';
15
16 $self->column_info($col)->{_filter_info} = $attrs;
17 my $acc = $self->column_info($col)->{accessor};
d7d38bef 18 $self->mk_group_accessors(filtered_column => [ (defined $acc ? $acc : $col), $col]);
51bec050 19 return 1;
20}
21
4c0c3038 22sub _column_from_storage {
9b2c0de6 23 my ($self, $col, $value) = @_;
51bec050 24
25 return $value unless defined $value;
26
27 my $info = $self->column_info($col)
28 or $self->throw_exception("No column info for $col");
29
30 return $value unless exists $info->{_filter_info};
31
d7d38bef 32 my $filter = $info->{_filter_info}{filter_from_storage};
51bec050 33 $self->throw_exception("No inflator for $col") unless defined $filter;
34
9b2c0de6 35 return $self->$filter($value);
51bec050 36}
37
4c0c3038 38sub _column_to_storage {
9b2c0de6 39 my ($self, $col, $value) = @_;
51bec050 40
41 my $info = $self->column_info($col) or
42 $self->throw_exception("No column info for $col");
43
44 return $value unless exists $info->{_filter_info};
45
d7d38bef 46 my $unfilter = $info->{_filter_info}{filter_to_storage};
51bec050 47 $self->throw_exception("No unfilter for $col") unless defined $unfilter;
9b2c0de6 48 return $self->$unfilter($value);
51bec050 49}
50
d7d38bef 51sub get_filtered_column {
51bec050 52 my ($self, $col) = @_;
53
54 $self->throw_exception("$col is not a filtered column")
55 unless exists $self->column_info($col)->{_filter_info};
56
57 return $self->{_filtered_column}{$col}
58 if exists $self->{_filtered_column}{$col};
59
60 my $val = $self->get_column($col);
61
9b2c0de6 62 return $self->{_filtered_column}{$col} = $self->_column_from_storage($col, $val);
51bec050 63}
64
85439e0c 65sub set_column {
66 my ($self, $col) = (shift, @_);
67
68 # blow cache
69 delete $self->{_filtered_column}{$col};
70
71 $self->next::method(@_);
72}
73
d7d38bef 74sub set_filtered_column {
51bec050 75 my ($self, $col, $filtered) = @_;
76
cde96798 77 # do not blow up the cache via set_column unless necessary
78 # (filtering may be expensive!)
79 if (exists $self->{_filtered_column}{$col}) {
80 return $filtered
81 if ($self->_eq_column_values ($col, $filtered, $self->{_filtered_column}{$col} ) );
51bec050 82
cde96798 83 $self->make_column_dirty ($col); # so the comparison won't run again
84 }
85
86 $self->set_column($col, $self->_column_to_storage($col, $filtered));
51bec050 87
88 return $filtered;
89}
90
7b461f8a 91sub update {
92 my ($self, $attrs, @rest) = @_;
93 foreach my $key (keys %{$attrs||{}}) {
94 if ($self->has_column($key) &&
95 exists $self->column_info($key)->{_filter_info}) {
96 my $val = delete $attrs->{$key};
d7d38bef 97 $self->set_filtered_column($key, $val);
9b2c0de6 98 $attrs->{$key} = $self->_column_to_storage($key, $val)
7b461f8a 99 }
100 }
101 return $self->next::method($attrs, @rest);
102}
103
7b461f8a 104sub new {
105 my ($class, $attrs, @rest) = @_;
9b2c0de6 106 my $source = $attrs->{-result_source}
d9ea6d6d 107 or $class->throw_exception('Sourceless rows are not supported with DBIx::Class::FilterColumn');
108
9b2c0de6 109 my $obj = $class->next::method($attrs, @rest);
7b461f8a 110 foreach my $key (keys %{$attrs||{}}) {
9b2c0de6 111 if ($obj->has_column($key) &&
112 exists $obj->column_info($key)->{_filter_info} ) {
113 my $val = delete $attrs->{$key};
114 $obj->set_filtered_column($key, $val);
7b461f8a 115 }
116 }
7b461f8a 117 return $obj;
118}
119
51bec050 1201;
22d9e05a 121
9b2c0de6 122=head1 NAME
22d9e05a 123
9b2c0de6 124DBIx::Class::FilterColumn - Automatically convert column data
125
126=head1 SYNOPSIS
127
128 # In your result classes
129 __PACKAGE__->filter_column( money => {
130 filter_to_storage => 'to_pennies',
131 filter_from_storage => 'from_pennies',
132 });
22d9e05a 133
134 sub to_pennies { $_[1] * 100 }
9b2c0de6 135
22d9e05a 136 sub from_pennies { $_[1] / 100 }
137
138 1;
139
9b2c0de6 140=head1 DESCRIPTION
22d9e05a 141
9b2c0de6 142This component is meant to be a more powerful, but less DWIM-y,
143L<DBIx::Class::InflateColumn>. One of the major issues with said component is
144that it B<only> works with references. Generally speaking anything that can
145be done with L<DBIx::Class::InflateColumn> can be done with this component.
22d9e05a 146
9b2c0de6 147=head1 METHODS
22d9e05a 148
9b2c0de6 149=head2 filter_column
22d9e05a 150
9b2c0de6 151 __PACKAGE__->filter_column( colname => {
152 filter_from_storage => 'method',
153 filter_to_storage => 'method',
154 })
22d9e05a 155
9b2c0de6 156This is the method that you need to call to set up a filtered column. It takes
157exactly two arguments; the first being the column name the second being a
158C<HashRef> with C<filter_from_storage> and C<filter_to_storage> having
159something that can be called as a method. The method will be called with
160the value of the column as the first non-C<$self> argument.
22d9e05a 161
9b2c0de6 162=head2 get_filtered_column
22d9e05a 163
9b2c0de6 164 $obj->get_filtered_column('colname')
165
166Returns the filtered value of the column
167
168=head2 set_filtered_column
169
170 $obj->set_filtered_column(colname => 'new_value')
171
172Sets the filtered value of the column