Data::UUID::LibUUID(3pm) | User Contributed Perl Documentation | Data::UUID::LibUUID(3pm) |
Data::UUID::LibUUID - uuid.h based UUID generation (versions 2 and 4 depending on platform)
use Data::UUID::LibUUID; my $uuid = new_uuid_string();
This module provides bindings for libuuid shipped with e2fsprogs or uuid-dev on debian, and also works with the system uuid.h on darwin.
$version can be either 2, or 4 and defaults to whatever the underlying implementation prefers.
Version 1 is timestamp/MAC based UUIDs, like Data::UUID provides. They reveal time and host information, so they may be considered a security risk.
Version 2 is described here <http://www.opengroup.org/onlinepubs/9696989899/chap5.htm#tagcjh_08_02_01_01>. It is similar to version 1 but considered more secure.
Version 4 is based just on random data. This is not guaranteed to be high quality random data, but usually is supposed to be.
On MacOS X "getpid" is called before UUID generation, to ensure UUIDs are unique accross forks. Behavior on other platforms may vary.
Returns undef on a non UUID argument.
Returns undef on a non UUID argument.
Returns undef on non UUID arguments.
Returns undef on non UUID arguments.
package MyFoo; use Data::UUID::LibUUID ( new_dce_uuid_string => { -as "generate_uuid" }, ); sub yadda { my $self = shift; my $id = $self->generate_uuid; }
This allows the ID generation code to be subclassed, but still keeps the hassle down to a minimum. DCE is UUID version two specification.
This is not a UUID (it's longer), but if you can store variable length identifier (and exposing the system clock is not an issue) they can be used to create an identifier that is both universally unique, and lexically increasing.
Note that while the identifiers are universally unique, there is no universal ordering (that would require synchronization), so identifiers generated on different machines or even different process/thread could have IDs which interleave.
Data::GUID, Data::UUID, UUID, <http://e2fsprogs.sourceforge.net/>
This module is maintained using Darcs. You can get the latest version from <http://nothingmuch.woobling.org/code>, and use "darcs send" to commit changes.
Yuval Kogman <nothingmuch@woobling.org>
Copyright (c) 2008 Yuval Kogman. All rights reserved This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2024-04-10 | perl v5.38.2 |