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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "chrome/browser/thumbnail/cc/etc1_thumbnail_helper.h"
#include <array>
#include "base/feature_list.h"
#include "base/files/file_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/task/bind_post_task.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/thread_pool.h"
#include "build/build_config.h"
#include "third_party/android_opengl/etc1/etc1.h"
#include "third_party/skia/include/core/SkImage.h"
#include "ui/android/resources/etc1_utils.h"
namespace thumbnail {
namespace {
void CompressTask(SkBitmap raw_data,
bool supports_etc_non_power_of_two,
base::OnceCallback<void(sk_sp<SkPixelRef>, const gfx::Size&)>
post_compression_task) {
sk_sp<SkPixelRef> compressed_data = nullptr;
if (base::FeatureList::IsEnabled(ui::kCompressBitmapAtBackgroundPriority)) {
compressed_data = ui::Etc1::CompressBitmapAtBackgroundPriority(
raw_data, supports_etc_non_power_of_two);
} else {
compressed_data =
ui::Etc1::CompressBitmap(raw_data, supports_etc_non_power_of_two);
}
gfx::Size content_size = compressed_data
? gfx::Size(raw_data.width(), raw_data.height())
: gfx::Size();
std::move(post_compression_task)
.Run(std::move(compressed_data), content_size);
}
void WriteTask(base::FilePath file_path,
sk_sp<SkPixelRef> compressed_data,
float scale,
const gfx::Size& content_size,
base::OnceClosure post_write_task) {
DCHECK(compressed_data);
base::File file(file_path,
base::File::FLAG_CREATE_ALWAYS | base::File::FLAG_WRITE);
bool success =
ui::Etc1::WriteToFile(&file, content_size, scale, compressed_data);
file.Close();
if (!success) {
base::DeleteFile(file_path);
}
std::move(post_write_task).Run();
}
void ReadTask(
base::FilePath file_path,
base::OnceCallback<void(sk_sp<SkPixelRef>, float, const gfx::Size&)>
post_read_task) {
gfx::Size content_size;
float scale = 0.f;
sk_sp<SkPixelRef> compressed_data;
if (base::PathExists(file_path)) {
base::File file(file_path, base::File::FLAG_OPEN | base::File::FLAG_READ);
bool valid_contents =
ui::Etc1::ReadFromFile(&file, &content_size, &scale, &compressed_data);
file.Close();
if (!valid_contents) {
content_size.SetSize(0, 0);
scale = 0.f;
compressed_data.reset();
base::DeleteFile(file_path);
}
}
std::move(post_read_task)
.Run(std::move(compressed_data), scale, content_size);
}
void DeleteTask(base::FilePath file_path) {
if (base::PathExists(file_path)) {
base::DeleteFile(file_path);
}
}
void DecompressTask(
base::OnceCallback<void(bool, const SkBitmap&)> post_decompression_callback,
sk_sp<SkPixelRef> compressed_data,
float scale,
const gfx::Size& content_size) {
SkBitmap raw_data_small;
bool success = false;
if (compressed_data) {
gfx::Size buffer_size =
gfx::Size(compressed_data->width(), compressed_data->height());
SkBitmap raw_data;
raw_data.allocPixels(SkImageInfo::MakeN32(
buffer_size.width(), buffer_size.height(), kOpaque_SkAlphaType));
success = etc1_decode_image(
reinterpret_cast<unsigned char*>(compressed_data->pixels()),
reinterpret_cast<unsigned char*>(raw_data.getPixels()),
buffer_size.width(), buffer_size.height(), raw_data.bytesPerPixel(),
raw_data.rowBytes());
raw_data.setImmutable();
if (!success) {
// Leave raw_data_small empty for consistency with other failure modes.
} else if (content_size == buffer_size) {
// Shallow copy the pixel reference.
raw_data_small = raw_data;
} else {
// The content size is smaller than the buffer size (likely because of
// a power-of-two rounding), so deep copy the bitmap.
raw_data_small.allocPixels(SkImageInfo::MakeN32(
content_size.width(), content_size.height(), kOpaque_SkAlphaType));
SkCanvas small_canvas(raw_data_small);
small_canvas.drawImage(raw_data.asImage(), 0, 0);
raw_data_small.setImmutable();
}
}
std::move(post_decompression_callback).Run(success, raw_data_small);
}
} // anonymous namespace
Etc1ThumbnailHelper::Etc1ThumbnailHelper(
const base::FilePath& base_path,
scoped_refptr<base::SequencedTaskRunner> file_task_runner)
: base_path_(base_path),
default_task_runner_(base::SequencedTaskRunner::GetCurrentDefault()),
file_task_runner_(file_task_runner) {}
Etc1ThumbnailHelper::~Etc1ThumbnailHelper() {
DCHECK(default_task_runner_->RunsTasksInCurrentSequence());
}
void Etc1ThumbnailHelper::Compress(
SkBitmap raw_data,
bool supports_etc_non_power_of_two,
base::OnceCallback<void(sk_sp<SkPixelRef>, const gfx::Size&)>
post_compression_task) {
DCHECK(default_task_runner_->RunsTasksInCurrentSequence());
base::ThreadPool::PostTask(
FROM_HERE,
{base::TaskPriority::BEST_EFFORT,
base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN},
base::BindOnce(&CompressTask, raw_data, supports_etc_non_power_of_two,
base::BindPostTask(default_task_runner_,
std::move(post_compression_task))));
}
void Etc1ThumbnailHelper::Write(TabId tab_id,
sk_sp<SkPixelRef> compressed_data,
float scale,
const gfx::Size& content_size,
base::OnceClosure post_write_task) {
DCHECK(default_task_runner_->RunsTasksInCurrentSequence());
base::FilePath file_path = GetFilePath(tab_id);
file_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&WriteTask, file_path, compressed_data, scale,
content_size,
base::BindPostTask(default_task_runner_,
std::move(post_write_task))));
}
// Note: When calling this function, please check that the correct thread is
// being bound to for post_read_task
void Etc1ThumbnailHelper::Read(
TabId tab_id,
base::OnceCallback<void(sk_sp<SkPixelRef>, float, const gfx::Size&)>
post_read_task) {
DCHECK(default_task_runner_->RunsTasksInCurrentSequence());
base::FilePath file_path = GetFilePath(tab_id);
file_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&ReadTask, file_path, std::move(post_read_task)));
}
void Etc1ThumbnailHelper::Delete(TabId tab_id) {
DCHECK(default_task_runner_->RunsTasksInCurrentSequence());
base::FilePath file_path = GetFilePath(tab_id);
file_task_runner_->PostTask(FROM_HERE,
base::BindOnce(&DeleteTask, file_path));
}
void Etc1ThumbnailHelper::Decompress(
base::OnceCallback<void(bool, const SkBitmap&)> post_decompression_callback,
sk_sp<SkPixelRef> compressed_data,
float scale,
const gfx::Size& content_size) {
DCHECK(default_task_runner_->RunsTasksInCurrentSequence());
base::ThreadPool::PostTask(
FROM_HERE,
{base::TaskPriority::BEST_EFFORT,
base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN},
base::BindOnce(&DecompressTask,
base::BindPostTask(default_task_runner_,
std::move(post_decompression_callback)),
compressed_data, scale, content_size));
}
base::FilePath Etc1ThumbnailHelper::GetFilePath(TabId tab_id) {
return base_path_.Append(base::NumberToString(tab_id));
}
} // namespace thumbnail
|