| /* |
| * 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 "FrameView.h" |
| #include "HTMLCollection.h" |
| #include "HTMLImageElement.h" |
| #include "ImageOverlay.h" |
| #include "RenderImage.h" |
| #include "RenderView.h" |
| #include "TextRecognitionOptions.h" |
| #include "Timer.h" |
| |
| namespace WebCore { |
| |
| static constexpr unsigned maximumPendingImageAnalysisCount = 5; |
| static constexpr float minimumWidthForAnalysis = 20; |
| static constexpr float minimumHeightForAnalysis = 20; |
| static constexpr Seconds resumeProcessingDelay = 100_ms; |
| |
| ImageAnalysisQueue::ImageAnalysisQueue(Page& page) |
| : m_page(page) |
| , m_resumeProcessingTimer(*this, &ImageAnalysisQueue::resumeProcessing) |
| { |
| } |
| |
| ImageAnalysisQueue::~ImageAnalysisQueue() = default; |
| |
| void ImageAnalysisQueue::enqueueIfNeeded(HTMLImageElement& element) |
| { |
| if (!is<RenderImage>(element.renderer())) |
| return; |
| |
| auto& renderer = downcast<RenderImage>(*element.renderer()); |
| auto* cachedImage = renderer.cachedImage(); |
| if (!cachedImage || cachedImage->errorOccurred()) |
| return; |
| |
| auto* 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::enqueueAllImages(Document& document, const String& sourceLanguageIdentifier, const String& targetLanguageIdentifier) |
| { |
| if (!m_page) |
| return; |
| |
| if (sourceLanguageIdentifier != m_sourceLanguageIdentifier || targetLanguageIdentifier != m_targetLanguageIdentifier) |
| clear(); |
| |
| m_sourceLanguageIdentifier = sourceLanguageIdentifier; |
| m_targetLanguageIdentifier = targetLanguageIdentifier; |
| enqueueAllImagesRecursive(document); |
| } |
| |
| void ImageAnalysisQueue::enqueueAllImagesRecursive(Document& document) |
| { |
| for (auto& image : descendantsOfType<HTMLImageElement>(document)) |
| enqueueIfNeeded(image); |
| |
| for (auto& frameOwner : descendantsOfType<HTMLFrameOwnerElement>(document)) { |
| if (RefPtr contentDocument = frameOwner.contentDocument()) |
| enqueueAllImagesRecursive(*contentDocument); |
| } |
| } |
| |
| 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_targetLanguageIdentifier.isEmpty() ? TextRecognitionOptions::AllowSnapshots::Yes : TextRecognitionOptions::AllowSnapshots::No; |
| m_page->chrome().client().requestTextRecognition(*element, { m_sourceLanguageIdentifier, m_targetLanguageIdentifier, allowSnapshots }, [this, page = m_page] (auto&&) { |
| if (!page || page->imageAnalysisQueueIfExists() != this) |
| return; |
| |
| if (m_pendingRequestCount) |
| m_pendingRequestCount--; |
| |
| resumeProcessingSoon(); |
| }); |
| } |
| } |
| |
| 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_sourceLanguageIdentifier = { }; |
| m_targetLanguageIdentifier = { }; |
| m_currentTaskNumber = 0; |
| } |
| |
| } // namespace WebCore |
| |
| #endif // ENABLE(IMAGE_ANALYSIS) |