fe33d0f2072f8e570751055b0b0edd4149315375
[dbsrgits/DBIx-Class-DateTime-Epoch.git] / lib / DBIx / Class / DateTime / Epoch.pm
1 package DBIx::Class::DateTime::Epoch;\r
2 \r
3 use strict;\r
4 use warnings;\r
5 \r
6 our $VERSION = '0.01';\r
7 \r
8 use base qw( DBIx::Class );\r
9 \r
10 use DateTime;\r
11 \r
12 =head1 NAME\r
13 \r
14 DBIx::Class::DateTime::Epoch - Automatic inflation/deflation of epoch-based DateTime objects for DBIx::Class\r
15 \r
16 =head1 SYNOPSIS\r
17 \r
18     package foo;\r
19     \r
20     use base qw( DBIx::Class );\r
21     \r
22     __PACKAGE__->load_components( qw( DateTime::Epoch Core ) );\r
23     __PACKAGE__->add_columns(\r
24         name => {\r
25             data_type => 'varchar',\r
26             size      => 10\r
27         },\r
28         bar => {\r
29             data_type => 'bigint',\r
30             epoch     => 1\r
31         },\r
32         creation_time => {\r
33             data_type => 'bigint',\r
34             epoch     => 'ctime'\r
35         },\r
36         modification_time => {\r
37             data_type => 'bigint',\r
38             epoch     => 'mtime'\r
39         }\r
40     );\r
41 \r
42 =head1 DESCRIPTION\r
43 \r
44 This module automatically inflates/deflates DateTime objects\r
45 corresponding to applicable columns. Columns may also be\r
46 defined to specify their nature, such as columns representing a\r
47 creation time (set at time of insertion) or a modification time\r
48 (set at time of every update).\r
49 \r
50 =head1 METHODS\r
51 \r
52 =head2 register_column\r
53 \r
54 This method will automatically add inflation and deflation rules\r
55 to a column if an epoch value has been set in the column's definition.\r
56 If the epoch value is 'ctime' (creation time) or 'mtime'\r
57 (modification time), it will be registered as such for later\r
58 use by the insert and the update methods.\r
59 \r
60 =head2 insert\r
61 \r
62 This method will set the value of all registered creation time\r
63 columns to the current time. No changes will be made to a column\r
64 whose value has already been set.\r
65 \r
66 =head2 update\r
67 \r
68 This method will set the value of all registered modification time\r
69 columns to the current time. This will overwrite a column's value,\r
70 even if it has been already set.\r
71 \r
72 =head1 SEE ALSO\r
73 \r
74 =over 4\r
75 \r
76 =item * DateTime\r
77 \r
78 =item * DBIx::Class\r
79 \r
80 =back\r
81 \r
82 =head1 AUTHOR\r
83 \r
84 =over 4\r
85 \r
86 =item * Brian Cassidy E<lt>bricas@cpan.orgE<gt>\r
87 \r
88 =back\r
89 \r
90 =head1 COPYRIGHT AND LICENSE\r
91 \r
92 Copyright 2006 by Brian Cassidy\r
93 \r
94 This library is free software; you can redistribute it and/or modify\r
95 it under the same terms as Perl itself. \r
96 \r
97 =cut\r
98 \r
99 __PACKAGE__->mk_classdata( ctime_columns => [ ] );\r
100 __PACKAGE__->mk_classdata( mtime_columns => [ ] );\r
101 \r
102 sub register_column {\r
103     my( $class, $col, $info ) = @_;\r
104     $class->next::method( $col, $info );\r
105     \r
106     if( my $type = $info->{ epoch } ) {\r
107         $class->ctime_columns( [ @{ $class->ctime_columns }, $col ] ) if $type eq 'ctime';\r
108         $class->mtime_columns( [ @{ $class->mtime_columns }, $col ] ) if $type eq 'mtime';\r
109         \r
110         $class->inflate_column(\r
111             $col => {\r
112                 inflate => sub { DateTime->from_epoch( epoch => shift ) },\r
113                 deflate => sub { shift->epoch }\r
114             }\r
115         );\r
116     }\r
117 }\r
118 \r
119 sub insert {\r
120     my $self = shift;\r
121     my $time = time;\r
122     \r
123     for my $column ( @{ $self->ctime_columns }, @{ $self->mtime_columns } ) {\r
124         next if defined $self->get_column( $column );\r
125         $self->store_column( $column => $time );\r
126     }\r
127 \r
128     $self->next::method( @_ );\r
129 }\r
130 \r
131 sub update {\r
132     my $self = shift;\r
133     my $time = time;\r
134     \r
135     for my $column ( @{ $self->mtime_columns } ) {\r
136         $self->set_column( $column => $time );\r
137     }\r
138     \r
139     $self->next::method( @_ );\r
140 }\r
141 \r
142 1;