File Coverage

blib/lib/IMDB/Local/Keyword.pm
Criterion Covered Total %
statement 27 53 50.9
branch 0 10 0.0
condition n/a
subroutine 9 14 64.2
pod 0 5 0.0
total 36 82 43.9


line stmt bran cond sub pod time code
1             package IMDB::Local::Keyword;
2              
3 1     1   13 use 5.006;
  1         2  
  1         30  
4 1     1   3 use strict;
  1         2  
  1         18  
5 1     1   3 use warnings;
  1         2  
  1         33  
6              
7             =head1 NAME
8              
9             IMDB::Local::Keyword - Object representation of Keyword information.
10              
11             =head1 VERSION
12              
13             Version 0.01
14              
15             =cut
16              
17             our $VERSION = '1.00';
18              
19              
20             =head1 SYNOPSIS
21              
22             Quick summary of what the module does.
23              
24             Perhaps a little code snippet.
25              
26             use IMDB::Local::Keyword;
27              
28             my $foo = IMDB::Local::Keyword->new();
29             ...
30              
31             =head1 EXPORT
32              
33             A list of functions that can be exported. You can delete this section
34             if you don't export anything, such as for a purely object-oriented module.
35              
36             =head1 SUBROUTINES/METHODS
37              
38             =head2 function1
39              
40             =cut
41              
42 1     1   4 use IMDB::Local::DB::BaseObject;
  1         1  
  1         5  
43 1     1   21 use base qw(IMDB::Local::DB::BaseObject);
  1         2  
  1         55  
44              
45 1     1   4 use constant DB_TABLE => 'Keywords';
  1         1  
  1         35  
46 1     1   3 use constant DB_KEY => 'KeywordID';
  1         1  
  1         49  
47              
48             use Class::MethodMaker
49             [
50 1         6 scalar => [DB_KEY],
51             array => [qw/ -static db_columns/],
52             new => [qw/ -init -hash new/] ,
53 1     1   4 ];
  1         1  
54              
55             sub init($)
56             {
57 0     0 0   my ($self)=@_;
58              
59             # static array needs to be initialized only if it isn't already
60             #if ( !$self->db_ignoredColumns_count ) {
61             #$self->db_ignoredColumns_push(DB_COLUMNS_IGNORE);
62             #}
63              
64 0           $self->initHandle(DB_TABLE, DB_KEY);
65              
66 0 0         if ( $self->populateUsingKey($self->get(DB_KEY)) ) {
67 0           return $self;
68             }
69 0           return(undef);
70             }
71              
72 1     1   984 use Carp;
  1         1  
  1         319  
73              
74             sub createNew($%)
75             {
76 0     0 0   my ($imdbdb, %args)=@_;
77              
78 0 0         carp("no name given") if ( !defined($args{name}) );
79              
80 0           my $id=$imdbdb->insert_db(DB_TABLE, DB_KEY, %args);
81 0 0         if ( !defined($id) ) {
82 0           return(undef);
83             }
84 0           return new IMDB::Local::Keyword(imdbdb=>$imdbdb, TableID=>$id);
85             }
86              
87             sub findByKeywordID($$)
88             {
89 0     0 0   my ($imdbdb, $id)=@_;
90 0           return new IMDB::Local::Keyword(imdbdb=>$imdbdb, DB_KEY, $id);
91             }
92              
93             sub findByName($$)
94             {
95 0     0 0   my ($imdbdb, $name)=@_;
96              
97 0           my $id=$imdbdb->select2Scalar("SELECT ".DB_KEY." from ".DB_TABLE." where name='$name'");
98 0 0         if ( defined($id) ) {
99 0           return new IMDB::Local::Keyword(imdbdb=>$imdbdb, DB_KEY, $id);
100             }
101 0           return(undef);
102             }
103              
104             sub getIDs($$)
105             {
106 0     0 0   my ($class, $imdbdb)=@_;
107 0           my @ids;
108              
109 0           my $res=$imdbdb->dbh->selectall_arrayref("SELECT ".DB_KEY." FROM ".DB_TABLE." ORDER BY ".DB_KEY."");
110 0 0         if ( !defined($res) ) {
111 0           return(@ids);
112             }
113              
114 0           for my $list (@$res) {
115 0           push(@ids, $list->[0]);
116             }
117 0           return(@ids);
118             }
119              
120              
121             =head1 AUTHOR
122              
123             jerryv, C<< >>
124              
125             =head1 BUGS
126              
127             Please report any bugs or feature requests to C, or through
128             the web interface at L. I will be notified, and then you'll
129             automatically be notified of progress on your bug as I make changes.
130              
131              
132              
133              
134             =head1 SUPPORT
135              
136             You can find documentation for this module with the perldoc command.
137              
138             perldoc IMDB::Local::Keyword
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::Keyword