Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

1) Because

transaction $bdh => code{ ... }
reads better than
transaction $bdh, sub { ... }
. That's the only reason.

2) Well, it may contain the filename&linenumber of the original error message, but not of the place where the transaction ends and where therefore it's commited or rolled back. I think it makes more sense to append the position of the closing brace of the transaction block than some line within Transaction.pm. Try to throw an exception within a second level transaction. You'll end up with something like:

Some error commit not safe after errors, transaction rolled back at Transactions. +pm line 123 commit not safe after errors, transaction rolled back at Transactions. +pm line 123
Not very helpfull I'd think :-)

Here is the script I used to test my version of the module:

use Transactions; package Foo; sub begin_work { my $self = shift(); print "CALL begin_work on $self->{name}\n"; } sub rollback { my $self = shift(); print "CALL rollback on $self->{name}\n"; } sub commit { my $self = shift(); print "CALL commit on $self->{name}\n"; } sub new { bless {name => $_[1]}, $_[0]; } package main; $foo = new Foo 'jenda'; $foo1 = new Foo 'pavel'; $foo2 = new Foo 'martin'; #eval { transaction $foo => code{ print "Start of the outer transaction\n"; # die "Some error\n"; # eval { transaction [$foo1, $foo2] => code{ print "Start of the inner transaction\n"; die "Some error\n"; print "End of the inner transaction\n"; }; # }; # if ($@) {print "Error in inner trans: $@\nIGNORING!!!\n"}; # die "Some error\n"; print "End of the outer transaction\n"; }; #}; transaction $foo => code{ print "Start of the outer transaction\n"; print "End of the outer transaction\n"; };

Jenda
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.
   -- Rick Osborne

Edit by castaway: Closed small tag in signature


In reply to Re: Re: Re: RFC: Transactions.pm by Jenda
in thread RFC: Transactions.pm by Juerd

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-04-24 01:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found