This file is indexed.

/usr/share/perl5/RoPkg/DBCollection.pm is in libropkg-perl 0.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
############################################################################
##      Copyright (C) 2006 Subredu Manuel  <diablo@iasi.roedu.net>.        #
##                                                                         #
## This program is free software; you can redistribute it and/or modify    #
## it under the terms of the GNU General Public License v2 as published by #
## the Free Software Foundation.                                           #
##                                                                         #
## This program is distributed in the hope that it will be useful,         #
## but WITHOUT ANY WARRANTY; without even the implied warranty of          #
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           #
## GNU General Public License for more details.                            #
##                                                                         #
## You should have received a copy of the GNU General Public License       #
## along with this program; if not, write to the Free Software             #
## Foundation, Inc., 59 Temple Place - Suite 330, Boston,                  #
## MA 02111-1307,USA.                                                      #
############################################################################

package RoPkg::DBCollection;

use strict;
use warnings;

use SQL::Abstract;
use DBI;
use Scalar::Util qw(blessed);

use vars qw($VERSION $dbo_method);

use RoPkg::DB;
use RoPkg::Exceptions;
use RoPkg::Utils qw(CheckParam);

$VERSION='0.1.3';

sub new {
  my ($class, %opt) = @_;
  my $self;

  CheckParam(\%opt,qw(dbo dbo_method));
  $dbo_method = $opt{dbo_method};

  $self = bless { %opt }, $class;
  
  $self->{sa}    = SQL::Abstract->new();
  $self->{table} = '_table_name_has_not_been_set_';

  return $self;
}

# Returns the database handle of the database connection
sub dbh {
  my ($self) = @_;

  if (!blessed($self)) {
    OutsideClass->throw(
      error    => 'Called outside class instance',
      pkg_name => 'RoPkg::DBCollection'
    );
  }

  return $self->{dbo}->$dbo_method();
}

sub dbo {
  my ($self) = @_;

  if (!blessed($self)) {
    OutsideClass->throw(
      error    => 'Called outside class instance',
      pkg_name => 'RoPkg::DBCollection'
    );
  }

  return $self->{dbo};
}

sub dbo_method {
  my ($self) = @_;

  if (!blessed($self)) {
    OutsideClass->throw(
      error    => 'Called outside class instance',
      pkg_name => 'RoPkg::DBCollection'
    );
  }

  return $self->{dbo_method};
}
# Counts the number of records in a table
sub _count {
  my ($self, $fields) = @_;
  my ($sth, $sql, @bval);

  ($sql, @bval) = $self->{sa}->select($self->{table}, 'COUNT(*)', $fields);
  $sth = $self->dbh()->prepare($sql);
  $sth->execute(@bval);

  return $sth->fetchrow;
}

# Get a list of objects initialized from database
sub _get {
  my ($self, $class_name, $fields, $order_by) = @_;
  my ($sth, $sql, @bval, @result);

  if (!$class_name) {
    Param::Missing->throw(
      error    => '$class_name not specified',
      pkg_name => 'RoPkg::DBCollection',
    );
  }

  if (ref($class_name) eq 'HASH') {
    Param::Wrong->throw(
      error    => '$class_name could not be a hash reference',
      pkg_name => 'RoPkg::DBCollection',
    );
  }

  ($sql, @bval) = $self->{sa}->select($self->{table}, q{*}, $fields, $order_by);
  $sth = $self->dbh()->prepare($sql);
  $sth->execute(@bval);

  # No results ? Throw exception :)
  if ($sth->rows == 0) {
    DB::NoResults->throw(
      error    => 'No record matched your query',
      pkg_name => ref($self),
    );
  }

  # load the class
  eval "require $class_name";

  # cycle through the list of objects
  while(my $rec_hash = $sth->fetchrow_hashref) {
    my $nob;

    #create a new object
    $nob = $class_name->new(
             dbo        => $self->{dbo},
             dbo_method => $self->{dbo_method},
           );

    #initialize the object
    foreach(keys(%{ $rec_hash })) {
      my $method = $_;
      
      #only if the object have that method
      if ( $class_name->can($method) ) {
        $nob->$method( $rec_hash->{$method} );
      }
    }

    #append the object to the list
    push @result, $nob;
  }

  return @result;
}

1;

__END__


=head1 NAME

RoPkg::DBCollection - base class who can be used for collections of database objects

=head1 VERSION

0.1.3

=head1 DESCRIPTION

