File: mkopt_bench.pl

package info (click to toggle)
libdata-util-perl 0.67-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 556 kB
  • sloc: perl: 2,958; ansic: 416; makefile: 8
file content (142 lines) | stat: -rw-r--r-- 2,717 bytes parent folder | download | duplicates (5)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!perl -w

use strict;
use Benchmark qw(:all);

use FindBin qw($Bin);
use lib $Bin;
use Common;

use Data::Util qw(:all);
use Data::OptList();

signeture 'Data::Util' => \&mkopt, 'Data::OptList' => \&Data::OptList::mkopt;

my @args = ([qw(foo bar), baz => []], "moniker", 0);

#use Test::More 'no_plan';
#is_deeply Data::Util::mkopt(@args), Data::OptList::mkopt(@args);

print "mkopt()\n";
print "no-unique, no-validation\n";
cmpthese -1 => {
	'OptList' => sub{
		for(1 .. 10){
			my $opt_ref = Data::OptList::mkopt(@args);
		}
	},
	'Util' => sub{
		for(1 .. 10){
			my $opt_ref = Data::Util::mkopt(@args);
		}
	},
	'inline' => sub{
		for(1 .. 10){
			my $opt_ref = [ (map{ [$_ => undef] } qw(foo bar) ), [baz => []] ];
		}
	},
};

@args = ([qw(foo bar), baz => []], "moniker", 1);
print "unique, no-validation\n";
cmpthese -1 => {
	'OptList' => sub{
		for(1 .. 10){
			my $opt_ref = Data::OptList::mkopt(@args);
		}
	},
	'Util' => sub{
		for(1 .. 10){
			my $opt_ref = Data::Util::mkopt(@args);
		}
	},
};

@args = ([qw(foo bar), baz => []], "moniker", 0, 'ARRAY');
print "no-unique, validation\n";
cmpthese -1 => {
	'OptList' => sub{
		for(1 .. 10){
			my $opt_ref = Data::OptList::mkopt(@args);
		}
	},
	'Util' => sub{
		for(1 .. 10){
			my $opt_ref = Data::Util::mkopt(@args);
		}
	},
};

@args = ([qw(foo bar), baz => []], "moniker", 1, 'ARRAY');
print "unique, validation\n";
cmpthese -1 => {
	'OptList' => sub{
		for(1 .. 10){
			my $opt_ref = Data::OptList::mkopt(@args);
		}
	},
	'Util' => sub{
		for(1 .. 10){
			my $opt_ref = Data::Util::mkopt(@args);
		}
	},
};

@args = ({foo => [], bar => [], baz => []}, "moniker", 0);
print "\nmkopt() from HASH ref\n";
cmpthese -1 => {
	'OptList' => sub{
		for(1 .. 10){
			my $opt_ref = Data::OptList::mkopt(@args);
		}
	},
	'Util' => sub{
		for(1 .. 10){
			my $opt_ref = Data::Util::mkopt(@args);
		}
	},
};


@args = ([qw(foo bar), baz => []]);
print "\nmkopt_hash()\n";
cmpthese -1 => {
	'OptList' => sub{
		for(1 .. 10){
			my $opt_ref = Data::OptList::mkopt_hash(@args);
		}
	},
	'Util' => sub{
		for(1 .. 10){
			my $opt_ref = Data::Util::mkopt_hash(@args);
		}
	},
	'inline' => sub{
		for(1 .. 10){
			my $opt_ref = { (map{ $_ => undef} qw(foo bar) ), baz => [] };
		}
	}
};

@args = ([qw(foo bar), baz => []], 'test', 'ARRAY');
print "mkopt_hash() with validation\n";
cmpthese -1 => {
	'OptList' => sub{
		for(1 .. 10){
			my $opt_ref = Data::OptList::mkopt_hash(@args);
		}
	},
	'Util' => sub{
		for(1 .. 10){
			my $opt_ref = Data::Util::mkopt_hash(@args);
		}
	},
	'inline' => sub{
		for(1 .. 10){
			my $opt_ref = { (map{ $_ => undef} qw(foo bar) ), baz => [] };
			while(my($k, $v) = each %{$opt_ref}){
				defined $v and array_ref($v);
			}
		}
	}
};