/usr/share/perl5/DBD/Mock/db.pm is in libdbd-mock-perl 1.45-2.
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 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 | package DBD::Mock::db;
use strict;
use warnings;
our $imp_data_size = 0;
sub ping {
my ($dbh) = @_;
return $dbh->{mock_can_connect};
}
sub last_insert_id {
my ($dbh) = @_;
return $dbh->{mock_last_insert_id};
}
sub get_info {
my ( $dbh, $attr ) = @_;
$dbh->{mock_get_info} ||= {};
return $dbh->{mock_get_info}{$attr};
}
sub prepare {
my ( $dbh, $statement ) = @_;
unless ( $dbh->{mock_can_connect} ) {
$dbh->set_err( 1, "No connection present" );
return;
}
unless ( $dbh->{mock_can_prepare} ) {
$dbh->set_err( 1, "Cannot prepare" );
return;
}
$dbh->{mock_can_prepare}++ if $dbh->{mock_can_prepare} < 0;
eval {
foreach my $parser ( @{ $dbh->{mock_parser} } )
{
if ( ref($parser) eq 'CODE' ) {
$parser->($statement);
}
else {
$parser->parse($statement);
}
}
};
if ($@) {
my $parser_error = $@;
chomp $parser_error;
$dbh->set_err( 1,
"Failed to parse statement. Error: ${parser_error}. Statement: ${statement}"
);
return;
}
my $sth = DBI::_new_sth( $dbh, { Statement => $statement } );
$sth->trace_msg( "Preparing statement '${statement}'\n", 1 );
my %track_params = ( statement => $statement );
if ( my $session = $dbh->{mock_session} ) {
eval {
my $rs = $session->results_for($statement);
if ( ref($rs) eq 'ARRAY' && scalar( @{$rs} ) > 0 ) {
my $fields = @{$rs}[0];
$track_params{return_data} = $rs;
$track_params{fields} = $fields;
$sth->STORE( NAME => $fields );
$sth->STORE( NUM_OF_FIELDS => scalar @{$fields} );
}
else {
$sth->trace_msg( "No return data set in DBH\n", 1 );
}
};
if ($@) {
$dbh->DBI::set_err( 1, "Session Error: $@. Statement: $statement" );
}
}
else {
# If we have available resultsets seed the tracker with one
my $rs;
if ( my $all_rs = $dbh->{mock_rs} ) {
if ( my $by_name = $all_rs->{named}{$statement} ) {
# We want to copy this, because it is meant to be reusable
$rs = [ @{ $by_name->{results} } ];
if ( exists $by_name->{failure} ) {
$track_params{failure} = [ @{ $by_name->{failure} } ];
}
}
else {
$rs = shift @{ $all_rs->{ordered} };
}
}
if ( ref($rs) eq 'ARRAY' && scalar( @{$rs} ) > 0 ) {
my $fields = shift @{$rs};
$track_params{return_data} = $rs;
$track_params{fields} = $fields;
$sth->STORE( NAME => $fields );
$sth->STORE( NUM_OF_FIELDS => scalar @{$fields} );
}
else {
$sth->trace_msg( "No return data set in DBH\n", 1 );
}
}
# do not allow a statement handle to be created if there is no
# connection present.
unless ( $dbh->FETCH('Active') ) {
$dbh->set_err( 1, "No connection present" );
return;
}
# This history object will track everything done to the statement
my $history = DBD::Mock::StatementTrack->new(%track_params);
$sth->STORE( mock_my_history => $history );
# ...now associate the history object with the database handle so
# people can browse the entire history at once, even for
# statements opened and closed in a black box
my $all_history = $dbh->FETCH('mock_statement_history');
push @{$all_history}, $history;
return $sth;
}
*prepare_cached = \&prepare;
{
my $begin_work_commit;
sub begin_work {
my $dbh = shift;
if ( $dbh->FETCH('AutoCommit') ) {
$dbh->STORE( 'AutoCommit', 0 );
$begin_work_commit = 1;
my $sth = $dbh->prepare('BEGIN WORK')
or return $dbh->set_err( 1, $DBI::errstr );
my $rc = $sth->execute()
or return $dbh->set_err( 1, $DBI::errstr );
$sth->finish();
return $rc;
}
else {
return $dbh->set_err( 1,
'AutoCommit is off, you are already within a transaction' );
}
}
sub commit {
my $dbh = shift;
if ( $dbh->FETCH('AutoCommit') && $dbh->FETCH('Warn') ) {
return $dbh->set_err( 1, "commit ineffective with AutoCommit" );
}
my $sth = $dbh->prepare('COMMIT')
or return $dbh->set_err( 1, $DBI::errstr );
my $rc = $sth->execute()
or return $dbh->set_err( 1, $DBI::errstr );
$sth->finish();
if ($begin_work_commit) {
$dbh->STORE( 'AutoCommit', 1 );
$begin_work_commit = 0;
}
return $rc;
}
sub rollback {
my $dbh = shift;
if ( $dbh->FETCH('AutoCommit') && $dbh->FETCH('Warn') ) {
return $dbh->set_err( 1, "rollback ineffective with AutoCommit" );
}
my $sth = $dbh->prepare('ROLLBACK')
or return $dbh->set_err( 1, $DBI::errstr );
my $rc = $sth->execute()
or return $dbh->set_err( 1, $DBI::errstr );
$sth->finish();
if ($begin_work_commit) {
$dbh->STORE( 'AutoCommit', 1 );
$begin_work_commit = 0;
}
return $rc;
}
}
# NOTE:
# this method should work in most cases, however it does
# not exactly follow the DBI spec in the case of error
# handling. I am not sure if that level of detail is
# really nessecary since it is a weird error conditon
# which causes it to fail anyway. However if you find you do need it,
# then please email me about it. I think it would be possible
# to mimic it by accessing the DBD::Mock::StatementTrack
# object directly.
sub selectcol_arrayref {
my ( $dbh, $query, $attrib, @bindvalues ) = @_;
# get all the columns ...
my $a_ref = $dbh->selectall_arrayref( $query, $attrib, @bindvalues );
# if we get nothing back, or dont get an
# ARRAY ref back, then we can assume
# something went wrong, and so return undef.
return undef unless defined $a_ref || ref($a_ref) ne 'ARRAY';
my @cols = 0;
if ( ref $attrib->{Columns} eq 'ARRAY' ) {
@cols = map { $_ - 1 } @{ $attrib->{Columns} };
}
# if we do get something then we
# grab all the columns out of it.
return [ map { @$_[@cols] } @{$a_ref} ];
}
sub FETCH {
my ( $dbh, $attrib, $value ) = @_;
$dbh->trace_msg("Fetching DB attrib '$attrib'\n");
if ( $attrib eq 'Active' ) {
return $dbh->{mock_can_connect};
}
elsif ( $attrib eq 'mock_all_history' ) {
return $dbh->{mock_statement_history};
}
elsif ( $attrib eq 'mock_all_history_iterator' ) {
return DBD::Mock::StatementTrack::Iterator->new(
$dbh->{mock_statement_history} );
}
elsif ( $attrib =~ /^mock/ ) {
return $dbh->{$attrib};
}
elsif ( $attrib =~ /^(private_|dbi_|dbd_|[A-Z])/ ) {
$dbh->trace_msg(
"... fetching non-driver attribute ($attrib) that DBI handles\n");
return $dbh->SUPER::FETCH($attrib);
}
else {
if ( $dbh->{mock_attribute_aliases} ) {
if ( exists ${ $dbh->{mock_attribute_aliases}->{db} }{$attrib} ) {
my $mock_attrib =
$dbh->{mock_attribute_aliases}->{db}->{$attrib};
if ( ref($mock_attrib) eq 'CODE' ) {
return $mock_attrib->($dbh);
}
else {
return $dbh->FETCH($mock_attrib);
}
}
}
$dbh->trace_msg(
"... fetching non-driver attribute ($attrib) that DBI doesn't handle\n"
);
return $dbh->{$attrib};
}
}
sub STORE {
my ( $dbh, $attrib, $value ) = @_;
my $printed_value = $value || 'undef';
$dbh->trace_msg("Storing DB attribute '$attrib' with '$printed_value'\n");
if ( $attrib eq 'AutoCommit' ) {
# These are magic DBI values that say we can handle AutoCommit
# internally as well
$value = ($value) ? -901 : -900;
}
if ( $attrib eq 'mock_clear_history' ) {
if ($value) {
$dbh->{mock_statement_history} = [];
}
return [];
}
elsif ( $attrib eq 'mock_add_parser' ) {
my $parser_type = ref($value);
my $is_valid_parser;
if ( $parser_type eq 'CODE' ) {
$is_valid_parser++;
}
elsif ( $parser_type && $parser_type !~ /^(ARRAY|HASH|SCALAR)$/ ) {
$is_valid_parser = eval { $parser_type->can('parse') };
}
unless ($is_valid_parser) {
my $error =
"Parser must be a code reference or object with 'parse()' "
. "method (Given type: '$parser_type')";
$dbh->set_err( 1, $error );
return;
}
push @{ $dbh->{mock_parser} }, $value;
return $value;
}
elsif ( $attrib eq 'mock_add_resultset' ) {
$dbh->{mock_rs} ||= {
named => {},
ordered => []
};
if ( ref $value eq 'ARRAY' ) {
my @copied_values = @{$value};
push @{ $dbh->{mock_rs}{ordered} }, \@copied_values;
return \@copied_values;
}
elsif ( ref $value eq 'HASH' ) {
my $name = $value->{sql};
unless ($name) {
die "Indexing resultset by name requires passing in 'sql' ",
"as hashref key to 'mock_add_resultset'.\n";
}
my @copied_values = @{ $value->{results} };
$dbh->{mock_rs}{named}{$name} = { results => \@copied_values, };
if ( exists $value->{failure} ) {
$dbh->{mock_rs}{named}{$name}{failure} =
[ @{ $value->{failure} }, ];
}
return \@copied_values;
}
else {
die "Must provide an arrayref or hashref when adding ",
"resultset via 'mock_add_resultset'.\n";
}
}
elsif ( $attrib eq 'mock_start_insert_id' ) {
if ( ref $value eq 'ARRAY' ) {
$dbh->{mock_last_insert_ids} = {}
unless $dbh->{mock_last_insert_ids};
$dbh->{mock_last_insert_ids}{ $value->[0] } = $value->[1];
}
else {
# we start at one minus the start id
# so that the increment works
$dbh->{mock_last_insert_id} = $value - 1;
}
}
elsif ( $attrib eq 'mock_session' ) {
( ref($value) && UNIVERSAL::isa( $value, 'DBD::Mock::Session' ) )
|| die
"Only DBD::Mock::Session objects can be placed into the 'mock_session' slot\n"
if defined $value;
$dbh->{mock_session} = $value;
}
elsif ( $attrib =~ /^mock_(add_)?data_sources/ ) {
$dbh->{Driver}->STORE( $attrib, $value );
}
elsif ( $attrib =~ /^mock/ ) {
return $dbh->{$attrib} = $value;
}
elsif ( $attrib =~ /^(private_|dbi_|dbd_|[A-Z])/ ) {
$dbh->trace_msg(
"... storing non-driver attribute ($attrib) with value ($printed_value) that DBI handles\n"
);
return $dbh->SUPER::STORE( $attrib, $value );
}
else {
$dbh->trace_msg(
"... storing non-driver attribute ($attrib) with value ($printed_value) that DBI won't handle\n"
);
return $dbh->{$attrib} = $value;
}
}
sub DESTROY {
my ($dbh) = @_;
if ( my $session = $dbh->{mock_session} ) {
if ( $session->has_states_left ) {
die "DBH->finish called when session still has states left\n";
}
}
}
sub disconnect {
my ($dbh) = @_;
if ( my $session = $dbh->{mock_session} ) {
if ( $session->has_states_left ) {
die "DBH->finish called when session still has states left\n";
}
}
}
1;
|