RFR: 1602: Fix labels handling in GitLabMergeRequest [v2]

Magnus Ihse Bursie ihse at openjdk.org
Tue Sep 20 17:36:21 UTC 2022


On Tue, 20 Sep 2022 17:26:18 GMT, Erik Joelsson <erikj at openjdk.org> wrote:

>> 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.
>
> Erik Joelsson has updated the pull request incrementally with one additional commit since the last revision:
> 
>   Keep labels field sorted

Looks good

-------------

Marked as reviewed by ihse (Reviewer).

PR: https://git.openjdk.org/skara/pull/1376


More information about the skara-dev mailing list