blob: 248a306025ae7ec024990408b50749d2d5bb32b4 [file] [log] [blame]
/*
* Copyright (C) 2021 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "ImageAnalysisQueue.h"
#if ENABLE(IMAGE_ANALYSIS)
#include "Chrome.h"
#include "ChromeClient.h"
#include "Frame.h"
#include "HTMLCollection.h"
#include "HTMLImageElement.h"
#include "ImageOverlay.h"
#include "LocalFrameView.h"
#include "RenderImage.h"
#include "RenderView.h"
#include "TextRecognitionOptions.h"
#include "Timer.h"
#include "TypedElementDescendantIteratorInlines.h"
#include <pal/HysteresisActivity.h>
#include <wtf/TZoneMallocInlines.h>
namespace WebCore {
static constexpr unsigned maximumPendingImageAnalysisCount = 5;
static constexpr float minimumWidthForAnalysis = 20;
static constexpr float minimumHeightForAnalysis = 20;
static constexpr Seconds resumeProcessingDelay = 100_ms;
WTF_MAKE_TZONE_ALLOCATED_IMPL(ImageAnalysisQueue);
Ref<ImageAnalysisQueue> ImageAnalysisQueue::create(Page& page)
{
return adoptRef(*new ImageAnalysisQueue(page));
}
ImageAnalysisQueue::ImageAnalysisQueue(Page& page)
: m_page(page)
, m_resumeProcessingTimer(*this, &ImageAnalysisQueue::resumeProcessing)
{
}
ImageAnalysisQueue::~ImageAnalysisQueue() = default;
void ImageAnalysisQueue::enqueueIfNeeded(HTMLImageElement& element)
{
CheckedPtr renderer = dynamicDowncast<RenderImage>(element.renderer());
if (!renderer)
return;
CachedResourceHandle cachedImage = renderer->cachedImage();
if (!cachedImage || cachedImage->errorOccurred())
return;
RefPtr image = cachedImage->image();
if (!image || image->width() < minimumWidthForAnalysis || image->height() < minimumHeightForAnalysis)
return;
bool shouldAddToQueue = [&] {
auto url = cachedImage->url();
auto iterator = m_queuedElements.find(element);
if (iterator == m_queuedElements.end()) {
m_queuedElements.add(element, url);
return true;
}
if (iterator->value == url)
return false;
iterator->value = url;
for (auto& entry : m_queue) {
if (entry.element == &element)
return false;
}
return true;
}();
if (!shouldAddToQueue)
return;
Ref view = renderer->view().frameView();
m_queue.enqueue({
element,
renderer->isVisibleInDocumentRect(view->windowToContents(view->windowClipRect())) ? Priority::High : Priority::Low,
nextTaskNumber()
});
resumeProcessingSoon();
}
void ImageAnalysisQueue::resumeProcessingSoon()
{
if (m_queue.isEmpty() || m_resumeProcessingTimer.isActive())
return;
m_resumeProcessingTimer.startOneShot(resumeProcessingDelay);
}
void ImageAnalysisQueue::enqueueAllImagesIfNeeded(Frame& frame, const String& sourceLanguageIdentifier, const String& targetLanguageIdentifier)
{
if (!m_page)
return;
if (m_analysisOfAllImagesOnPageHasStarted)
return;
m_analysisOfAllImagesOnPageHasStarted = true;
if (sourceLanguageIdentifier != m_languageIdentifiers.source || targetLanguageIdentifier != m_languageIdentifiers.target)
clear();
m_languageIdentifiers.source = sourceLanguageIdentifier;
m_languageIdentifiers.target = targetLanguageIdentifier;
enqueueAllImagesRecursive(frame);
}
void ImageAnalysisQueue::enqueueAllImagesRecursive(Frame& frame)
{
RefPtr localFrame = dynamicDowncast<LocalFrame>(frame);
if (localFrame) {
if (RefPtr document = localFrame->document()) {
for (auto& image : descendantsOfType<HTMLImageElement>(*document))
enqueueIfNeeded(image);
}
}
for (auto* nextFrame = frame.tree().firstChild(); nextFrame; nextFrame = nextFrame->tree().nextSibling())
enqueueAllImagesRecursive(*nextFrame);
}
void ImageAnalysisQueue::resumeProcessing()
{
if (!m_page)
return;
while (!m_queue.isEmpty() && m_pendingRequestCount < maximumPendingImageAnalysisCount) {
RefPtr element = m_queue.dequeue().element.get();
if (!element || !element->isConnected())
continue;
m_pendingRequestCount++;
m_page->resetTextRecognitionResult(*element);
if (auto* image = element->cachedImage(); image && !image->errorOccurred())
m_queuedElements.set(*element, image->url());
auto allowSnapshots = m_languageIdentifiers.target.isEmpty() ? TextRecognitionOptions::AllowSnapshots::Yes : TextRecognitionOptions::AllowSnapshots::No;
m_page->chrome().client().requestTextRecognition(*element, { m_languageIdentifiers.source, m_languageIdentifiers.target, allowSnapshots }, [this, page = m_page] (auto&&) {
if (!page || page->imageAnalysisQueueIfExists() != this)
return;
if (m_pendingRequestCount)
m_pendingRequestCount--;
resumeProcessingSoon();
if (m_queue.isEmpty() && m_imageQueueEmptyHysteresis)
m_imageQueueEmptyHysteresis->impulse();
});
}
}
void ImageAnalysisQueue::setDidBecomeEmptyCallback(Function<void()>&& callback)
{
m_imageQueueEmptyHysteresis = makeUnique<PAL::HysteresisActivity>([callback = WTFMove(callback)] (PAL::HysteresisState state) {
if (state == PAL::HysteresisState::Stopped)
callback();
}, 1_s);
}
void ImageAnalysisQueue::clearDidBecomeEmptyCallback()
{
m_imageQueueEmptyHysteresis = nullptr;
}
void ImageAnalysisQueue::clear()
{
// FIXME: This should cancel pending requests in addition to emptying the task queue.
m_pendingRequestCount = 0;
m_resumeProcessingTimer.stop();
m_queue = { };
m_queuedElements.clear();
m_languageIdentifiers = { };
m_currentTaskNumber = 0;
m_analysisOfAllImagesOnPageHasStarted = false;
m_imageQueueEmptyHysteresis = nullptr;
}
} // namespace WebCore
#endif // ENABLE(IMAGE_ANALYSIS)