line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
4
|
|
|
4
|
|
23246
|
use utf8; |
|
4
|
|
|
|
|
4
|
|
|
4
|
|
|
|
|
17
|
|
2
|
4
|
|
|
4
|
|
83
|
use strict; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
53
|
|
3
|
4
|
|
|
4
|
|
10
|
use warnings; |
|
4
|
|
|
|
|
3
|
|
|
4
|
|
|
|
|
111
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package DBIx::DR::Util; |
6
|
|
|
|
|
|
|
|
7
|
4
|
|
|
4
|
|
11
|
use base qw(Exporter); |
|
4
|
|
|
|
|
6
|
|
|
4
|
|
|
|
|
1227
|
|
8
|
|
|
|
|
|
|
our @EXPORT = qw(camelize decamelize); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub camelize($) { |
12
|
30
|
|
|
30
|
0
|
788
|
my ($str) = @_; |
13
|
|
|
|
|
|
|
|
14
|
30
|
|
|
|
|
66
|
my ($module, $method) = split /#/, $str; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
$module = |
17
|
67
|
|
|
|
|
95
|
join '', map { ucfirst } split /_/, |
18
|
30
|
|
|
|
|
62
|
join '::' => map { ucfirst lc } split /-/ => $module; |
|
70
|
|
|
|
|
136
|
|
19
|
|
|
|
|
|
|
|
20
|
30
|
|
|
|
|
79
|
$module =~ s/dbix::dr::/DBIx::DR::/i; |
21
|
|
|
|
|
|
|
|
22
|
30
|
|
|
|
|
56
|
return ($module, $method); |
23
|
|
|
|
|
|
|
} |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
sub decamelize($;$) { |
27
|
7
|
|
|
7
|
0
|
330
|
my ($class, $constructor) = @_; |
28
|
7
|
|
|
|
|
12
|
for ($class) { |
29
|
7
|
|
|
|
|
53
|
s/(?
|
30
|
7
|
|
|
|
|
18
|
s/::_/::/g; |
31
|
7
|
|
|
|
|
16
|
s/::/-/g; |
32
|
|
|
|
|
|
|
} |
33
|
|
|
|
|
|
|
|
34
|
7
|
100
|
|
|
|
14
|
return lc $class unless $constructor; |
35
|
6
|
|
|
|
|
39
|
return lc($class) . "#$constructor"; |
36
|
|
|
|
|
|
|
} |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
1; |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 NAME |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
DBIx::DR::Util - some functions for L. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 COPYRIGHT |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Copyright (C) 2011 Dmitry E. Oboukhov |
47
|
|
|
|
|
|
|
Copyright (C) 2011 Roman V. Nikolaev |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
This program is free software, you can redistribute it and/or |
50
|
|
|
|
|
|
|
modify it under the terms of the Artistic License. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=cut |
53
|
|
|
|
|
|
|
|