RFR: 1602: Fix labels handling in GitLabMergeRequest
Erik Joelsson
erikj at openjdk.org
Thu Sep 15 21:47:19 UTC 2022
A PullRequest exports two methods for getting all labels: labels() and labelNames(). The first returns List<Label> and the latter returns List<String>. The labelNames method has a default implementation that calls labels() and maps them to the name field. This is ok for most implementations, but not for GitLabMergeRequest.
In GitLabMergeRequest, only the names of the labels are available from the merge_request REST object itself. In order to convert these to Label objects, it needs to make another REST call on the "project" (repository) to get the full label data. This extra call can add up to quite significant amounts of time when processing multiple PullRequest instances.
To make matters worse, the labels in GitLabMergeRequest are initialized in the constructor, so for every GitLabMergeRequest instance created, an extra REST call is made. There is also just a single use of PullRequest::labels() in the whole code base, and that is in the default implementation for labelNames(), so caller is ever interested in the full Label objects. This means that every instance of GitLabMergeRequest is making this extra REST call to initialize a cached set of data that is never used.
I'm solving this by only caching the label names instead of full Label objects. I've tried to retain the semantics of each method that deal with labels. The add/remove/set methods have been improved to update the cache instead of just clearing it.
-------------
Commit messages:
- SKARA-1602
Changes: https://git.openjdk.org/skara/pull/1376/files
Webrev: https://webrevs.openjdk.org/?repo=skara&pr=1376&range=00
Issue: https://bugs.openjdk.org/browse/SKARA-1602
Stats: 23 lines in 1 file changed: 4 ins; 4 del; 15 mod
Patch: https://git.openjdk.org/skara/pull/1376.diff
Fetch: git fetch https://git.openjdk.org/skara pull/1376/head:pull/1376
PR: https://git.openjdk.org/skara/pull/1376
More information about the skara-dev
mailing list