forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext.cc
233 lines (194 loc) · 7.48 KB
/
context.cc
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
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/domain_reliability/context.h"
#include <algorithm>
#include <utility>
#include "base/bind.h"
#include "base/json/json_writer.h"
#include "base/logging.h"
#include "base/metrics/histogram_macros.h"
#include "base/metrics/sparse_histogram.h"
#include "base/rand_util.h"
#include "base/values.h"
#include "components/domain_reliability/dispatcher.h"
#include "components/domain_reliability/uploader.h"
#include "components/domain_reliability/util.h"
#include "net/base/net_errors.h"
using base::DictionaryValue;
using base::ListValue;
using base::Value;
namespace domain_reliability {
// static
const int DomainReliabilityContext::kMaxUploadDepthToSchedule = 1;
// static
const size_t DomainReliabilityContext::kMaxQueuedBeacons = 150;
DomainReliabilityContext::DomainReliabilityContext(
const MockableTime* time,
const DomainReliabilityScheduler::Params& scheduler_params,
const std::string& upload_reporter_string,
const base::TimeTicks* last_network_change_time,
const UploadAllowedCallback& upload_allowed_callback,
DomainReliabilityDispatcher* dispatcher,
DomainReliabilityUploader* uploader,
std::unique_ptr<const DomainReliabilityConfig> config)
: config_(std::move(config)),
time_(time),
upload_reporter_string_(upload_reporter_string),
scheduler_(time,
config_->collectors.size(),
scheduler_params,
base::BindRepeating(&DomainReliabilityContext::ScheduleUpload,
base::Unretained(this))),
dispatcher_(dispatcher),
uploader_(uploader),
uploading_beacons_size_(0),
last_network_change_time_(last_network_change_time),
upload_allowed_callback_(upload_allowed_callback) {}
DomainReliabilityContext::~DomainReliabilityContext() = default;
void DomainReliabilityContext::OnBeacon(
std::unique_ptr<DomainReliabilityBeacon> beacon) {
bool success = (beacon->status == "ok");
double sample_rate = beacon->details.quic_port_migration_detected
? 1.0
: config().GetSampleRate(success);
if (base::RandDouble() >= sample_rate)
return;
beacon->sample_rate = sample_rate;
// Allow beacons about reports, but don't schedule an upload for more than
// one layer of recursion, to avoid infinite report loops.
if (beacon->upload_depth <= kMaxUploadDepthToSchedule)
scheduler_.OnBeaconAdded();
beacons_.push_back(std::move(beacon));
bool should_evict = beacons_.size() > kMaxQueuedBeacons;
if (should_evict)
RemoveOldestBeacon();
}
void DomainReliabilityContext::ClearBeacons() {
beacons_.clear();
uploading_beacons_size_ = 0;
}
std::unique_ptr<Value> DomainReliabilityContext::GetWebUIData() const {
DictionaryValue* context_value = new DictionaryValue();
context_value->SetString("origin", config().origin.spec());
context_value->SetInteger("beacon_count", static_cast<int>(beacons_.size()));
context_value->SetInteger("uploading_beacon_count",
static_cast<int>(uploading_beacons_size_));
context_value->Set("scheduler", scheduler_.GetWebUIData());
return std::unique_ptr<Value>(context_value);
}
void DomainReliabilityContext::GetQueuedBeaconsForTesting(
std::vector<const DomainReliabilityBeacon*>* beacons_out) const {
DCHECK(beacons_out);
beacons_out->clear();
for (const auto& beacon : beacons_)
beacons_out->push_back(beacon.get());
}
void DomainReliabilityContext::ScheduleUpload(
base::TimeDelta min_delay,
base::TimeDelta max_delay) {
dispatcher_->ScheduleTask(
base::BindOnce(&DomainReliabilityContext::CallUploadAllowedCallback,
weak_factory_.GetWeakPtr()),
min_delay, max_delay);
}
void DomainReliabilityContext::CallUploadAllowedCallback() {
RemoveExpiredBeacons();
if (beacons_.empty())
return;
upload_allowed_callback_.Run(
config().origin,
base::BindOnce(&DomainReliabilityContext::OnUploadAllowedCallbackComplete,
weak_factory_.GetWeakPtr()));
}
void DomainReliabilityContext::OnUploadAllowedCallbackComplete(bool allowed) {
if (allowed)
StartUpload();
}
void DomainReliabilityContext::StartUpload() {
RemoveExpiredBeacons();
if (beacons_.empty())
return;
MarkUpload();
size_t collector_index = scheduler_.OnUploadStart();
const GURL& collector_url = *config().collectors[collector_index];
DCHECK(upload_time_.is_null());
upload_time_ = time_->NowTicks();
std::string report_json = "{}";
int max_upload_depth = -1;
bool wrote = base::JSONWriter::Write(
*CreateReport(upload_time_,
collector_url,
&max_upload_depth),
&report_json);
DCHECK(wrote);
DCHECK_NE(-1, max_upload_depth);
uploader_->UploadReport(
report_json, max_upload_depth, collector_url,
base::BindOnce(&DomainReliabilityContext::OnUploadComplete,
weak_factory_.GetWeakPtr()));
}
void DomainReliabilityContext::OnUploadComplete(
const DomainReliabilityUploader::UploadResult& result) {
if (result.is_success())
CommitUpload();
else
RollbackUpload();
scheduler_.OnUploadComplete(result);
DCHECK(!upload_time_.is_null());
last_upload_time_ = upload_time_;
upload_time_ = base::TimeTicks();
}
std::unique_ptr<const Value> DomainReliabilityContext::CreateReport(
base::TimeTicks upload_time,
const GURL& collector_url,
int* max_upload_depth_out) const {
int max_upload_depth = 0;
std::unique_ptr<ListValue> beacons_value(new ListValue());
for (const auto& beacon : beacons_) {
beacons_value->Append(beacon->ToValue(upload_time,
*last_network_change_time_,
collector_url,
config().path_prefixes));
if (beacon->upload_depth > max_upload_depth)
max_upload_depth = beacon->upload_depth;
}
std::unique_ptr<DictionaryValue> report_value(new DictionaryValue());
report_value->SetString("reporter", upload_reporter_string_);
report_value->Set("entries", std::move(beacons_value));
*max_upload_depth_out = max_upload_depth;
return std::move(report_value);
}
void DomainReliabilityContext::MarkUpload() {
DCHECK_EQ(0u, uploading_beacons_size_);
uploading_beacons_size_ = beacons_.size();
DCHECK_NE(0u, uploading_beacons_size_);
}
void DomainReliabilityContext::CommitUpload() {
auto begin = beacons_.begin();
auto end = begin + uploading_beacons_size_;
beacons_.erase(begin, end);
DCHECK_NE(0u, uploading_beacons_size_);
uploading_beacons_size_ = 0;
}
void DomainReliabilityContext::RollbackUpload() {
DCHECK_NE(0u, uploading_beacons_size_);
uploading_beacons_size_ = 0;
}
void DomainReliabilityContext::RemoveOldestBeacon() {
DCHECK(!beacons_.empty());
DVLOG(1) << "Beacon queue for " << config().origin << " full; "
<< "removing oldest beacon";
beacons_.pop_front();
// If that just removed a beacon counted in uploading_beacons_size_, decrement
// that.
if (uploading_beacons_size_ > 0)
--uploading_beacons_size_;
}
void DomainReliabilityContext::RemoveExpiredBeacons() {
base::TimeTicks now = time_->NowTicks();
const base::TimeDelta kMaxAge = base::TimeDelta::FromHours(1);
while (!beacons_.empty() && now - beacons_.front()->start_time >= kMaxAge)
beacons_.pop_front();
}
} // namespace domain_reliability