Guideline SQL14 recommends using try/finally blocks to report database modification errors. It would be helpful to update skeleton.pl to use this methodology.
Created attachment 171338 [details] [review] Bug 37895: Update skelton.pl to show an example use of coding guideline SQL14 Guideline SQL14 recommends using try/finally blocks to report database modification errors. It would be helpful to update skeleton.pl to use this methodology. Test Plan: 1) Apply this patch 2) Copy skeleton.pl to test.pl 3) Add a bad query to the the $dbh->do({}) line 4) Run updatedatabase.pl 5) Note the error message is displayed 6) Change the bad query to a good query 7) Run updatedatabase.pl 8) Note the success message is displayed!
Created attachment 171383 [details] [review] Bug 37895: Update skelton.pl to show an example use of coding guideline SQL14 Guideline SQL14 recommends using try/finally blocks to report database modification errors. It would be helpful to update skeleton.pl to use this methodology. Test Plan: 1) Apply this patch 2) Copy skeleton.pl to test.pl 3) Add a bad query to the the $dbh->do({}) line 4) Run updatedatabase.pl 5) Note the error message is displayed 6) Change the bad query to a good query 7) Run updatedatabase.pl 8) Note the success message is displayed! Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Shouldn't we add `use Try::Tiny` at the beginning ? By the way, how does this work with Perl builtin try/catch which is not experimental since 5.40 ? Has anyone tried ? IIUC it's not enabled by default but can be enabled using `perl -E ...` which I sometimes use. Also curious about why SQL14's example treats the error in finally instead of catch. Is this the recommended way to deal with exceptions (and if so, do you know why ?) or can we use catch ?
Hi, I had a go at updating the wiki page, but got a bit stuck on the second example: If the column already exists, we might want to do a say_info "nothing happened", if it exists a say_success and if it doesn't work a say_failure. Maybe someone else could have a look once we have this sorted? https://wiki.koha-community.org/wiki/Database_updates Adding info on the checks for existence of tables, columns etc. might also be a good addition to the skeleton.pl.
(In reply to Julian Maurice from comment #3) > Shouldn't we add `use Try::Tiny` at the beginning ? It doesn't seem to be needed as we include it farther upstream from where we execute atomic updates. Should I include it explicitly in updatedatabase.pl just to have it there? > By the way, how does this work with Perl builtin try/catch which is not > experimental since 5.40 ? Has anyone tried ? > IIUC it's not enabled by default but can be enabled using `perl -E ...` > which I sometimes use. Looks like it would require modification as the built in feature uses the syntax from Syntax::Keyword::Try which doesn't appear to utilize $_ if I read that correctly > > Also curious about why SQL14's example treats the error in finally instead > of catch. Is this the recommended way to deal with exceptions (and if so, do > you know why ?) or can we use catch ? There is no keyword that triggers if no exception occurs. We could do something like: try { $dbh->do(q{}); } catch { say_failure( $out, "Database modification failed with errors: $_" ); } finally { say_success( $out, "Database modification was successful!" ) unless @_; } I feel like that is somewhat less readable than what was been proposed in the patch but I am open to changes you feel that is better.
I feel like that is somewhat less readable than what was been proposed in the patch but I am open to changes you feel that is better. should read as I feel like that is somewhat less readable than what has been proposed in the patch but I am open to changes if you feel that is better. /me hangs head in shame
(In reply to Katrin Fischer from comment #4) > Hi, I had a go at updating the wiki page, but got a bit stuck on the second > example: If the column already exists, we might want to do a say_info > "nothing happened", if it exists a say_success and if it doesn't work a > say_failure. > > Maybe someone else could have a look once we have this sorted? > https://wiki.koha-community.org/wiki/Database_updates > > Adding info on the checks for existence of tables, columns etc. might also > be a good addition to the skeleton.pl. I've updated that example! Feel free to revert the change if it is premature.
I generally write the "happy path" in the try block, like this: try { $dbh->do(q{}); say_success( $out, "Database modification was successful!" ); } catch { say_failure( $out, "Database modification failed with errors: $_" ); } I think it's more readable than the SQL14 example: less code, less indentation, and you can read the whole "happy path" in one go. But maybe there's a catch (ah!) somewhere with this approach ?
I have kept the wiki changes, but added the use statement on the second. I think it's just a bit work in progress now and good to get more eyes on it to find a good new best practice.
> try { > $dbh->do(q{}); > say_success( $out, "Database modification was successful!" ); > } catch { > say_failure( $out, "Database modification failed with errors: $_" ); > } ^ this I like
Created attachment 171629 [details] [review] Bug 37895: (QA follow-up) Switch try/finally block to try/catch block
(In reply to Kyle M Hall from comment #5) > (In reply to Julian Maurice from comment #3) > > Shouldn't we add `use Try::Tiny` at the beginning ? > > It doesn't seem to be needed as we include it farther upstream from where we > execute atomic updates. Should I include it explicitly in updatedatabase.pl > just to have it there? You're right. It is included from C4::Installer which is where we load atomicupdate files so it should be ok. I think the example is still missing something though: what to do when we have an error. In the example, we print the error and continue with the rest of the update. Shouldn't we stop at the first error ?
> I think the example is still missing something though: what to do when we > have an error. In the example, we print the error and continue with the rest > of the update. Shouldn't we stop at the first error ? That also seems reasonable, considering that's the current behavior. I suppose the specifics will vary from update to update, that is probably a good rule in general.
Created attachment 171660 [details] [review] Bug 37895: (QA follow-up) Exit in the failure block
I hate to say this after the work that's gone into this, but I think we're missing some important code history here... See bug 25078 - error handling is already baked into Installer.pm, to abort the update if a dbrev fails (or allow a --force parameter to keep going anyway), and to make sure the output is displayed correctly regardless of whether the update is being run from the command line or from the web installer. Testing these patches as-is, I'm getting no output at all to the console on a bad dbrev - the update subs in Installer.pm collect all of the messages and pass them along to the console after the dbrev is finished, and exit(1) bails out of the whole script before that happens. The web installer does display the error messages, but they have added cruft with the patches - an extra layer on the stack trace, and a bunch of array references. Replacing exit(1) with a die statement works better, but die prints its own error message, so there's no real benefit to having both say_failure and die. I don't think we want to include a try/catch in the dbrevs themselves, except in cases where special error handling is actually needed. Otherwise, it's just clashing with the error handling upstream.
(In reply to Emily Lamancusa (emlam) from comment #15) > I don't think we want to include a try/catch in the dbrevs themselves, > except in cases where special error handling is actually needed. Otherwise, > it's just clashing with the error handling upstream. Good point. So... should SQL14 be removed ? Why was it added by the way ? The wiki doesn't explain why it's recommended.
(In reply to Julian Maurice from comment #16) > So... should SQL14 be removed ? > Why was it added by the way ? The wiki doesn't explain why it's recommended. We have some notes about it here - https://koha-hedgedoc.servers.llownd.net/Development_IRC_meeting_31_July_2024 It started with discussion about making a coding guideline for using the new "say" functions to produce colored outputs in dbrevs, and evolved into error reporting. I think no one remembered/realized at the time that we do have some error handling and reporting upstream. Yes, I do think SQL14 should be removed (or replaced with something else - I think we were generally in favor of the colored outputs guideline). I'll put a note on it linking to this discussion for now, and add it onto the agenda for the next dev meeting.
I'm find with going back if that's what everyone wants. On the other hand, this could be considered a "simple mode" vs "advanced mode" thing where developers can choose. On the other other hand, that also means more choices for devs to make ;)
Yeah, there's definitely room for developer choice here! My main concern with having try/catch in skeleton.pl (which I'll admit I haven't articulated well) is that if we don't catch the exception at all, the upstream methods will catch and handle it, but if we catch it "wrong", we can actively break the upstream error handling. (e.g. exit(1) breaks both error and success reporting in CLI; catching an error that should stop the database upgrade and forgetting to rethrow means it will not stop the upgrade anymore; etc) Since a "wrong" try/catch can be worse than no try/catch, I think it's better for maintainability if developers make the active choice to catch the exception when they do have a reason to do special handling, rather than have the try/catch in the template by default. I'd certainly agree with keeping both templates on the wiki as a "simple mode" vs "advanced mode" choice for developers, though! Or even both in the template if you think there's a benefit to doing it that way. Either way, we should also document the behavior when the exception isn't caught. :)
I've lost track of this, sorry. I am not sure it's INVALID. Why not iterating again? Why not simply rethrowing the exception? use Modern::Perl; use Try::Tiny; use Koha::Installer::Output qw(say_warning say_failure say_success say_info); return { bug_number => "12345", description => "Do stuffs with biblios", up => sub { my ($args) = @_; my ( $dbh, $out ) = @$args{qw(dbh out)}; try { $dbh->do(q{SELECT COUNT(*) FROM biblio;}); say_success( $out, "Retrieved number of biblios"); } catch { say_failure( $out, "Cannot get count of biblios" ); $_->rethrow; }; try { $dbh->do(q{ALTER TABLE biblio ADD COLUMN biblionumber INT(11);}); say_success( $out, "Added biblio.biblionumber"); } catch { say_failure( $out, "Cannot add column biblio.biblionumber" ); $_->rethrow; }; say_success( $out, "Never reached"); }, }; This will work: $ updatedatabase DEV atomic update /kohadevbox/koha/installer/data/mysql/atomicupdate/bug_12345.pl [09:18:16]: Bug 12345 - Do stuffs with biblios Retrieved number of biblios Cannot add column biblio.biblionumber ERROR - C4::Installer::try {...} (): DBI Exception: DBD::mysql::db do failed: Duplicate column name 'biblionumber' at /kohadevbox/koha/installer/data/mysql/atomicupdate/bug_12345.pl line 26
(In reply to Jonathan Druart from comment #20) > I've lost track of this, sorry. I am not sure it's INVALID. > > Why not iterating again? > > Why not simply rethrowing the exception? I've read the previous again, but I still think we should have a good example of try catch in the skeleton file. We could also enforce the existing of rethrow in the catch block for db_revs.
The UI does not like it however: https://snipboard.io/IGiKgM.jpg Wondering if it's not broken in main already...
(In reply to Jonathan Druart from comment #21) > I've read the previous again, but I still think we should have a good > example of try catch in the skeleton file. We could also enforce the > existing of rethrow in the catch block for db_revs. SQL14 have been removed, so try/catch is not mandatory. If one chooses to use it, there must be a good reason for it and I think we shouldn't enforce any behavior in the catch block. It could be ok for an SQL query to fail in that case.
(In reply to Julian Maurice from comment #23) > (In reply to Jonathan Druart from comment #21) > > I've read the previous again, but I still think we should have a good > > example of try catch in the skeleton file. We could also enforce the > > existing of rethrow in the catch block for db_revs. > SQL14 have been removed, so try/catch is not mandatory. If one chooses to > use it, there must be a good reason for it and I think we shouldn't enforce > any behavior in the catch block. It could be ok for an SQL query to fail in > that case. The 3 occurrences in our db_revs are wrong...
Also some (all?) say_failure statements will never been reached as DBI has RaiseError turned on, so installer/data/mysql/db_revs/240600029.pl 34 if ( $dbh->do("$creation_date_statement AFTER `end_date`") ) { 35 say_success( $out, q{Added column 'bookings.creation_date'} ); 36 } else { 37 say_failure( $out, q{Failed to add column 'bookings.creation_date': } . $dbh->errstr ); 38 } This is useless code if not better written (with try-catch + rethrow).
(In reply to Jonathan Druart from comment #22) > The UI does not like it however: https://snipboard.io/IGiKgM.jpg > > Wondering if it's not broken in main already... Opened bug 38385.
I've opened bug 38394 to remove the existing try/catch and say_failure statements.
I will tackle this one down once 24.11 is released.