line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package IMDB::Local::Director; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
18
|
use 5.006; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
27
|
|
4
|
1
|
|
|
1
|
|
3
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
19
|
|
5
|
1
|
|
|
1
|
|
3
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
81
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
IMDB::Local::Director - Object representation of Director information. |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 VERSION |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Version 1.00 |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=cut |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $VERSION = '1.00'; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 SYNOPSIS |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 EXPORT |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 SUBROUTINES/METHODS |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 function1 |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=cut |
29
|
|
|
|
|
|
|
|
30
|
1
|
|
|
1
|
|
5
|
use IMDB::Local::DB::BaseObject; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
5
|
|
31
|
1
|
|
|
1
|
|
23
|
use base qw(IMDB::Local::DB::BaseObject); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
57
|
|
32
|
|
|
|
|
|
|
|
33
|
1
|
|
|
1
|
|
4
|
use constant DB_TABLE => 'Directors'; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
38
|
|
34
|
1
|
|
|
1
|
|
3
|
use constant DB_KEY => 'DirectorID'; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
47
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
use Class::MethodMaker |
37
|
|
|
|
|
|
|
[ |
38
|
1
|
|
|
|
|
6
|
scalar => [DB_KEY], |
39
|
|
|
|
|
|
|
array => [qw/ -static db_columns/], |
40
|
|
|
|
|
|
|
new => [qw/ -init -hash new/] , |
41
|
1
|
|
|
1
|
|
3
|
]; |
|
1
|
|
|
|
|
1
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
sub init($) |
44
|
|
|
|
|
|
|
{ |
45
|
0
|
|
|
0
|
0
|
|
my ($self)=@_; |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
# static array needs to be initialized only if it isn't already |
48
|
|
|
|
|
|
|
#if ( !$self->db_ignoredColumns_count ) { |
49
|
|
|
|
|
|
|
#$self->db_ignoredColumns_push(DB_COLUMNS_IGNORE); |
50
|
|
|
|
|
|
|
#} |
51
|
|
|
|
|
|
|
|
52
|
0
|
|
|
|
|
|
$self->initHandle(DB_TABLE, DB_KEY); |
53
|
|
|
|
|
|
|
|
54
|
0
|
0
|
|
|
|
|
if ( $self->populateUsingKey($self->get(DB_KEY)) ) { |
55
|
0
|
|
|
|
|
|
return $self; |
56
|
|
|
|
|
|
|
} |
57
|
0
|
|
|
|
|
|
return(undef); |
58
|
|
|
|
|
|
|
} |
59
|
|
|
|
|
|
|
|
60
|
1
|
|
|
1
|
|
1009
|
use Carp; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
393
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
sub createNew($%) |
63
|
|
|
|
|
|
|
{ |
64
|
0
|
|
|
0
|
0
|
|
my ($imdbdb, %args)=@_; |
65
|
|
|
|
|
|
|
|
66
|
0
|
0
|
|
|
|
|
carp("no name given") if ( !defined($args{name}) ); |
67
|
|
|
|
|
|
|
|
68
|
0
|
|
|
|
|
|
my $id=$imdbdb->insert_db(DB_TABLE, DB_KEY, %args); |
69
|
0
|
0
|
|
|
|
|
if ( !defined($id) ) { |
70
|
0
|
|
|
|
|
|
return(undef); |
71
|
|
|
|
|
|
|
} |
72
|
0
|
|
|
|
|
|
return new IMDB::Local::Director(imdbdb=>$imdbdb, TableID=>$id); |
73
|
|
|
|
|
|
|
} |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
sub FullName($) |
76
|
|
|
|
|
|
|
{ |
77
|
0
|
|
|
0
|
0
|
|
my ($self)=@_; |
78
|
|
|
|
|
|
|
|
79
|
0
|
|
|
|
|
|
my $str=$self->Name(); |
80
|
0
|
|
|
|
|
|
$str=~s/\s*\([IVXL]+\)$//o; |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
# convert lastname, firstname |
83
|
0
|
0
|
|
|
|
|
if ( $str=~m/^(.+),\s*(.+)$/o ) { |
84
|
0
|
|
|
|
|
|
return("$2 $1"); |
85
|
|
|
|
|
|
|
} |
86
|
|
|
|
|
|
|
# fall back to returning whatever we have |
87
|
0
|
|
|
|
|
|
return($str); |
88
|
|
|
|
|
|
|
} |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
sub findByDirectorID($$) |
91
|
|
|
|
|
|
|
{ |
92
|
0
|
|
|
0
|
0
|
|
my ($imdbdb, $id)=@_; |
93
|
0
|
|
|
|
|
|
return new IMDB::Local::Director(imdbdb=>$imdbdb, DB_KEY, $id); |
94
|
|
|
|
|
|
|
} |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
sub findByName($$) |
97
|
|
|
|
|
|
|
{ |
98
|
0
|
|
|
0
|
0
|
|
my ($imdbdb, $name)=@_; |
99
|
|
|
|
|
|
|
|
100
|
0
|
|
|
|
|
|
my $id=$imdbdb->select2Scalar("SELECT ".DB_KEY." from ".DB_TABLE." where name='$name'"); |
101
|
0
|
0
|
|
|
|
|
if ( defined($id) ) { |
102
|
0
|
|
|
|
|
|
return new IMDB::Local::Director(imdbdb=>$imdbdb, DB_KEY, $id); |
103
|
|
|
|
|
|
|
} |
104
|
0
|
|
|
|
|
|
return(undef); |
105
|
|
|
|
|
|
|
} |
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
sub getIDs($$) |
108
|
|
|
|
|
|
|
{ |
109
|
0
|
|
|
0
|
0
|
|
my ($class, $imdbdb)=@_; |
110
|
0
|
|
|
|
|
|
my @ids; |
111
|
|
|
|
|
|
|
|
112
|
0
|
|
|
|
|
|
my $res=$imdbdb->dbh->selectall_arrayref("SELECT ".DB_KEY." FROM ".DB_TABLE." ORDER BY ".DB_KEY.""); |
113
|
0
|
0
|
|
|
|
|
if ( !defined($res) ) { |
114
|
0
|
|
|
|
|
|
return(@ids); |
115
|
|
|
|
|
|
|
} |
116
|
|
|
|
|
|
|
|
117
|
0
|
|
|
|
|
|
for my $list (@$res) { |
118
|
0
|
|
|
|
|
|
push(@ids, $list->[0]); |
119
|
|
|
|
|
|
|
} |
120
|
0
|
|
|
|
|
|
return(@ids); |
121
|
|
|
|
|
|
|
} |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
=head1 AUTHOR |
124
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
jerryv, C<< >> |
126
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
=head1 BUGS |
128
|
|
|
|
|
|
|
|
129
|
|
|
|
|
|
|
Please report any bugs or feature requests to C, or through |
130
|
|
|
|
|
|
|
the web interface at L. I will be notified, and then you'll |
131
|
|
|
|
|
|
|
automatically be notified of progress on your bug as I make changes. |
132
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
=head1 SUPPORT |
135
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
perldoc IMDB::Local::Director |
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
You can also look for information at: |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
=over 4 |
144
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker (report bugs here) |
146
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
L |
148
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
=item * AnnoCPAN: Annotated CPAN documentation |
150
|
|
|
|
|
|
|
|
151
|
|
|
|
|
|
|
L |
152
|
|
|
|
|
|
|
|
153
|
|
|
|
|
|
|
=item * CPAN Ratings |
154
|
|
|
|
|
|
|
|
155
|
|
|
|
|
|
|
L |
156
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
=item * Search CPAN |
158
|
|
|
|
|
|
|
|
159
|
|
|
|
|
|
|
L |
160
|
|
|
|
|
|
|
|
161
|
|
|
|
|
|
|
=back |
162
|
|
|
|
|
|
|
|
163
|
|
|
|
|
|
|
|
164
|
|
|
|
|
|
|
=head1 ACKNOWLEDGEMENTS |
165
|
|
|
|
|
|
|
|
166
|
|
|
|
|
|
|
|
167
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
168
|
|
|
|
|
|
|
|
169
|
|
|
|
|
|
|
Copyright 2015 jerryv. |
170
|
|
|
|
|
|
|
|
171
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
172
|
|
|
|
|
|
|
under the terms of the the Artistic License (2.0). You may obtain a |
173
|
|
|
|
|
|
|
copy of the full license at: |
174
|
|
|
|
|
|
|
|
175
|
|
|
|
|
|
|
L |
176
|
|
|
|
|
|
|
|
177
|
|
|
|
|
|
|
Any use, modification, and distribution of the Standard or Modified |
178
|
|
|
|
|
|
|
Versions is governed by this Artistic License. By using, modifying or |
179
|
|
|
|
|
|
|
distributing the Package, you accept this license. Do not use, modify, |
180
|
|
|
|
|
|
|
or distribute the Package, if you do not accept this license. |
181
|
|
|
|
|
|
|
|
182
|
|
|
|
|
|
|
If your Modified Version has been derived from a Modified Version made |
183
|
|
|
|
|
|
|
by someone other than you, you are nevertheless required to ensure that |
184
|
|
|
|
|
|
|
your Modified Version complies with the requirements of this license. |
185
|
|
|
|
|
|
|
|
186
|
|
|
|
|
|
|
This license does not grant you the right to use any trademark, service |
187
|
|
|
|
|
|
|
mark, tradename, or logo of the Copyright Holder. |
188
|
|
|
|
|
|
|
|
189
|
|
|
|
|
|
|
This license includes the non-exclusive, worldwide, free-of-charge |
190
|
|
|
|
|
|
|
patent license to make, have made, use, offer to sell, sell, import and |
191
|
|
|
|
|
|
|
otherwise transfer the Package with respect to any patent claims |
192
|
|
|
|
|
|
|
licensable by the Copyright Holder that are necessarily infringed by the |
193
|
|
|
|
|
|
|
Package. If you institute patent litigation (including a cross-claim or |
194
|
|
|
|
|
|
|
counterclaim) against any party alleging that the Package constitutes |
195
|
|
|
|
|
|
|
direct or contributory patent infringement, then this Artistic License |
196
|
|
|
|
|
|
|
to you shall terminate on the date that such litigation is filed. |
197
|
|
|
|
|
|
|
|
198
|
|
|
|
|
|
|
Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER |
199
|
|
|
|
|
|
|
AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. |
200
|
|
|
|
|
|
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR |
201
|
|
|
|
|
|
|
PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY |
202
|
|
|
|
|
|
|
YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR |
203
|
|
|
|
|
|
|
CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR |
204
|
|
|
|
|
|
|
CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, |
205
|
|
|
|
|
|
|
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
206
|
|
|
|
|
|
|
|
207
|
|
|
|
|
|
|
|
208
|
|
|
|
|
|
|
=cut |
209
|
|
|
|
|
|
|
|
210
|
|
|
|
|
|
|
1; # End of IMDB::Local::Director |