GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Data::Rand(3) User Contributed Perl Documentation Data::Rand(3)

Data::Rand - Random string and list utility

This document describes Data::Rand version 0.0.4

    use Data::Rand;

    my $rand_32_str = rand_data();
    my $rand_64_str = rand_data(64);
    my @contestants = rand_data( 2, \@studio_audience, { 'do_not_repeat_index' => 1 } ); 
    my $doubledigit = rand_data( 2, [0 .. 9] );
    my @rolled_dice = rand_data( 2, [1 .. 6] );
    my $pickanumber = rand_data( 1, [1 .. 1000] );

Simple interface to easily get a string or array made of randomly chosen pieces of a set of data.

That depends much on you.

Data::Rand works by building a string or array of the given length from a list of items that are "randomly" chosen, by default, using perl's built in rand().

You can affect rand()'s effectiveness by calling srand() or "seed_calc_with"() as you need.

You can also override the use of rand() internally altogether with something as mathmatically random as you like.

You can pass arguments as well which will affect how likley a not-so-random seeming pattern will emerge (for example: rand_data(1,['a']) will always return 'a', which is always predictable)

The tests for this module call rand_data() without calling srand() explicitly, with no arguments (IE out of the box defaults) 100,000 times and fails if there are any duplicates.

There's an optional test that does it 1,000,000 times but its not done by default simply for the sake of time and memory (for the test's lookup hash). From version zero-zero-four on new releases of this module must pass that test before being published.

So if that's "random" enough for you, well, there you have it!

If not, you can always make it more "truly" random as per the POD below.

rand_data() is exported by default. rand_data_string() and rand_data_array() are exportable.

In scalar context returns a string made of a number of parts you want made up from an array of parts.

In array context it returns a list the length of number of parts you want where each item is from the array of parts.

Takes 0 to 3 arguments:

1) length or number of random parts (default if not given or invalid is 32)
2) array ref of parts (default if not given or invalid is 0 .. 9 and upper and lower case a-z)
3) hashref of behavioral options (this one can also be passed as the only argument or the second argument so long as its the *last* argument)
keys and values are described below, unless otherwise noted options are booleans which default to false
  • 'use_unique_list'

    Make sure array of parts is unique. If you're passing the same list more than once and you are doing this each time it'd be more efficient to uniq() the list once and pass that to the function instead of using this.

  • 'do_not_repeat_index'

    Do not use any index of the array of parts more than once.

    Caveat: if the length is longer than the list of items then the length is silently adjusted to the length of the list.

        my $length = 10;
        my @random = rand_data( $length, @deck_of_cards, { 'do_not_repeat_index' => 1 } );
        # @random has 10 items
    
        my $length = 53;
        my @random = rand_data( $length, @deck_of_cards, { 'do_not_repeat_index' => 1 } );
        # @random has 52 items
        

    Caveat: This is not a uniq() functionality on the list of items, this is "no repeat" based on index. So:

        rand_data(3, [qw(dan dan dan)]);
        

    is valid (if not very useful) because it won't use index 0, 1, or 2 more than once

    This is probably what you'd want:

        rand_data($n, [ uniq @people ] ); # could still contain duplicates in results by using the same index more than once
        

    or even:

        rand_data($n, \@people, { 'do_not_repeat_index' => 1, 'use_unique_list' => 1 } ); # definitely no duplicates since you uniq()ed the list *and* told it to only use each index at most once
        

    Caveat: This also increases calculation time since it has to see if a randomly chosen index has already been used and if so try again.

  • 'get_random_index'

    This should be a code ref that accepts one argument, the number of items we have to choose from, and returns an index chosen at random (however you choose to define "random")

        sub {
            my ($length) = @_;
            return Crypt::Random::makerandom_itv( 'Lower' => 0, 'Upper' => $length, ...); 
        }
        

    Note: The above example (w/ Strong => 0 (IE read() is not being blocked on /dev/random)) benchmarked appx 570 times as slow as the default rand() based solution but its much more truly random.

Same args as rand_data(). The difference is that it always returns a string regardless of context.

    my $rand_str = rand_data_string( @rand_args ); # $rand_str contains the random string.
    my @stuff    = rand_data_string( @rand_args ); # $stuff[0] contains the random string.

Same args as rand_data(). The difference is that it always returns an array regardless of context.

    my @rand_data = rand_data_array( @rand_args ); # @rand_data contains the random items
    my $rand_data = rand_data_array( @rand_args ); # $rand_data is an array ref to the list of random items

This is a simple shortcut function you can use to call srand() for you with a pre-done calculation as outlined below. If this does not do what you like use srand() directly.

It brings in Time::HiRes for you if needed and then calls srand() like so:

    srand($hires_time, $hires_micro_seconds, $$, 'YOUR ARGUEMENT HERE' || rand( 999_999_999_999_999));

You don't have to call it of course but here are some examples if you choose to:

    seed_calc_with();                                  # same as seed_calc_with( rand( 999_999_999_999_999 ) );
    seed_calc_with( rand( 999_999_999_999_999 ) );     # same as seed_calc_with();
    seed_calc_with( unpack '%L*', `ps axww | gzip` );
    seed_calc_with( Math::TrulyRandom::truly_random_value() );
    seed_calc_with( Crypt::Random::makerandom(...) );

Its not exportable on purpose to discourage blindly using it since calling srand() improperly can result in rand()'s result being less random.

See srand and rand for more information.

Throws no warnings or errors of its own.

Data::Rand requires no configuration files or environment variables.

"seed_calc_with"() brings in Time::HiRes

None reported.

No bugs have been reported.

Please report any bugs or feature requests to "bug-data-rand@rt.cpan.org", or through the web interface at <http://rt.cpan.org>.

Re-add tests I had worked up that went away with a failed HD

May add these behaviorial booleans to option hashref depending on feedback:

    'return_on_bad_args' # do not use defaults, just return;
    'carp_on_bad_args'   # carp() about what args are bad and why
    'croak_on_bad_args'  # same as carp but fatal

Gratefully apply helpful suggestions to make this module better

Daniel Muey "<http://drmuey.com/cpan_contact.pl>"

Copyright (c) 2007, Daniel Muey "<http://drmuey.com/cpan_contact.pl>". All rights reserved.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.

BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

2022-04-08 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.