Skip to content
Snippets Groups Projects

ToolHandle: throw exception if retrieval fails

Merged Charles Leggett requested to merge leggett/Gaudi:dev/ToolHandleRetrieveError into master
All threads resolved!

If a ToolHandle is retrieved with the wrong interface, an StatusCode::FAILURE is returned, but no error message is displayed. This is especially bad when ToolHandles are automatically retrieved by their parent at the end of initialize - initialization will fail with no obvious cause.

This MR addresses this by having ToolHandle::retrieve throw an exception if either the retrieval from the ToolSvc fails, or if the dcast to the required iface fails.

I'm a bit torn about this however. We've gone from returning a StatusCode::FAILURE, which can easily be dealt with at runtime, to throwing an exception, which requires significantly different behaviour from the client. I don't know if there is a real use case for continuing execution if the retrieval fails. I think the best solution would have been to print an error message, and return a FAILURE as before, but there's no easy way to get hold of the MessageSvc from within the ToolHandle.

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Marco Clemencic changed milestone to %v30r2

    changed milestone to %v30r2

  • added 1 commit

    • 608e39be - moved throw to i_retrieve, added test in GaudiExamples

    Compare with previous version

  • added 1 commit

    Compare with previous version

  • added 1 commit

    Compare with previous version

  • Charles Leggett resolved all discussions

    resolved all discussions

  • I rolled back some changes so that if a Tool retrieval from the ToolSvc returns a failure, it propagates this back up instead of throwing an exception. This is in order to maintain existing behavior.

    I will open a new MR that will change the behavior a little more radically, where all retrievals will throw an exception if there's an error, and will also add a StatusCode tryRetrieve() method that does not throw. The question with that though, is what sort of side effects should a tryRetrieve have? Should it do the retrieve and just trap the exceptions? Should it reset the m_pObject to its original state after it tries? If a Tool actually needs to be created as part of the retrieval, should it create it, and delete it when it's done, or leave it there?

  • Marco Clemencic approved this merge request

    approved this merge request

  • Marco Clemencic mentioned in commit b52f650d

    mentioned in commit b52f650d

  • Please register or sign in to reply
    Loading