Bug 39092 - When loading an ILL backend plugin it should be cached
Summary: When loading an ILL backend plugin it should be cached
Status: In Discussion
Alias: None
Product: Koha
Classification: Unclassified
Component: Architecture, internals, and plumbing (show other bugs)
Version: Main
Hardware: All All
: P5 - low normal
Assignee: Tomás Cohen Arazi (tcohen)
QA Contact: Testopia
URL:
Keywords:
Depends on: 36197
Blocks:
  Show dependency treegraph
 
Reported: 2025-02-11 13:32 UTC by Tomás Cohen Arazi (tcohen)
Modified: 2025-03-31 14:50 UTC (History)
3 users (show)

See Also:
Change sponsored?: ---
Patch complexity: Small patch
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:


Attachments
Bug 39092: Unit tests (4.96 KB, patch)
2025-02-11 15:17 UTC, Tomás Cohen Arazi (tcohen)
Details | Diff | Splinter Review
Bug 39092: Cache the plugin object when loading plugin backend (1.69 KB, patch)
2025-02-11 15:17 UTC, Tomás Cohen Arazi (tcohen)
Details | Diff | Splinter Review
Bug 39092: (follow-up) Do not look for plugins if Standard backend used (1.06 KB, patch)
2025-02-11 15:17 UTC, Tomás Cohen Arazi (tcohen)
Details | Diff | Splinter Review
Bug 39092: Use pre-loaded plugin (1.04 KB, patch)
2025-02-11 15:17 UTC, Tomás Cohen Arazi (tcohen)
Details | Diff | Splinter Review

Note You need to log in before you can comment on or make changes to this bug.
Description Tomás Cohen Arazi (tcohen) 2025-02-11 13:32:46 UTC
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.
Comment 1 Tomás Cohen Arazi (tcohen) 2025-02-11 13:56:16 UTC
Changing status to normal as it really is a performance bug.
Comment 2 Tomás Cohen Arazi (tcohen) 2025-02-11 15:17:34 UTC
Created attachment 177735 [details] [review]
Bug 39092: Unit tests
Comment 3 Tomás Cohen Arazi (tcohen) 2025-02-11 15:17:36 UTC
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
Comment 4 Tomás Cohen Arazi (tcohen) 2025-02-11 15:17:38 UTC
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.
Comment 5 Tomás Cohen Arazi (tcohen) 2025-02-11 15:17:40 UTC
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).
Comment 6 Pedro Amorim 2025-02-11 15:30:16 UTC
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.
Comment 7 Tomás Cohen Arazi (tcohen) 2025-02-11 17:20:45 UTC
This overlaps -to some degree- with bug 36197.

Marking as RESOLVED until I figure what is the best path for success here.
Comment 8 Tomás Cohen Arazi (tcohen) 2025-02-11 17:45:49 UTC
'In Discussion' suits better I think.