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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
ash / scanner / scanner_session.cc [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/scanner/scanner_session.h"
#include <algorithm>
#include <cstdint>
#include <memory>
#include <optional>
#include <utility>
#include <vector>
#include "ash/public/cpp/scanner/scanner_action.h"
#include "ash/public/cpp/scanner/scanner_profile_scoped_delegate.h"
#include "ash/scanner/scanner_action_view_model.h"
#include "ash/scanner/scanner_command_delegate.h"
#include "ash/scanner/scanner_metrics.h"
#include "ash/scanner/scanner_unpopulated_action.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/memory/ref_counted_memory.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "base/metrics/histogram_functions.h"
#include "base/notreached.h"
#include "base/time/time.h"
#include "components/manta/manta_status.h"
#include "components/manta/proto/scanner.pb.h"
#include "skia/ext/image_operations.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/gfx/codec/jpeg_codec.h"
namespace ash {
namespace {
// The maximum number of pixels in either width or height of an image to be
// processed by scanner.
// We chose a conservative number based on typical laptop screen sizes in case
// that is required by the backend.
constexpr int64_t kMaxEdgePixels = 2300;
// The quality attribute (out of 100) for the JPEG compression algorithm used.
constexpr int kJpegQuality = 90;
// Downscales so that the width and height are both less than kMaxEdgePixels and
// retains the ratio.
scoped_refptr<base::RefCountedMemory> DownscaleImageIfNeeded(
scoped_refptr<base::RefCountedMemory> original_bytes) {
if (original_bytes == nullptr) {
return nullptr;
}
SkBitmap img = gfx::JPEGCodec::Decode(*original_bytes);
int width = img.width();
int height = img.height();
if (width <= 0 || height <= 0 ||
(width <= kMaxEdgePixels && height <= kMaxEdgePixels) ||
(width * height <= kMaxEdgePixels * kMaxEdgePixels)) {
return original_bytes;
}
if (width > height) {
height = kMaxEdgePixels * height / width;
width = kMaxEdgePixels;
} else {
width = kMaxEdgePixels * width / height;
height = kMaxEdgePixels;
}
// If the height and width is 0 given that we only try to resize when the
// total pixels are less than 2300x2300, it will only be possible if it was
// 5 million pixels in one edge and then 1 pixel in the other.
//
// This is clearly an edge case so we will return nullptr to stop processing
// this image.
if (height == 0 || width == 0) {
return nullptr;
}
std::optional<std::vector<uint8_t>> shrunk_jpeg_bytes =
gfx::JPEGCodec::Encode(
skia::ImageOperations::Resize(img, skia::ImageOperations::RESIZE_BEST,
width, height),
kJpegQuality);
if (shrunk_jpeg_bytes.has_value()) {
return base::MakeRefCounted<base::RefCountedBytes>(
std::move(*shrunk_jpeg_bytes));
}
// Fallback.
return original_bytes;
}
// Runs the callback with the populated proto from the response of a call to
// `FetchActionDetailsForImage`.
void OnActionPopulated(
ScannerUnpopulatedAction::PopulatedProtoCallback callback,
std::unique_ptr<manta::proto::ScannerOutput> output,
manta::MantaStatus status) {
if (output == nullptr) {
// TODO(b/363100868): Handle error case
std::move(callback).Run(std::nullopt);
return;
}
if (output->objects_size() != 1) {
std::move(callback).Run(std::nullopt);
return;
}
manta::proto::ScannerObject& object = *output->mutable_objects(0);
if (object.actions_size() != 1) {
std::move(callback).Run(std::nullopt);
return;
}
manta::proto::ScannerAction& action = *object.mutable_actions(0);
std::move(callback).Run(std::move(action));
}
void RecordDetectedAction(manta::proto::ScannerAction action) {
switch (action.action_case()) {
case manta::proto::ScannerAction::kNewEvent:
RecordScannerFeatureUserState(
ScannerFeatureUserState::kNewCalendarEventActionDetected);
return;
case manta::proto::ScannerAction::kNewContact:
RecordScannerFeatureUserState(
ScannerFeatureUserState::kNewContactActionDetected);
return;
case manta::proto::ScannerAction::kNewGoogleDoc:
RecordScannerFeatureUserState(
ScannerFeatureUserState::kNewGoogleDocActionDetected);
return;
case manta::proto::ScannerAction::kNewGoogleSheet:
RecordScannerFeatureUserState(
ScannerFeatureUserState::kNewGoogleSheetActionDetected);
return;
case manta::proto::ScannerAction::kCopyToClipboard:
RecordScannerFeatureUserState(
ScannerFeatureUserState::kCopyToClipboardActionDetected);
return;
case manta::proto::ScannerAction::ACTION_NOT_SET:
return;
}
// This should never be reached, as `action_case()` should always return a
// valid enum value. If the oneof field is set to something which is not
// recognised by this client, that is indistinguishable from an unknown field,
// and the above case should be `ACTION_NOT_SET`.
NOTREACHED();
}
void RecordAllDetectedActions(const manta::proto::ScannerOutput& output) {
bool action_found = false;
for (const manta::proto::ScannerObject& object : output.objects()) {
for (const manta::proto::ScannerAction& action : object.actions()) {
if (action.action_case() != manta::proto::ScannerAction::ACTION_NOT_SET) {
action_found = true;
RecordDetectedAction(action);
}
}
}
if (!action_found) {
RecordScannerFeatureUserState(ScannerFeatureUserState::kNoActionsDetected);
}
}
} // namespace
ScannerSession::ScannerSession(ScannerProfileScopedDelegate* delegate,
ScannerCommandDelegate* command_delegate)
: delegate_(delegate), command_delegate_(command_delegate) {}
ScannerSession::~ScannerSession() = default;
void ScannerSession::FetchActionsForImage(
scoped_refptr<base::RefCountedMemory> jpeg_bytes,
FetchActionsCallback callback) {
scoped_refptr<base::RefCountedMemory> downscaled_jpeg_bytes =
DownscaleImageIfNeeded(std::move(jpeg_bytes));
delegate_->FetchActionsForImage(
downscaled_jpeg_bytes,
base::BindOnce(&ScannerSession::OnActionsReturned,
weak_ptr_factory_.GetWeakPtr(), downscaled_jpeg_bytes,
base::TimeTicks::Now(), std::move(callback)));
}
void ScannerSession::OnActionsReturned(
scoped_refptr<base::RefCountedMemory> downscaled_jpeg_bytes,
base::TimeTicks request_start_time,
FetchActionsCallback callback,
std::unique_ptr<manta::proto::ScannerOutput> output,
manta::MantaStatus status) {
base::UmaHistogramMediumTimes(kScannerFeatureTimerFetchActionsForImage,
base::TimeTicks::Now() - request_start_time);
if (output == nullptr) {
// TODO(b/363100868): Handle error case
std::move(callback).Run({});
return;
}
RecordAllDetectedActions(*output);
if (output->objects_size() == 0) {
std::move(callback).Run({});
return;
}
std::vector<ScannerActionViewModel> action_view_models;
ScannerUnpopulatedAction::PopulateToProtoCallback populate_to_proto_callback =
base::BindRepeating(&ScannerSession::PopulateAction,
weak_ptr_factory_.GetWeakPtr(),
downscaled_jpeg_bytes);
for (manta::proto::ScannerAction& proto_action :
*output->mutable_objects(0)->mutable_actions()) {
std::optional<ScannerUnpopulatedAction> unpopulated_action_ =
ScannerUnpopulatedAction::FromProto(std::move(proto_action),
populate_to_proto_callback);
if (unpopulated_action_.has_value()) {
action_view_models.emplace_back(std::move(*unpopulated_action_),
command_delegate_->GetWeakPtr());
}
}
std::move(callback).Run(std::move(action_view_models));
}
void ScannerSession::PopulateAction(
scoped_refptr<base::RefCountedMemory> downscaled_jpeg_bytes,
manta::proto::ScannerAction unpopulated_action,
ScannerUnpopulatedAction::PopulatedProtoCallback callback) {
delegate_->FetchActionDetailsForImage(
std::move(downscaled_jpeg_bytes), std::move(unpopulated_action),
base::BindOnce(&OnActionPopulated, std::move(callback)));
}
} // namespace ash