When `load_backend()` is called, one of the first things it does is instantiating the backend plugin if required, in order to call its `new_ill_backend()` method. We should be storing the `$plugin` object in case we need it. A paradigmatic case is the `expand_template()` method, which calls `_backend()` (which internally calls `load_backend()`, and then queries for the plugin again in order to call a plugin method.
Changing status to normal as it really is a performance bug.
Created attachment 177735 [details] [review] Bug 39092: Unit tests
Created attachment 177736 [details] [review] Bug 39092: Cache the plugin object when loading plugin backend This patch makes the `load_backend()` method cache the plugin instance object when calculated. This will reduce the calls in other places where we query for the plugin. It is also the excuse to add some tests for this methods which were lacking. To test: 1. Apply the unit tests 2. Run: $ ktd --shell k$ prove t/db_dependent/Koha/Plugins/ILL/Backends.t => FAIL: Tests fail, plugin instance caching is not happening 3. Apply this patch 4. Repeat 2 => SUCCESS: Tests pass! 5. Sign off :-D
Created attachment 177737 [details] [review] Bug 39092: (follow-up) Do not look for plugins if Standard backend used If we've been asked the `Standard` backend we shouldn't be trying to load plugins. Trivial refactoring of the order things are done.
Created attachment 177738 [details] [review] Bug 39092: Use pre-loaded plugin This patch removes plugin loading from the method, and makes it leverage on the plugin instance already loaded by `load_backend` (if any).
You're adding Backends.t but I've added that in bug 35604 and bug 36197: https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=35604&attachment=176688 https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=36197&attachment=174508 Same for use Koha::Plugin::Test::ILLBackend; Those bugs have been in bugzilla for a year.
This overlaps -to some degree- with bug 36197. Marking as RESOLVED until I figure what is the best path for success here.
'In Discussion' suits better I think.