1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/ash/clipboard/clipboard_image_model_factory_impl.h"
#include <algorithm>
#include "chrome/browser/profiles/profile.h"
#include "chromeos/ash/components/browser_context_helper/browser_context_helper.h"
#include "components/user_manager/user_manager.h"
namespace {
// Helpers ---------------------------------------------------------------------
// Analogous to `ProfileManager::GetPrimaryUserProfile()` except this method
// returns `nullptr` in the case where the primary user profile is not ready.
Profile* GetPrimaryUserProfile() {
const auto* const user_manager = user_manager::UserManager::Get();
if (!user_manager) {
return nullptr;
}
const auto* const user = user_manager->GetPrimaryUser();
if (!user) {
return nullptr;
}
auto* const helper = ash::BrowserContextHelper::Get();
if (!helper) {
return nullptr;
}
auto* const browser_context = helper->GetBrowserContextByUser(user);
return browser_context ? Profile::FromBrowserContext(browser_context)
: nullptr;
}
} // namespace
// ClipboardImageModelFactoryImpl ----------------------------------------------
ClipboardImageModelFactoryImpl::ClipboardImageModelFactoryImpl()
: idle_timer_(FROM_HERE,
base::Minutes(2),
this,
&ClipboardImageModelFactoryImpl::OnRequestIdle) {}
ClipboardImageModelFactoryImpl::~ClipboardImageModelFactoryImpl() = default;
void ClipboardImageModelFactoryImpl::Render(const base::UnguessableToken& id,
const std::string& html_markup,
const gfx::Size& bounding_box_size,
ImageModelCallback callback) {
DCHECK(!html_markup.empty());
pending_list_.emplace_front(id, html_markup, bounding_box_size,
std::move(callback));
StartNextRequest();
}
void ClipboardImageModelFactoryImpl::CancelRequest(
const base::UnguessableToken& id) {
if (request_ && request_->IsRunningRequest(id)) {
request_->Stop(
ClipboardImageModelRequest::RequestStopReason::kRequestCanceled);
return;
}
auto iter = std::ranges::find(pending_list_, id,
&ClipboardImageModelRequest::Params::id);
if (iter == pending_list_.end()) {
return;
}
pending_list_.erase(iter);
}
void ClipboardImageModelFactoryImpl::Activate() {
active_ = true;
StartNextRequest();
}
void ClipboardImageModelFactoryImpl::Deactivate() {
active_ = false;
// Rendering will not stop if |active_until_empty_| has been set true by a
// call to `RenderCurrentPendingRequests()`.
if (active_until_empty_) {
return;
}
if ((!request_ || !request_->IsModifyingClipboard())) {
return;
}
// Stop the currently running request if it is modifying the clipboard.
// ClipboardImageModelFactory is `Deactivate()`-ed prior to the user pasting
// and a modified clipboard could interfere with pasting from
// ClipboardHistory.
pending_list_.emplace_front(request_->StopAndGetParams());
}
void ClipboardImageModelFactoryImpl::RenderCurrentPendingRequests() {
active_until_empty_ = true;
StartNextRequest();
}
void ClipboardImageModelFactoryImpl::OnShutdown() {
// Reset |request_| to drop its reference to Profile, specifically the
// RenderProcessHost of its WebContents.
request_.reset();
}
void ClipboardImageModelFactoryImpl::StartNextRequest() {
if (pending_list_.empty()) {
active_until_empty_ = false;
}
if (pending_list_.empty() || (!active_ && !active_until_empty_) ||
(request_ && request_->IsRunningRequest())) {
return;
}
if (!request_) {
// Use the primary profile instead of the active profile to create the
// `content::WebContents` that renders html.
request_ = std::make_unique<ClipboardImageModelRequest>(
GetPrimaryUserProfile(),
base::BindRepeating(&ClipboardImageModelFactoryImpl::StartNextRequest,
weak_ptr_factory_.GetWeakPtr()));
}
// Reset the timer that cleans up |request_|. If StartNextRequest() is not
// called again in 2 minutes, |request_| will be reset.
idle_timer_.Reset();
request_->Start(std::move(pending_list_.front()));
pending_list_.pop_front();
}
void ClipboardImageModelFactoryImpl::OnRequestIdle() {
if (!request_) {
return;
}
DCHECK(!request_->IsRunningRequest())
<< "Running requests should timeout or complete before being cleaned up.";
request_.reset();
}
|