RoPkg::DBCollection is a class who can be used as a base class
for database collection of objects. Is used by I<RoPkg::Simba::Mirrors>
,I<RoPkg::Simba::Commands> and I<RoPkg::Simba::Excludes>. This class
should not be used directly in applications but derived.

=head1 SUBROUTINES/METHODS

=head2 new()

The class constructor. Accepts a hash with parameters. The parameters
who can be passed to new() are:

=over 3

=item dbo - database object (instance of RoPkg::DB)

=item dbo_method - database method (for use with RoPkg::DB)

=item table - the sql table name where the objects data can be found

=back

If you don't specify the B<dbo> and B<dbo_method> parameters,
a I<Param::Missing> exception is raised.

=head2 dbh()

returns the database handler (DBI object) used by the class.

=head2 _count($fields)

Returns the number of records who match the fields specified in
$fields. This method should be overriden by the child classes.
The $fields must me specified in SQL::Abstract format. Please
refer to the SQL::Abstract documentation for more details about
$fields format.

=head2 _get($class_name, $fields, $order_by)

Returns a array of initialized objects. The values are read
from the database. $class_name is the name of the class
who's gonna be instanciated. When creating the class instance
dbo and dbo_method parameters are passed to the new() method.
The records from the database must match the $fields parameter
and the order is given by $order_by. For more details of these
2 parameters please refer to SQL::Abstract documentation.
 Exceptions throwed:
 
=over 3

=item B<Param::Missing> - when $class_name has not been specified

=item B<Param::Wrong> - when $class_name is not a class name

=item B<DB::NoResults> - when the query returned 0 results

=back

=head1 SYNOPSIS

 package RoPkg::Tester;
 
 use strict;
 use warnings;
 
 use Scalar::Util qw(blessed);
 use RoPkg::Exceptions;
 use RoPkg::DBCollection;
 use vars qw(@ISA);

 @ISA=qw(RoPkg::DBCollection);

 sub new {
   my ($class, %opt) = @_;
   my $self;
 
   $self = $class->SUPER::new(%opt);
   $self->{table} = 'Mirrors';
 
   return $self;
 }
 
 sub Count {
   my ($self) = @_;
 
   if (!blessed($self)) {
     OutsideClass->throw(
       error    => 'Called outside class instance',
       pkg_name => 'RoPkg::Tester',
     );
   }
 
   return $self->_count();
 }
 
 sub Get {
   my ($self, $fields) = @_;
 
   if (!blessed($self)) {
     OutsideClass->throw(
       error    => 'Called outside class instance',
       pkg_name => 'RoPkg::Tester'
     );
   }
 
   return $self->_get('RoPkg::Simba::Mirror');
 }

 1;

 sub main {
   my ($dbc, $dbp);
 
   $dbp = new RoPkg::DB();
   $dbp->Add(
           'dbi:mysql:database=mirrors_db;host=localhost',
           'root',
           '',
           'mirrors'
         );
   
   $dbc = new RoPkg::Tester(
            dbo => $dbp,
            dbo_method => 'db_mirrors'
          );
 
   print $dbc->Count(),$/;
   
   my @mirrors = $dbc->Get();
 }
 
 main();

=head1 DIAGNOSTICS

This module comes with tests. To run them, unpack the source and use
'make test' command.

=head1 PERL CRITIC

This modules is perlcritic level 2 compliant (with 1 exception)

=head1 CONFIGURATION AND ENVIRONMENT

This module does not use any configuration files or environment variables.
However, it is possible that some dependencies to do so. Please read the
man page of each dependency to find out more information.

=head1 DEPENDENCIES

This module use the following modules:

=over 4

=item *) SQL::Abstract

=item *) DBI

=item *) Scalar::Util

=item *) RoPkg

=back

=head1 INCOMPATIBILITIES

None known to the author

=head1 BUGS AND LIMITATIONS

None known to the author

=head1 SEE ALSO

L<RoPkg::Exceptions> L<RoPkg::DB> L<RoPkg::DBObject>
L<RoPkg::Simba::Mirrors>

=head1 AUTHOR

Subredu Manuel <diablo@iasi.roedu.net>

=head1 LICENSE AND COPYRIGHT

Copyright (C) 2006 Subredu Manuel.  All Rights Reserved.
This module is free software; you can redistribute it 
and/or modify it under the same terms as Perl itself.
The LICENSE file contains the full text of the license.

=cut