changed key from 'datetime' to 'epoch'. added some pod
[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 =item * Brian Cassidy E<lt>bricas@cpan.orgE<gt>\r
85 \r
86 =back\r
87 \r
88 =head1 COPYRIGHT AND LICENSE\r
89 \r
90 Copyright 2006 by Brian Cassidy\r
91 \r
92 This library is free software; you can redistribute it and/or modify\r
93 it under the same terms as Perl itself. \r
94 \r
95 =cut\r
96 \r
97 __PACKAGE__->mk_classdata( ctime_columns => [ ] );\r
98 __PACKAGE__->mk_classdata( mtime_columns => [ ] );\r
99 \r
100 sub register_column {\r
101     my( $class, $col, $info ) = @_;\r
102     $class->next::method( $col, $info );\r
103     \r
104     if( my $type = $info->{ epoch } ) {\r
105         $class->ctime_columns( [ @{ $class->ctime_columns }, $col ] ) if $type eq 'ctime';\r
106         $class->mtime_columns( [ @{ $class->mtime_columns }, $col ] ) if $type eq 'mtime';\r
107         \r
108         $class->inflate_column(\r
109             $col => {\r
110                 inflate => sub { DateTime->from_epoch( epoch => shift ) },\r
111                 deflate => sub { shift->epoch }\r
112             }\r
113         );\r
114     }\r
115 }\r
116 \r
117 sub insert {\r
118     my $self = shift;\r
119     my $time = time;\r
120     \r
121     for my $column ( @{ $self->ctime_columns }, @{ $self->mtime_columns } ) {\r
122         next if defined $self->get_column( $column );\r
123         $self->store_column( $column => $time );\r
124     }\r
125 \r
126     $self->next::method( @_ );\r
127 }\r
128 \r
129 sub update {\r
130     my $self = shift;\r
131     my $time = time;\r
132     \r
133     for my $column ( @{ $self->mtime_columns } ) {\r
134         $self->set_column( $column => $time );\r
135     }\r
136     \r
137     $self->next::method( @_ );\r
138 }\r
139 \r
140 1;