(no commit message)
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / UUIDColumns.pm
CommitLineData
7da9cd47 1package DBIx::Class::UUIDColumns;
1edd1722 2use base qw/DBIx::Class/;
7da9cd47 3
7da9cd47 4__PACKAGE__->mk_classdata( 'uuid_auto_columns' => [] );
947acfd9 5__PACKAGE__->mk_classdata( 'uuid_maker' );
6__PACKAGE__->uuid_class( __PACKAGE__->_find_uuid_module );
7da9cd47 7
7da9cd47 8# be compatible with Class::DBI::UUID
9sub uuid_columns {
10 my $self = shift;
11 for (@_) {
701da8c4 12 $self->throw_exception("column $_ doesn't exist") unless $self->has_column($_);
7da9cd47 13 }
14 $self->uuid_auto_columns(\@_);
15}
16
947acfd9 17sub uuid_class {
18 my ($self, $class) = @_;
19
20 if ($class) {
21 $class = "DBIx::Class::UUIDMaker$class" if $class =~ /^::/;
22
23 if (!eval "require $class") {
24 $self->throw_exception("$class could not be loaded: $@");
25 } elsif (!$class->isa('DBIx::Class::UUIDMaker')) {
26 $self->throw_exception("$class is not a UUIDMaker subclass");
27 } else {
28 $self->uuid_maker($class->new);
29 };
30 };
31
32 return ref $self->uuid_maker;
33};
34
7da9cd47 35sub insert {
3b7992e1 36 my $self = shift;
7da9cd47 37 for my $column (@{$self->uuid_auto_columns}) {
103647d5 38 $self->store_column( $column, $self->get_uuid )
39 unless defined $self->get_column( $column );
7da9cd47 40 }
3b7992e1 41 $self->next::method(@_);
7da9cd47 42}
43
44sub get_uuid {
947acfd9 45 return shift->uuid_maker->as_string;
7da9cd47 46}
47
947acfd9 48sub _find_uuid_module {
e78f023a 49 if (eval{require Data::UUID}) {
50 return '::Data::UUID';
51 } elsif ($^O ne 'openbsd' && eval{require APR::UUID}) {
947acfd9 52 # APR::UUID on openbsd causes some as yet unfound nastyness for XS
53 return '::APR::UUID';
54 } elsif (eval{require UUID}) {
55 return '::UUID';
947acfd9 56 } elsif (eval{
57 # squelch the 'too late for INIT' warning in Win32::API::Type
58 local $^W = 0;
59 require Win32::Guidgen;
60 }) {
61 return '::Win32::Guidgen';
62 } elsif (eval{require Win32API::GUID}) {
63 return '::Win32API::GUID';
64 } else {
65 shift->throw_exception('no suitable uuid module could be found')
66 };
67};
68
e78f023a 691;
70__END__
71
72=head1 NAME
73
74DBIx::Class::UUIDColumns - Implicit uuid columns
75
76=head1 SYNOPSIS
77
78 package Artist;
79 __PACKAGE__->load_components(qw/UUIDColumns Core DB/);
80 __PACKAGE__->uuid_columns( 'artist_id' );
81
82=head1 DESCRIPTION
83
84This L<DBIx::Class> component resembles the behaviour of
85L<Class::DBI::UUID>, to make some columns implicitly created as uuid.
86
87When loaded, C<UUIDColumns> will search for a suitable uuid generation module
88from the following list of supported modules:
89
90 Data::UUID
91 APR::UUID*
92 UUID
93 Win32::Guidgen
94 Win32API::GUID
95
96If no supporting module can be found, an exception will be thrown.
97
98*APR::UUID will not be loaded under OpenBSD due to an as yet unidentified XS
99issue.
100
101If you would like to use a specific module, you can set C<uuid_class>:
102
103 __PACKAGE__->uuid_class('::Data::UUID');
104 __PACKAGE__->uuid_class('MyUUIDGenerator');
105
106Note that the component needs to be loaded before Core.
107
108=head1 METHODS
109
110=head2 uuid_columns(@columns)
111
112Takes a list of columns to be filled with uuids during insert.
113
114 __PACKAGE__->uuid_columns('id');
115
c17c525c 116sub uuid_class {
117 my ($self, $class) = @_;
e78f023a 118
c17c525c 119 if ($class) {
120 $class = "DBIx::Class::UUIDMaker$class" if $class =~ /^::/;
e78f023a 121
c17c525c 122 if (!eval "require $class") {
123 $self->throw_exception("$class could not be loaded: $@");
124 } elsif (!$class->isa('DBIx::Class::UUIDMaker')) {
125 $self->throw_exception("$class is not a UUIDMaker subclass");
126 } else {
127 $self->uuid_maker($class->new);
128 };
129 };
e78f023a 130
c17c525c 131 return ref $self->uuid_maker;
132};
e78f023a 133
c17c525c 134sub insert {
135 my $self = shift;
136 for my $column (@{$self->uuid_auto_columns}) {
137 $self->store_column( $column, $self->get_uuid )
138 unless defined $self->get_column( $column );
139 }
140 $self->next::method(@_);
141}
e78f023a 142
c17c525c 143sub get_uuid {
144 return shift->uuid_maker->as_string;
145}
e78f023a 146
c17c525c 147sub _find_uuid_module {
148 if ($^O ne 'openbsd' && eval{require APR::UUID}) {
149 # APR::UUID on openbsd causes some as yet unfound nastyness for XS
150 return '::APR::UUID';
151 } elsif (eval{require UUID}) {
152 return '::UUID';
153 } elsif (eval{require Data::UUID}) {
154 return '::Data::UUID';
155 } elsif (eval{
156 # squelch the 'too late for INIT' warning in Win32::API::Type
157 local $^W = 0;
158 require Win32::Guidgen;
159 }) {
160 return '::Win32::Guidgen';
161 } elsif (eval{require Win32API::GUID}) {
162 return '::Win32API::GUID';
163 } else {
164 shift->throw_exception('no suitable uuid module could be found')
165 };
166};
e78f023a 167
7da9cd47 168=head1 AUTHORS
169
170Chia-liang Kao <clkao@clkao.org>
e78f023a 171Chris Laco <claco@chrislaco.com>
7da9cd47 172
173=head1 LICENSE
174
175You may distribute this code under the same terms as Perl itself.