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
cc / test / test_options_provider.cc [blame]
// Copyright 2018 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/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "cc/test/test_options_provider.h"
#include <limits>
#include <vector>
#include "cc/paint/paint_op_writer.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/skia/include/core/SkColorSpace.h"
#include "third_party/skia/include/core/SkImageInfo.h"
#include "third_party/skia/include/core/SkRefCnt.h"
#include "third_party/skia/include/core/SkSize.h"
namespace cc {
namespace {
constexpr int kSkottieSerializationHistoryTestPurgePeriod = 5;
} // namespace
class TestOptionsProvider::DiscardableManager
: public SkStrikeServer::DiscardableHandleManager,
public SkStrikeClient::DiscardableHandleManager {
public:
DiscardableManager() = default;
~DiscardableManager() override = default;
// SkStrikeServer::DiscardableHandleManager implementation.
SkDiscardableHandleId createHandle() override { return next_handle_id_++; }
bool lockHandle(SkDiscardableHandleId handle_id) override {
CHECK_LT(handle_id, next_handle_id_);
return true;
}
// SkStrikeServer::DiscardableHandleManager::isHandleDeleted implementation.
bool isHandleDeleted(SkDiscardableHandleId) override { return false; }
// SkStrikeClient::DiscardableHandleManager implementation.
bool deleteHandle(SkDiscardableHandleId handle_id) override {
CHECK_LT(handle_id, next_handle_id_);
return false;
}
// SkStrikeClient::DiscardableHandleManager implementation.
void notifyCacheMiss(SkStrikeClient::CacheMissType type,
int fontSize) override {}
private:
SkDiscardableHandleId next_handle_id_ = 1u;
};
TestOptionsProvider::TestOptionsProvider()
: discardable_manager_(sk_make_sp<DiscardableManager>()),
strike_server_(discardable_manager_.get()),
strike_client_(discardable_manager_),
color_space_(SkColorSpace::MakeSRGB()),
skottie_serialization_history_(
kSkottieSerializationHistoryTestPurgePeriod),
client_paint_cache_(std::numeric_limits<size_t>::max()),
serialize_options_(this,
this,
&client_paint_cache_,
&strike_server_,
color_space_,
&skottie_serialization_history_,
can_use_lcd_text_,
context_supports_distance_field_text_,
max_texture_size_),
deserialize_options_{.transfer_cache = this,
.paint_cache = &service_paint_cache_,
.strike_client = &strike_client_,
.scratch_buffer = scratch_buffer_,
.is_privileged = true} {}
TestOptionsProvider::~TestOptionsProvider() = default;
sk_sp<SkColorSpace> TestOptionsProvider::color_space() {
return color_space_;
}
void TestOptionsProvider::PushFonts() {
std::vector<uint8_t> font_data;
strike_server_.writeStrikeData(&font_data);
if (font_data.size() == 0u)
return;
CHECK(strike_client_.readStrikeData(font_data.data(), font_data.size()));
}
ImageProvider::ScopedResult TestOptionsProvider::GetRasterContent(
const DrawImage& draw_image) {
DCHECK(!draw_image.paint_image().IsPaintWorklet());
uint32_t image_id = draw_image.paint_image().GetSwSkImage()->uniqueID();
// Lock and reuse the entry if possible.
const EntryKey entry_key(TransferCacheEntryType::kImage, image_id);
if (LockEntryDirect(entry_key)) {
return ScopedResult(DecodedDrawImage(
image_id, nullptr, SkSize::MakeEmpty(), draw_image.scale(),
draw_image.filter_quality(), false, true));
}
decoded_images_.push_back(draw_image);
SkBitmap bitmap;
const auto& paint_image = draw_image.paint_image();
bitmap.allocPixelsFlags(
SkImageInfo::MakeN32Premul(paint_image.width(), paint_image.height()),
SkBitmap::kZeroPixels_AllocFlag);
// Create a transfer cache entry for this image.
ClientImageTransferCacheEntry cache_entry(
ClientImageTransferCacheEntry::Image(&bitmap.pixmap()),
false /* needs_mips */, std::nullopt);
const uint32_t data_size = cache_entry.SerializedSize();
auto data = PaintOpWriter::AllocateAlignedBuffer<uint8_t>(data_size);
if (!cache_entry.Serialize(base::span<uint8_t>(data.get(), data_size))) {
return ScopedResult();
}
CreateEntryDirect(entry_key, base::span<uint8_t>(data.get(), data_size));
return ScopedResult(DecodedDrawImage(
image_id, nullptr, SkSize::MakeEmpty(), draw_image.scale(),
draw_image.filter_quality(), false, true));
}
void TestOptionsProvider::ClearPaintCache() {
client_paint_cache_.FinalizePendingEntries();
client_paint_cache_.PurgeAll();
service_paint_cache_.PurgeAll();
}
void TestOptionsProvider::ForcePurgeSkottieSerializationHistory() {
for (int i = 0; i < kSkottieSerializationHistoryTestPurgePeriod; ++i) {
skottie_serialization_history_.RequestInactiveAnimationsPurge();
}
}
} // namespace cc