Added ->relationships and ->relationship_info from castaway
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Row.pm
CommitLineData
7624b19f 1package DBIx::Class::Row;
2
3use strict;
4use warnings;
5
1edd1722 6use base qw/DBIx::Class/;
7
7624b19f 8=head1 NAME
9
10DBIx::Class::Row - Basic row methods
11
12=head1 SYNOPSIS
13
14=head1 DESCRIPTION
15
16This class is responsible for defining and doing basic operations on rows
17derived from L<DBIx::Class::Table> objects.
18
19=head1 METHODS
20
8091aa91 21=head2 new
7624b19f 22
23 my $obj = My::Class->new($attrs);
24
25Creates a new row object from column => value mappings passed as a hash ref
26
27=cut
28
29sub new {
30 my ($class, $attrs) = @_;
31 $class = ref $class if ref $class;
32 my $new = bless({ _column_data => { } }, $class);
33 if ($attrs) {
34 $new->throw("attrs must be a hashref" ) unless ref($attrs) eq 'HASH';
35 while (my ($k, $v) = each %{$attrs}) {
103647d5 36 die "No such column $k on $class" unless $class->has_column($k);
484c9dda 37 $new->store_column($k => $v);
7624b19f 38 }
39 }
40 return $new;
41}
42
8091aa91 43=head2 insert
7624b19f 44
45 $obj->insert;
46
47Inserts an object into the database if it isn't already in there. Returns
48the object itself.
49
50=cut
51
52sub insert {
53 my ($self) = @_;
54 return $self if $self->in_storage;
55 #use Data::Dumper; warn Dumper($self);
88cb6a1d 56 $self->result_source->storage->insert(
57 $self->_table_name, { $self->get_columns });
7624b19f 58 $self->in_storage(1);
59 $self->{_dirty_columns} = {};
60 return $self;
61}
62
8091aa91 63=head2 in_storage
7624b19f 64
65 $obj->in_storage; # Get value
66 $obj->in_storage(1); # Set value
67
68Indicated whether the object exists as a row in the database or not
69
70=cut
71
72sub in_storage {
73 my ($self, $val) = @_;
74 $self->{_in_storage} = $val if @_ > 1;
75 return $self->{_in_storage};
76}
77
8091aa91 78=head2 update
7624b19f 79
80 $obj->update;
81
82Must be run on an object that is already in the database; issues an SQL
83UPDATE query to commit any changes to the object to the db if required.
84
85=cut
86
87sub update {
88 my ($self, $upd) = @_;
89 $self->throw( "Not in database" ) unless $self->in_storage;
d7156e50 90 my %to_update = $self->get_dirty_columns;
7624b19f 91 return -1 unless keys %to_update;
88cb6a1d 92 my $rows = $self->result_source->storage->update(
93 $self->result_source->from, \%to_update, $self->ident_condition);
7624b19f 94 if ($rows == 0) {
95 $self->throw( "Can't update ${self}: row not found" );
96 } elsif ($rows > 1) {
97 $self->throw("Can't update ${self}: updated more than one row");
98 }
99 $self->{_dirty_columns} = {};
100 return $self;
101}
102
8091aa91 103=head2 delete
7624b19f 104
105 $obj->delete
106
107Deletes the object from the database. The object is still perfectly usable
108accessor-wise etc. but ->in_storage will now return 0 and the object must
109be re ->insert'ed before it can be ->update'ed
110
111=cut
112
113sub delete {
114 my $self = shift;
115 if (ref $self) {
116 $self->throw( "Not in database" ) unless $self->in_storage;
117 #warn $self->_ident_cond.' '.join(', ', $self->_ident_values);
88cb6a1d 118 $self->result_source->storage->delete(
119 $self->result_source->from, $self->ident_condition);
7624b19f 120 $self->in_storage(undef);
121 #$self->store_column($_ => undef) for $self->primary_columns;
122 # Should probably also arrange to trash PK if auto
123 # but if we do, post-delete cascade triggers fail :/
124 } else {
125 my $attrs = { };
126 if (@_ > 1 && ref $_[$#_] eq 'HASH') {
127 $attrs = { %{ pop(@_) } };
128 }
129 my $query = (ref $_[0] eq 'HASH' ? $_[0] : {@_});
130 $self->storage->delete($self->_table_name, $query);
131 }
132 return $self;
133}
134
8091aa91 135=head2 get_column
7624b19f 136
137 my $val = $obj->get_column($col);
138
8091aa91 139Gets a column value from a row object. Currently, does not do
140any queries; the column must have already been fetched from
141the database and stored in the object.
7624b19f 142
143=cut
144
145sub get_column {
146 my ($self, $column) = @_;
147 $self->throw( "Can't fetch data as class method" ) unless ref $self;
7624b19f 148 return $self->{_column_data}{$column}
149 if exists $self->{_column_data}{$column};
d7156e50 150 $self->throw( "No such column '${column}'" ) unless $self->has_column($column);
7624b19f 151 return undef;
152}
153
8091aa91 154=head2 get_columns
076a6864 155
156 my %data = $obj->get_columns;
157
8091aa91 158Does C<get_column>, for all column values at once.
076a6864 159
160=cut
161
162sub get_columns {
163 my $self = shift;
d7156e50 164 return return %{$self->{_column_data}};
165}
166
167=head2 get_dirty_columns
168
169 my %data = $obj->get_dirty_columns;
170
171Identical to get_columns but only returns those that have been changed.
172
173=cut
174
175sub get_dirty_columns {
176 my $self = shift;
177 return map { $_ => $self->{_column_data}{$_} }
178 keys %{$self->{_dirty_columns}};
076a6864 179}
180
8091aa91 181=head2 set_column
7624b19f 182
183 $obj->set_column($col => $val);
184
8091aa91 185Sets a column value. If the new value is different from the old one,
186the column is marked as dirty for when you next call $obj->update.
7624b19f 187
188=cut
189
190sub set_column {
191 my $self = shift;
192 my ($column) = @_;
193 my $old = $self->get_column($column);
194 my $ret = $self->store_column(@_);
195 $self->{_dirty_columns}{$column} = 1 unless defined $old && $old eq $ret;
196 return $ret;
197}
198
8091aa91 199=head2 set_columns
076a6864 200
dc818523 201 my $copy = $orig->set_columns({ $col => $val, ... });
076a6864 202
8091aa91 203Sets more than one column value at once.
076a6864 204
205=cut
206
207sub set_columns {
208 my ($self,$data) = @_;
209 while (my ($col,$val) = each %$data) {
210 $self->set_column($col,$val);
211 }
212}
213
8091aa91 214=head2 copy
076a6864 215
216 my $copy = $orig->copy({ change => $to, ... });
217
8091aa91 218Inserts a new row with the specified changes.
076a6864 219
220=cut
221
8091aa91 222=head2 store_column
7624b19f 223
224 $obj->store_column($col => $val);
225
8091aa91 226Sets a column value without marking it as dirty.
7624b19f 227
228=cut
229
230sub store_column {
231 my ($self, $column, $value) = @_;
232 $self->throw( "No such column '${column}'" )
d7156e50 233 unless exists $self->{_column_data}{$column} || $self->has_column($column);
7624b19f 234 $self->throw( "set_column called for ${column} without value" )
235 if @_ < 3;
236 return $self->{_column_data}{$column} = $value;
237}
238
b52e9bf8 239=head2 inflate_result
240
241 Class->inflate_result(\%me, \%prefetch?)
242
243Called by ResultSet to inflate a result from storage
244
245=cut
246
247sub inflate_result {
248 my ($class, $me, $prefetch) = @_;
249 #use Data::Dumper; print Dumper(@_);
7fb16f1a 250 my $new = bless({ _column_data => $me, _in_storage => 1 },
251 ref $class || $class);
252 my $schema;
b52e9bf8 253 PRE: foreach my $pre (keys %{$prefetch||{}}) {
4685e006 254 my $rel_obj = $class->relationship_info($pre);
255 die "Can't prefetch non-eistant relationship ${pre}" unless $rel_obj;
7fb16f1a 256 $schema ||= $new->result_source->schema;
257 my $pre_class = $schema->class($rel_obj->{class});
6aeb9185 258 my $fetched = $pre_class->inflate_result(@{$prefetch->{$pre}});
b52e9bf8 259 $class->throw("No accessor for prefetched $pre")
260 unless defined $rel_obj->{attrs}{accessor};
2fb09619 261 PRIMARY: foreach my $pri ($rel_obj->{class}->primary_columns) {
262 unless (defined $fetched->get_column($pri)) {
263 undef $fetched;
264 last PRIMARY;
b52e9bf8 265 }
2fb09619 266 }
267 if ($rel_obj->{attrs}{accessor} eq 'single') {
b52e9bf8 268 $new->{_relationship_data}{$pre} = $fetched;
269 } elsif ($rel_obj->{attrs}{accessor} eq 'filter') {
270 $new->{_inflated_column}{$pre} = $fetched;
271 } else {
272 $class->throw("Don't know how to store prefetched $pre");
273 }
274 }
7624b19f 275 return $new;
276}
277
7624b19f 278sub copy {
279 my ($self, $changes) = @_;
280 my $new = bless({ _column_data => { %{$self->{_column_data}}} }, ref $self);
281 $new->set_column($_ => $changes->{$_}) for keys %$changes;
282 return $new->insert;
283}
284
8091aa91 285=head2 insert_or_update
7624b19f 286
287 $obj->insert_or_update
288
8091aa91 289Updates the object if it's already in the db, else inserts it.
7624b19f 290
291=cut
292
293sub insert_or_update {
294 my $self = shift;
295 return ($self->in_storage ? $self->update : $self->insert);
296}
297
8091aa91 298=head2 is_changed
7624b19f 299
300 my @changed_col_names = $obj->is_changed
301
302=cut
303
304sub is_changed {
305 return keys %{shift->{_dirty_columns} || {}};
306}
307
3081;
309
7624b19f 310=head1 AUTHORS
311
daec44b8 312Matt S. Trout <mst@shadowcatsystems.co.uk>
7624b19f 313
314=head1 LICENSE
315
316You may distribute this code under the same terms as Perl itself.
317
318=cut
319