1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
package DBIx::Class::UUIDColumns::UUIDMaker::UUID;
use strict;
use warnings;
use base qw/DBIx::Class::UUIDColumns::UUIDMaker/;
use UUID ();
sub as_string {
my ($uuid, $uuidstring);
UUID::generate($uuid);
UUID::unparse($uuid, $uuidstring);
return $uuidstring;
};
1;
__END__
=head1 NAME
DBIx::Class::UUIDColumns::UUIDMaker::UUID - Create uuids using UUID
=head1 SYNOPSIS
package Artist;
__PACKAGE__->load_components(qw/UUIDColumns Core DB/);
__PACKAGE__->uuid_columns( 'artist_id' );
__PACKAGE__->uuid_class('::UUID');
=head1 DESCRIPTION
This DBIx::Class::UUIDColumns::UUIDMaker subclass uses UUID to generate uuid
strings in the following format:
098f2470-bae0-11cd-b579-08002b30bfeb
=head1 METHODS
=head2 as_string
Returns the new uuid as a string.
=head1 SEE ALSO
L<UUID>
=head1 AUTHOR
Chris Laco <claco@chrislaco.com>
=head1 LICENSE
You may distribute this code under the same terms as Perl itself.
|