/usr/share/perl5/UR/Context/Transaction.pm is in libur-perl 0.440-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 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 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 | package UR::Context::Transaction;
use strict;
use warnings;
require UR;
our $VERSION = "0.44"; # UR $VERSION;
use Carp qw(croak confess shortmess);
UR::Object::Type->define(
class_name => __PACKAGE__,
is => ['UR::Context'],
has => [
begin_point => { is => 'Integer' },
end_point => { is => 'Integer', is_optional => 1}, # FIXME is this ever used anywhere?
state => { is => 'Text' }, # open, committed, rolled-back
],
is_transactional => 1,
);
our $log_all_changes = 0;
our @change_log;
our @open_transaction_stack;
our $last_transaction_id = 0;
sub delete {
my $self = shift;
$self->rollback;
}
sub begin {
my $class = shift;
my $id = $last_transaction_id++;
my $begin_point = @change_log;
$log_all_changes = 1;
my $last_trans = $open_transaction_stack[-1];
if ($last_trans and $last_trans != $UR::Context::current) {
die "Current transaction does not match the top of the transaction stack!?"
}
$last_trans ||= $UR::Context::current;
my $self = $class->create(
id => $id,
begin_point => $begin_point,
state => "open",
parent => $last_trans,
@_
);
unless ($self) {
Carp::confess("Failed to being transaction!");
}
push @open_transaction_stack, $self;
$UR::Context::current = $self;
return $self;
}
sub log_change {
my $this_class = shift;
my ($object, $class, $id, $aspect, $undo_data) = @_;
return if $class eq "UR::Change";
# wrappers (create/delete/load/unload/define) signal change also
# and we undo the wrapper, thereby undoing these
# -> ignore any signal from a method which is wrapped by another signalling method which gets undone
return if ( $aspect eq "load" or
$aspect eq "load_external"
);
if (!ref($object) or $class eq "UR::Object::Index") {
#print "skipping @_\n";
return;
}
if ($aspect eq "delete") {
$undo_data = Data::Dumper::Dumper($object);
}
Carp::confess() if ref($class);
my $change = UR::Change->create(
id => scalar(@change_log)+1,
changed_class_name => $class,
changed_id => $id,
changed_aspect => $aspect,
undo_data => $undo_data,
);
unless (ref($change)) {
#$DB::single = 1;
}
push @change_log, $change;
return $change;
}
sub has_changes {
my $self = shift;
my @changes = $self->get_changes();
return (@changes > 1 ? 1 : ());
}
sub get_changes {
my $self = shift;
my $begin_point = $self->begin_point;
my $end_point = $self->end_point || $#change_log;
my @changes = @change_log[$begin_point..$end_point];
if (@_) {
@changes = UR::Change->get(id => \@changes, @_)
}
else {
return @changes;
}
}
sub get_change_summary {
# TODO: This should compress multiple changes to the same object as much as possible
# Right now, it just omits the creation event for the transaction object itself.
# -> should the creation of the transaction be part of it?
# A: It should really be part of the prior transaction, and after commit/rollback
# the nesting collapses. The @change_log should be _inside the transaction object,
# or the change should contain a transaction id. The list can be destroyed on
# rollback, or summarized on commit.
my $self = shift;
my @changes =
grep { $_->changed_aspect !~ /^(load|define)$/ }
$self->get_changes;
shift @changes; # $self creation event
return @changes;
}
sub rollback {
my $self = shift;
# Support calling as a class method: UR::Context::Transaction->rollback rolls back the current trans
unless (ref($self)) {
$self = $open_transaction_stack[-1];
unless ($self) {
Carp::confess("No open transaction!? Cannot rollback.");
}
}
if ($self->state ne "open") {
Carp::confess("Cannot rollback a transaction that is " . $self->state . ".")
}
$self->__signal_change__('prerollback');
my $begin_point = $self->begin_point;
unless ($self eq $open_transaction_stack[-1]) {
# This is not the top transaction on the stack.
# Rollback internally nested transactions in order from the end.
my @transactions_with_begin_point =
map { [ $_->begin_point, $_ ] }
$self->class->get(
begin_point => { operator => ">", value => $begin_point }
);
my @later_transactions =
map { $_->[1] }
sort { $b->[0] <=> $a->[0] }
@transactions_with_begin_point;
for my $later_transaction (@later_transactions) {
if ($later_transaction->isa("UR::DeletedRef")) {
#$DB::single = 1;
}
$later_transaction->rollback;
}
}
my $parent = $self->parent;
if ($open_transaction_stack[-2] and $open_transaction_stack[-2] != $parent) {
die "Parent transaction $parent is not below this one on the stack $open_transaction_stack[-2]?";
}
{
# Reverse each change, starting from the most recent, and
# ending with the creation of the transaction object itself.
local $log_all_changes = 0;
$self->__signal_change__('rollback', 1);
my @changes_to_undo = reverse $self->get_changes();
my $transaction_change = pop @changes_to_undo;
my $transaction = $transaction_change->changed_class_name->get($transaction_change->changed_id);
unless ($self == $transaction && $transaction_change->changed_aspect eq 'create') {
die "First change was not the creation of this transaction!";
}
for my $change (@changes_to_undo) {
if ($change == $changes_to_undo[0]) {
# the transaction reverses itself in its own context,
# but the removal of the transaction itself happens in the parent context
$UR::Context::current = $parent;
}
$change->undo;
$change->delete;
}
for my $change (@changes_to_undo) {
unless($change->isa('UR::DeletedRef')) {
Carp::confess("Failed to undo a change during transaction rollback.");
}
}
$transaction_change->undo;
$transaction_change->delete;
}
$#change_log = $begin_point-1;
unless($self->isa("UR::DeletedRef")) {
#$DB::single = 1;
Carp::confess("Failed to remove transaction during rollback.");
}
pop @open_transaction_stack;
unless (@open_transaction_stack) {
$log_all_changes = 0;
}
$UR::Context::current = $parent;
return 1;
}
sub commit {
my $self = shift;
# Support calling as a class method: UR::Context::Transaction->commit commits the current transaction.
unless (ref($self)) {
$self = $open_transaction_stack[-1];
unless ($self) {
Carp::confess("No open transaction!? Cannot commit.");
}
}
if ($self->state ne "open") {
Carp::confess("Cannot commit a transaction that is " . $self->state . ".")
}
unless ($open_transaction_stack[-1] == $self) {
# TODO: decide if this should work like rollback, and commit nested transactions automatically
Carp::confess("Cannot commit a transaction with open sub-transactions!");
}
$self->__signal_change__('precommit');
unless ($self->changes_can_be_saved) {
return;
}
$self->state("committed");
if ($self->state eq 'committed') {
$self->__signal_change__('commit',1);
}
else {
$self->__signal_change__('commit',0);
}
pop @open_transaction_stack;
unless (@open_transaction_stack) {
$log_all_changes = 0;
}
$UR::Context::current = $self->parent;
return 1;
}
sub changes_can_be_saved {
my $self = shift;
# This is very similar to behavior in UR::Context::_sync_databases. The only
# reason it isn't re-used from UR::Context is the desire to limit changed
# objects to those changed within the transaction.
# TODO: limit to objects that changed within transaction as to not duplicate
# error checking unnecessarily.
my @changed_objects =
grep { ! $_->isa('UR::DeletedRef') }
map { $_->changed_object() } $self->get_changes();
# This is primarily to catch custom validity logic in class overrides.
my @invalid = grep { $_->__errors__ } @changed_objects;
if (@invalid) {
$self->display_invalid_data_for_save(\@invalid);
return;
}
return 1;
}
sub eval_or_do {
my $is_failure = shift;
my $block = shift;
my $class = __PACKAGE__;
if (@_) {
confess('%s::eval takes one argument', $class);
}
my $tx = $class->begin();
my $result = CORE::eval { $block->() };
my $eval_error = $@;
if ($is_failure->($result, $eval_error)) {
$class->debug_message(shortmess('Rolling back transaction'));
$class->debug_message($eval_error) if ($eval_error);
unless($tx->rollback()) {
die 'failed to rollback transaction';
}
} else {
unless($tx->commit()) {
die 'failed to commit transaction';
}
}
if (wantarray) {
return ($result, $eval_error);
} else {
return $result;
}
}
# eval function takes a block (&) sort of like CORE::eval
# eval will rollback on a caught die
sub eval(&) {
my $is_failure = sub {
my ($result, $eval_error) = @_;
return $eval_error;
};
return eval_or_do($is_failure, @_);
}
# do function takes a block (&) sort of like CORE::do
# do will rollback on a false result as well as before re-throwing a caught die
sub do(&) {
my $is_failure = sub {
my ($result, $eval_error) = @_;
return !$result || $eval_error;
};
my ($result, $eval_error) = eval_or_do($is_failure, @_);
if ($eval_error) {
croak $eval_error, "\t...propogated";
}
return $result;
}
1;
=pod
=head1 NAME
UR::Context::Transaction - API for software transactions
=head1 SYNOPSIS
my $o = Some::Obj->create(foo => 1);
print "o's foo is ",$o->foo,"\n"; # prints 1
my $t = UR::Context::Transaction->begin();
$o->foo(4);
print "In transaction, o's foo is ",$o->foo,"\n"; # prints 4
if (&should_we_commit()) {
$t->commit();
print "Transaction committed, o's foo is ",$o->foo,"\n"; # prints 4
} else {
$t->rollback();
print "Transaction rollback, o's foo is ",$o->foo,"\n"; # prints 1
}
=head1 DESCRIPTION
UR::Context::Transaction instances represent in-memory transactions as a diff
of the contents of the object cache in the Process context. Transactions are
nestable. Their instances exist in the object cache and are subject to the
same scoping rules as other UR-based objects, meaning that they do not
disappear mearly because the lexical variable they're assigned to goes out of
scope. They must be explicitly disposed of via the commit or rollback methods.
=head1 INHERITANCE
UR::Context::Transaction is a subclass of UR::Context
=head1 CONSTRUCTOR
=over 4
=item begin
$t = UR::Context::Transaction->begin();
Creates a new software transaction context to track changes to UR-based
objects. As all activity to objects occurs in some kind of transaction
context, the newly created transaction exists within whatever context was
current before the call to begin().
=back
=head1 METHODS
=over 4
=item commit
$t->commit();
Causes all objects with changes to save those changes back to the underlying
context.
=item rollback
$t->rollback();
Causes all objects with changes to have those changes reverted to their
state when the transaction began. Classes with properties whose meta-property
is_transactional => 0 are not tracked within a transaction and will not be
reverted.
=item delete
$t->delete();
delete() is a synomym for rollback
=item has_changes
$bool = $t->has_changes();
Returns true if any UR-based objects have changes within the transaction.
=item get_changes
@changes = $t->get_changes();
Return a list or L<UR::Change> objects representing changes within the transaction.
=back
=head1 CLASS METHODS
=over 4
=item eval
UR::Context::Transaction::eval BLOCK
Executes the BLOCK (with no arguments) wrapped by a software transaction and a
CORE::eval. If the BLOCK dies then the exception is caught and the software
transaction is rolled back.
=item do
UR::Context::Transaction::do BLOCK
Executes the BLOCK (with no arguments) wrapped by a software transaction and a
CORE::eval. If the BLOCK returns a true value and does not die then the
software transaction is committed. If the BLOCK returns false or dies then the
software transaction is rolled back.
If the BLOCK throws an exception, it will be caught, the software transaction
rolled back, and the exception will be re-thrown with die().
=back
=head1 SEE ALSO
L<UR::Context>
=cut
|