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
|
// Copyright (c) 2012 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 "net/base/capturing_net_log.h"
#include "base/logging.h"
namespace net {
CapturingNetLog::Entry::Entry(EventType type,
const base::TimeTicks& time,
Source source,
EventPhase phase,
EventParameters* extra_parameters)
: type(type), time(time), source(source), phase(phase),
extra_parameters(extra_parameters) {
}
CapturingNetLog::Entry::~Entry() {}
CapturingNetLog::CapturingNetLog(size_t max_num_entries)
: last_id_(0),
max_num_entries_(max_num_entries),
log_level_(LOG_ALL_BUT_BYTES) {
}
CapturingNetLog::~CapturingNetLog() {}
void CapturingNetLog::GetEntries(EntryList* entry_list) const {
base::AutoLock lock(lock_);
*entry_list = entries_;
}
void CapturingNetLog::Clear() {
base::AutoLock lock(lock_);
entries_.clear();
}
void CapturingNetLog::SetLogLevel(NetLog::LogLevel log_level) {
base::AutoLock lock(lock_);
log_level_ = log_level;
}
void CapturingNetLog::AddEntry(
EventType type,
const Source& source,
EventPhase phase,
const scoped_refptr<EventParameters>& extra_parameters) {
DCHECK(source.is_valid());
base::AutoLock lock(lock_);
Entry entry(type, base::TimeTicks::Now(), source, phase, extra_parameters);
if (entries_.size() + 1 < max_num_entries_)
entries_.push_back(entry);
}
uint32 CapturingNetLog::NextID() {
return base::subtle::NoBarrier_AtomicIncrement(&last_id_, 1);
}
NetLog::LogLevel CapturingNetLog::GetLogLevel() const {
base::AutoLock lock(lock_);
return log_level_;
}
void CapturingNetLog::AddThreadSafeObserver(
NetLog::ThreadSafeObserver* observer,
NetLog::LogLevel log_level) {
NOTIMPLEMENTED() << "Not currently used by net unit tests.";
}
void CapturingNetLog::SetObserverLogLevel(ThreadSafeObserver* observer,
LogLevel log_level) {
NOTIMPLEMENTED() << "Not currently used by net unit tests.";
}
void CapturingNetLog::RemoveThreadSafeObserver(
NetLog::ThreadSafeObserver* observer) {
NOTIMPLEMENTED() << "Not currently used by net unit tests.";
}
CapturingBoundNetLog::CapturingBoundNetLog(size_t max_num_entries)
: capturing_net_log_(max_num_entries),
net_log_(BoundNetLog::Make(&capturing_net_log_,
net::NetLog::SOURCE_NONE)) {
}
CapturingBoundNetLog::~CapturingBoundNetLog() {}
void CapturingBoundNetLog::GetEntries(
CapturingNetLog::EntryList* entry_list) const {
capturing_net_log_.GetEntries(entry_list);
}
void CapturingBoundNetLog::Clear() {
capturing_net_log_.Clear();
}
void CapturingBoundNetLog::SetLogLevel(NetLog::LogLevel log_level) {
capturing_net_log_.SetLogLevel(log_level);
}
} // namespace net
|