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
|
// Copyright (c) 2011 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.
logutil = (function() {
'use strict';
/**
* Creates a new log dump. |events| is a list of all events, |polledData| is
* an object containing the results of each poll, |tabData| is an object
* containing data for individual tabs, and |date| is the time the dump was
* created, as a formatted string.
* Returns the new log dump as an object. |date| may be null.
*
* TODO(eroman): Use javadoc notation for these parameters.
*
* Log dumps are just JSON objects containing five values:
*
* |userComments| User-provided notes describing what this dump file is
* about.
* |constants| needed to interpret the data. This also includes some
* browser state information.
* |events| from the NetLog.
* |polledData| from each PollableDataHelper available on the source OS.
* |tabData| containing any tab-specific state that's not present in
* |polledData|.
*
* |polledData| and |tabData| may be empty objects, or may be missing data for
* tabs not present on the OS the log is from.
*/
function createLogDump(userComments, constants, events, polledData, tabData,
date) {
if (g_browser.sourceTracker.getSecurityStripping())
events = events.map(stripCookiesAndLoginInfo);
var logDump = {
'userComments': userComments,
'constants': constants,
'events': events,
'polledData': polledData,
'tabData': tabData
};
// Not technically client info, but it's used at the same point in the code.
if (date && constants.clientInfo) {
constants.clientInfo.numericDate = date.getTime();
// TODO(mmenke): Remove this some time after Chrome 17 hits stable.
constants.clientInfo.date = date.toLocaleString();
}
return logDump;
}
/**
* Creates a full log dump using |polledData| and the return value of each
* tab's saveState function and passes it to |callback|.
*/
function onUpdateAllCompleted(userComments, callback, polledData) {
// Gather any tab-specific state information.
var tabData = {};
var categoryTabSwitcher = MainView.getInstance().categoryTabSwitcher();
var tabIds = categoryTabSwitcher.getAllTabIds();
for (var i = 0; i < tabIds.length; ++i) {
var view = categoryTabSwitcher.findTabById(tabIds[i]).contentView;
if (view.saveState)
tabData[tabIds[i]] = view.saveState();
}
var logDump = createLogDump(userComments,
Constants,
g_browser.sourceTracker.getAllCapturedEvents(),
polledData,
tabData,
new Date());
callback(JSON.stringify(logDump, null, ' '));
}
/**
* Called to create a new log dump. Must not be called once a dump has been
* loaded. Once a log dump has been created, |callback| is passed the dumped
* text as a string.
*/
function createLogDumpAsync(userComments, callback) {
g_browser.updateAllInfo(
onUpdateAllCompleted.bind(null, userComments, callback));
}
/**
* Loads a full log dump. Returns a string containing a log of the load.
* The process goes like this:
* 1) Load constants. If this fails, or the version number can't be handled,
* abort the load. If this step succeeds, the load cannot be aborted.
* 2) Clear all events. Any event observers are informed of the clear as
* normal.
* 3) Call onLoadLogStart(polledData, tabData) for each view with an
* onLoadLogStart function. This allows tabs to clear any extra state
* that would affect the next step. |polledData| contains the data polled
* for all helpers, but |tabData| contains only the data from that
* specific tab.
* 4) Add all events from the log file.
* 5) Call onLoadLogFinish(polledData, tabData) for each view with an
* onLoadLogFinish function. The arguments are the same as in step 3. If
* there is no onLoadLogFinish function, it throws an exception, or it
* returns false instead of true, the data dump is assumed to contain no
* valid data for the tab, so the tab is hidden. Otherwise, the tab is
* shown.
*/
function loadLogDump(logDump, fileName) {
// Perform minimal validity check, and abort if it fails.
if (typeof(logDump) != 'object')
return 'Load failed. Top level JSON data is not an object.';
// String listing text summary of load errors, if any.
var errorString = '';
if (!areValidConstants(logDump.constants))
errorString += 'Invalid constants object.\n';
if (typeof(logDump.events) != 'object')
errorString += 'NetLog events missing.\n';
if (typeof(logDump.constants.logFormatVersion) != 'number')
errorString += 'Invalid version number.\n';
if (errorString.length > 0)
return 'Load failed:\n\n' + errorString;
if (typeof(logDump.polledData) != 'object')
logDump.polledData = {};
if (typeof(logDump.tabData) != 'object')
logDump.tabData = {};
if (logDump.constants.logFormatVersion != Constants.logFormatVersion) {
return 'Unable to load different log version.' +
' Found ' + logDump.constants.logFormatVersion +
', Expected ' + Constants.logFormatVersion;
}
g_browser.receivedConstants(logDump.constants);
// Prevent communication with the browser. Once the constants have been
// loaded, it's safer to continue trying to load the log, even in the case
// of bad data.
MainView.getInstance().onLoadLogFile(fileName);
// Delete all events. This will also update all logObservers.
g_browser.sourceTracker.deleteAllSourceEntries();
// Inform all the views that a log file is being loaded, and pass in
// view-specific saved state, if any.
var categoryTabSwitcher = MainView.getInstance().categoryTabSwitcher();
var tabIds = categoryTabSwitcher.getAllTabIds();
for (var i = 0; i < tabIds.length; ++i) {
var view = categoryTabSwitcher.findTabById(tabIds[i]).contentView;
view.onLoadLogStart(logDump.polledData, logDump.tabData[tabIds[i]]);
}
// Check for validity of each log entry, and then add the ones that pass.
// Since the events are kept around, and we can't just hide a single view
// on a bad event, we have more error checking for them than other data.
var validPassiveEvents = [];
var validActiveEvents = [];
for (var eventIndex = 0; eventIndex < logDump.events.length; ++eventIndex) {
var event = logDump.events[eventIndex];
if (typeof(event) == 'object' && typeof(event.source) == 'object' &&
typeof(event.time) == 'string' &&
getKeyWithValue(LogEventType, event.type) != '?' &&
getKeyWithValue(LogSourceType, event.source.type) != '?' &&
getKeyWithValue(LogEventPhase, event.phase) != '?') {
if (event.wasPassivelyCaptured) {
validPassiveEvents.push(event);
} else {
validActiveEvents.push(event);
}
}
}
g_browser.sourceTracker.onReceivedPassiveLogEntries(validPassiveEvents);
g_browser.sourceTracker.onReceivedLogEntries(validActiveEvents);
var numInvalidEvents = logDump.events.length
- validPassiveEvents.length
- validActiveEvents.length;
if (numInvalidEvents > 0) {
errorString += 'Unable to load ' + numInvalidEvents +
' events, due to invalid data.\n\n';
}
// Update all views with data from the file. Show only those views which
// successfully load the data.
for (var i = 0; i < tabIds.length; ++i) {
var view = categoryTabSwitcher.findTabById(tabIds[i]).contentView;
var showView = false;
// The try block eliminates the need for checking every single value
// before trying to access it.
try {
if (view.onLoadLogFinish(logDump.polledData,
logDump.tabData[tabIds[i]],
logDump.userComments)) {
showView = true;
}
} catch (error) {
}
categoryTabSwitcher.showTabHandleNode(tabIds[i], showView);
}
return errorString + 'Log loaded.';
}
/**
* Loads a log dump from the string |logFileContents|, which can be either a
* full net-internals dump, or a NetLog dump only. Returns a string
* containing a log of the load.
*/
function loadLogFile(logFileContents, fileName) {
// Try and parse the log dump as a single JSON string. If this succeeds,
// it's most likely a full log dump. Otherwise, it may be a dump created by
// --log-net-log.
var parsedDump = null;
try {
parsedDump = JSON.parse(logFileContents);
} catch (error) {
try {
// We may have a --log-net-log=blah log dump. If so, remove the comma
// after the final good entry, and add the necessary close brackets.
var end = Math.max(logFileContents.lastIndexOf(',\n'),
logFileContents.lastIndexOf(',\r'));
if (end != -1)
parsedDump = JSON.parse(logFileContents.substring(0, end) + ']}');
}
catch (error2) {
}
}
if (!parsedDump)
return 'Unable to parse log dump as JSON file.';
return loadLogDump(parsedDump, fileName);
}
// Exports.
return {
createLogDumpAsync : createLogDumpAsync,
loadLogFile : loadLogFile
};
})();
|