The OS might request the same file again if we take too much time to
fulfill a request. So in case it's queueing the same one again instead
of bailing out just fail the second one and let the first one finish
properly.
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
void VfsCfApi::scheduleHydrationJob(const QString &requestId, const QString &folderPath)
{
- Q_ASSERT(std::none_of(std::cbegin(d->hydrationJobs), std::cend(d->hydrationJobs), [=](HydrationJob *job) {
+ const auto jobAlreadyScheduled = std::any_of(std::cbegin(d->hydrationJobs), std::cend(d->hydrationJobs), [=](HydrationJob *job) {
return job->requestId() == requestId || job->folderPath() == folderPath;
- }));
+ });
+
+ if (jobAlreadyScheduled) {
+ qCWarning(lcCfApi) << "The OS submitted again a hydration request which is already on-going" << requestId << folderPath;
+ emit hydrationRequestFailed(requestId);
+ return;
+ }
if (d->hydrationJobs.isEmpty()) {
emit beginHydrating();