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
|
// Copyright (c) 2010 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/net_log.h"
#include "base/string_util.h"
#include "base/time.h"
#include "base/values.h"
namespace net {
// static
const char* NetLog::EventTypeToString(EventType event) {
switch (event) {
#define EVENT_TYPE(label) case TYPE_ ## label: return #label;
#include "net/base/net_log_event_type_list.h"
#undef EVENT_TYPE
}
return NULL;
}
// static
std::vector<NetLog::EventType> NetLog::GetAllEventTypes() {
std::vector<NetLog::EventType> types;
#define EVENT_TYPE(label) types.push_back(TYPE_ ## label);
#include "net/base/net_log_event_type_list.h"
#undef EVENT_TYPE
return types;
}
void BoundNetLog::AddEntry(
NetLog::EventType type,
NetLog::EventPhase phase,
const scoped_refptr<NetLog::EventParameters>& params) const {
if (net_log_) {
net_log_->AddEntry(type, base::TimeTicks::Now(), source_, phase, params);
}
}
void BoundNetLog::AddEntryWithTime(
NetLog::EventType type,
const base::TimeTicks& time,
NetLog::EventPhase phase,
const scoped_refptr<NetLog::EventParameters>& params) const {
if (net_log_) {
net_log_->AddEntry(type, time, source_, phase, params);
}
}
bool BoundNetLog::HasListener() const {
if (net_log_)
return net_log_->HasListener();
return false;
}
void BoundNetLog::AddEvent(
NetLog::EventType event_type,
const scoped_refptr<NetLog::EventParameters>& params) const {
AddEntry(event_type, NetLog::PHASE_NONE, params);
}
void BoundNetLog::BeginEvent(
NetLog::EventType event_type,
const scoped_refptr<NetLog::EventParameters>& params) const {
AddEntry(event_type, NetLog::PHASE_BEGIN, params);
}
void BoundNetLog::EndEvent(
NetLog::EventType event_type,
const scoped_refptr<NetLog::EventParameters>& params) const {
AddEntry(event_type, NetLog::PHASE_END, params);
}
// static
BoundNetLog BoundNetLog::Make(NetLog* net_log,
NetLog::SourceType source_type) {
if (!net_log)
return BoundNetLog();
NetLog::Source source(source_type, net_log->NextID());
return BoundNetLog(source, net_log);
}
NetLogStringParameter::NetLogStringParameter(const char* name,
const std::string& value)
: name_(name), value_(value) {
}
Value* NetLogIntegerParameter::ToValue() const {
DictionaryValue* dict = new DictionaryValue();
dict->SetInteger(ASCIIToWide(name_), value_);
return dict;
}
Value* NetLogStringParameter::ToValue() const {
DictionaryValue* dict = new DictionaryValue();
dict->SetString(ASCIIToWide(name_), value_);
return dict;
}
Value* NetLogSourceParameter::ToValue() const {
DictionaryValue* dict = new DictionaryValue();
DictionaryValue* source_dict = new DictionaryValue();
source_dict->SetInteger(L"type", static_cast<int>(value_.type));
source_dict->SetInteger(L"id", static_cast<int>(value_.id));
dict->Set(ASCIIToWide(name_), source_dict);
return dict;
}
} // namespace net
|