package UR::Context::Transaction; use strict; use warnings; require UR; our $VERSION = "0.46"; # UR $VERSION; use Carp qw(croak confess shortmess); use constant TRANSACTION_STATE_OPEN => 'open'; use constant TRANSACTION_STATE_COMMITTED => 'committed'; use Exporter qw(import); our @EXPORT_OK = qw(TRANSACTION_STATE_OPEN TRANSACTION_STATE_COMMITTED); 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', valid_values => [TRANSACTION_STATE_OPEN, TRANSACTION_STATE_COMMITTED] }, commit_validator => { default_value => 'changes_can_be_saved', doc => 'validation function used before commit() can succeed' }, ], 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 %params = @_; delete @params{'begin_point', 'end_point', 'state'}; # These are set within this function 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 => TRANSACTION_STATE_OPEN, parent => $last_trans, %params, ); 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 TRANSACTION_STATE_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 TRANSACTION_STATE_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'); my $validator = $self->commit_validator; unless ($self->$validator()) { return; } $self->state(TRANSACTION_STATE_COMMITTED); if ($self->state eq TRANSACTION_STATE_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()) { Carp::croak 'failed to rollback transaction'; } } else { unless($tx->commit()) { Carp::croak '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(). $t = UR::Context::Transaction->begin(commit_validator => sub { ... }); A validation function may be assigned with the C property. When the transaction is committed, this function is called. The commit proceeds if this function returns a true value. The default function, C requires that all objects changed within the transaction be valid, ie. that C<$obj->__errors__()> returns an empty list. The validation function is passed one argument: the transaction object being committed. =back =head1 METHODS =over 4 =item commit $t->commit(); Causes all objects with changes to save those changes back to the underlying context. If the validation function (specified with the C param when the transaction was created with C) returns false, the changes are not committed to the encompassing context, C returns false and this transaction remains in effect. Returns true if all the transaction's changes are committed to the encompassing Context. This transaction object then becomes invalid, and its state will be 'committed'. =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. After C, this transaction becomes invalid, and the object will become a L. =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 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 EXPORTS This module can export constants that match the valid values of the C property: TRANSACTION_STATE_OPEN and TRANSACTION_STATE_COMMITTED =head1 SEE ALSO L =cut