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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
|
// 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.
/**
* This view displays options for importing/exporting the captured data. Its
* primarily usefulness is to allow users to copy-paste their data in an easy
* to read format for bug reports.
*
* - Has a button to generate a text report.
*
* - Shows how many events have been captured.
* @constructor
*/
function DataView(mainBoxId,
downloadIframeId,
exportFileButtonId,
securityStrippingCheckboxId,
byteLoggingCheckboxId,
passivelyCapturedCountId,
activelyCapturedCountId,
deleteAllId,
dumpDataDivId,
loadDataDivId,
loadLogFileId,
capturingTextSpanId,
loggingTextSpanId) {
DivView.call(this, mainBoxId);
var securityStrippingCheckbox =
document.getElementById(securityStrippingCheckboxId);
securityStrippingCheckbox.onclick =
this.onSetSecurityStripping_.bind(this, securityStrippingCheckbox);
var byteLoggingCheckbox = document.getElementById(byteLoggingCheckboxId);
byteLoggingCheckbox.onclick =
this.onSetByteLogging_.bind(this, byteLoggingCheckbox);
this.downloadIframe_ = document.getElementById(downloadIframeId);
this.exportFileButton_ = document.getElementById(exportFileButtonId);
this.exportFileButton_.onclick = this.onExportToText_.bind(this);
this.activelyCapturedCountBox_ =
document.getElementById(activelyCapturedCountId);
this.passivelyCapturedCountBox_ =
document.getElementById(passivelyCapturedCountId);
document.getElementById(deleteAllId).onclick =
g_browser.deleteAllEvents.bind(g_browser);
this.dumpDataDiv_ = document.getElementById(dumpDataDivId);
this.loadDataDiv_ = document.getElementById(loadDataDivId);
this.capturingTextSpan_ = document.getElementById(capturingTextSpanId);
this.loggingTextSpan_ = document.getElementById(loggingTextSpanId);
var loadLogFileElement = document.getElementById(loadLogFileId);
loadLogFileElement.onchange =
this.logFileChanged.bind(this, loadLogFileElement);
this.updateEventCounts_();
g_browser.addLogObserver(this);
}
inherits(DataView, DivView);
/**
* Called whenever a new event is received.
*/
DataView.prototype.onLogEntryAdded = function(logEntry) {
this.updateEventCounts_();
};
/**
* Called whenever some log events are deleted. |sourceIds| lists
* the source IDs of all deleted log entries.
*/
DataView.prototype.onLogEntriesDeleted = function(sourceIds) {
this.updateEventCounts_();
};
/**
* Called whenever all log events are deleted.
*/
DataView.prototype.onAllLogEntriesDeleted = function() {
this.updateEventCounts_();
};
/**
* Called when either a log file is loaded or when going back to actively
* logging events. In either case, called after clearing the old entries,
* but before getting any new ones.
*/
DataView.prototype.onSetIsViewingLogFile = function(isViewingLogFile) {
setNodeDisplay(this.dumpDataDiv_, !isViewingLogFile);
setNodeDisplay(this.capturingTextSpan_, !isViewingLogFile);
setNodeDisplay(this.loggingTextSpan_, isViewingLogFile);
};
/**
* Updates the counters showing how many events have been captured.
*/
DataView.prototype.updateEventCounts_ = function() {
this.activelyCapturedCountBox_.innerText =
g_browser.getNumActivelyCapturedEvents()
this.passivelyCapturedCountBox_.innerText =
g_browser.getNumPassivelyCapturedEvents();
};
/**
* Depending on the value of the checkbox, enables or disables logging of
* actual bytes transferred.
*/
DataView.prototype.onSetByteLogging_ = function(byteLoggingCheckbox) {
if (byteLoggingCheckbox.checked) {
g_browser.setLogLevel(LogLevelType.LOG_ALL);
} else {
g_browser.setLogLevel(LogLevelType.LOG_ALL_BUT_BYTES);
}
};
/**
* Depending on the value of the checkbox, enables or disables stripping
* cookies and passwords from log dumps and displayed events.
*/
DataView.prototype.onSetSecurityStripping_ =
function(securityStrippingCheckbox) {
g_browser.setSecurityStripping(securityStrippingCheckbox.checked);
};
DataView.prototype.onSecurityStrippingChanged = function() {
};
/**
* Called when a log file is selected.
*
* Gets the log file from the input element and tries to read from it.
*/
DataView.prototype.logFileChanged = function(loadLogFileElement) {
var logFile = loadLogFileElement.files[0];
if (logFile) {
var fileReader = new FileReader();
fileReader.onload = this.onLoadLogFile.bind(this);
fileReader.onerror = this.onLoadLogFileError.bind(this);
fileReader.readAsText(logFile);
}
};
/**
* Displays an error message when unable to read the selected log file.
*/
DataView.prototype.onLoadLogFileError = function(event) {
alert('Error ' + event.target.error.code + '. Unable to load file.');
};
/**
* Tries to load the contents of the log file.
*/
DataView.prototype.onLoadLogFile = function(event) {
g_browser.loadedLogFile(event.target.result);
};
DataView.prototype.enableExportFileButton_ = function(enabled) {
this.exportFileButton_.disabled = !enabled;
};
/**
* If not already waiting for results from all updates, triggers all
* updates and starts waiting for them to complete.
*/
DataView.prototype.onExportToText_ = function() {
if (this.exportFileButton_.disabled)
return;
this.enableExportFileButton_(false);
g_browser.updateAllInfo(this.onUpdateAllCompleted.bind(this));
};
/**
* Presents the captured data as formatted text.
*/
DataView.prototype.onUpdateAllCompleted = function(data) {
// It's possible for a log file to be loaded while a dump is being generated.
// When that happens, don't display the log dump, to avoid any confusion.
if (g_browser.isViewingLogFile())
return;
this.waitingForUpdate_ = false;
var text = [];
// Print some basic information about our environment.
text.push('Data exported on: ' + (new Date()).toLocaleString());
text.push('');
text.push('Number of passively captured events: ' +
g_browser.getNumPassivelyCapturedEvents());
text.push('Number of actively captured events: ' +
g_browser.getNumActivelyCapturedEvents());
text.push('');
text.push('Chrome version: ' + ClientInfo.version +
' (' + ClientInfo.official +
' ' + ClientInfo.cl +
') ' + ClientInfo.version_mod);
// Third value in first set of parentheses in user-agent string.
var platform = /\(.*?;.*?; (.*?);/.exec(navigator.userAgent);
if (platform)
text.push('Platform: ' + platform[1]);
text.push('Command line: ' + ClientInfo.command_line);
text.push('');
var default_address_family = data.hostResolverInfo.default_address_family;
text.push('Default address family: ' +
getKeyWithValue(AddressFamily, default_address_family));
if (default_address_family == AddressFamily.ADDRESS_FAMILY_IPV4)
text.push(' (IPv6 disabled)');
text.push('');
text.push('----------------------------------------------');
text.push(' Proxy settings (effective)');
text.push('----------------------------------------------');
text.push('');
text.push(proxySettingsToString(data.proxySettings.effective));
text.push('');
text.push('----------------------------------------------');
text.push(' Proxy settings (original)');
text.push('----------------------------------------------');
text.push('');
text.push(proxySettingsToString(data.proxySettings.original));
text.push('');
text.push('----------------------------------------------');
text.push(' Bad proxies cache');
text.push('----------------------------------------------');
var badProxiesList = data.badProxies;
if (badProxiesList.length == 0) {
text.push('');
text.push('None');
} else {
for (var i = 0; i < badProxiesList.length; ++i) {
var e = badProxiesList[i];
text.push('');
text.push('(' + (i+1) + ')');
text.push('Proxy: ' + e.proxy_uri);
text.push('Bad until: ' + this.formatExpirationTime_(e.bad_until));
}
}
text.push('');
text.push('----------------------------------------------');
text.push(' Host resolver cache');
text.push('----------------------------------------------');
text.push('');
var hostResolverCache = data.hostResolverInfo.cache;
text.push('Capacity: ' + hostResolverCache.capacity);
text.push('Time to live for successful resolves (ms): ' +
hostResolverCache.ttl_success_ms);
text.push('Time to live for failed resolves (ms): ' +
hostResolverCache.ttl_failure_ms);
if (hostResolverCache.entries.length > 0) {
for (var i = 0; i < hostResolverCache.entries.length; ++i) {
var e = hostResolverCache.entries[i];
text.push('');
text.push('(' + (i+1) + ')');
text.push('Hostname: ' + e.hostname);
text.push('Address family: ' +
getKeyWithValue(AddressFamily, e.address_family));
if (e.error != undefined) {
text.push('Error: ' + e.error);
} else {
for (var j = 0; j < e.addresses.length; ++j) {
text.push('Address ' + (j + 1) + ': ' + e.addresses[j]);
}
}
text.push('Valid until: ' + this.formatExpirationTime_(e.expiration));
var expirationDate = g_browser.convertTimeTicksToDate(e.expiration);
text.push(' (' + expirationDate.toLocaleString() + ')');
}
} else {
text.push('');
text.push('None');
}
text.push('');
text.push('----------------------------------------------');
text.push(' Events');
text.push('----------------------------------------------');
text.push('');
this.appendEventsPrintedAsText_(text);
text.push('');
text.push('----------------------------------------------');
text.push(' Http cache stats');
text.push('----------------------------------------------');
text.push('');
var httpCacheStats = data.httpCacheInfo.stats;
for (var statName in httpCacheStats)
text.push(statName + ': ' + httpCacheStats[statName]);
text.push('');
text.push('----------------------------------------------');
text.push(' Socket pools');
text.push('----------------------------------------------');
text.push('');
this.appendSocketPoolsAsText_(text, data.socketPoolInfo);
text.push('');
text.push('----------------------------------------------');
text.push(' SPDY Status');
text.push('----------------------------------------------');
text.push('');
text.push('SPDY Enabled: ' + data.spdyStatus.spdy_enabled);
text.push('Use Alternate Protocol: ' +
data.spdyStatus.use_alternate_protocols);
text.push('Force SPDY Always: ' + data.spdyStatus.force_spdy_always);
text.push('Force SPDY Over SSL: ' + data.spdyStatus.force_spdy_over_ssl);
text.push('Next Protocols: ' + data.spdyStatus.next_protos);
text.push('');
text.push('----------------------------------------------');
text.push(' SPDY Sessions');
text.push('----------------------------------------------');
text.push('');
if (data.spdySessionInfo == null || data.spdySessionInfo.length == 0) {
text.push('None');
} else {
var spdyTablePrinter =
SpdyView.createSessionTablePrinter(data.spdySessionInfo);
text.push(spdyTablePrinter.toText(2));
}
text.push('');
text.push('----------------------------------------------');
text.push(' Alternate Protocol Mappings');
text.push('----------------------------------------------');
text.push('');
if (data.spdyAlternateProtocolMappings == null ||
data.spdyAlternateProtocolMappings.length == 0) {
text.push('None');
} else {
var spdyTablePrinter =
SpdyView.createAlternateProtocolMappingsTablePrinter(
data.spdyAlternateProtocolMappings);
text.push(spdyTablePrinter.toText(2));
}
if (g_browser.isPlatformWindows()) {
text.push('');
text.push('----------------------------------------------');
text.push(' Winsock layered service providers');
text.push('----------------------------------------------');
text.push('');
var serviceProviders = data.serviceProviders;
var layeredServiceProviders = serviceProviders.service_providers;
for (var i = 0; i < layeredServiceProviders.length; ++i) {
var provider = layeredServiceProviders[i];
text.push('name: ' + provider.name);
text.push('version: ' + provider.version);
text.push('type: ' +
ServiceProvidersView.getLayeredServiceProviderType(provider));
text.push('socket_type: ' +
ServiceProvidersView.getSocketType(provider));
text.push('socket_protocol: ' +
ServiceProvidersView.getProtocolType(provider));
text.push('path: ' + provider.path);
text.push('');
}
text.push('');
text.push('----------------------------------------------');
text.push(' Winsock namespace providers');
text.push('----------------------------------------------');
text.push('');
var namespaceProviders = serviceProviders.namespace_providers;
for (var i = 0; i < namespaceProviders.length; ++i) {
var provider = namespaceProviders[i];
text.push('name: ' + provider.name);
text.push('version: ' + provider.version);
text.push('type: ' +
ServiceProvidersView.getNamespaceProviderType(provider));
text.push('active: ' + provider.active);
text.push('');
}
}
var blobBuilder = new WebKitBlobBuilder();
blobBuilder.append(text.join('\n'), 'native');
var textBlob = blobBuilder.getBlob('octet/stream');
window.webkitRequestFileSystem(
window.TEMPORARY, textBlob.size,
this.onFileSystemCreate_.bind(this, textBlob),
this.onFileError_.bind(this, 'Unable to create file system.'));
};
// Once we have access to the file system, create a log file.
DataView.prototype.onFileSystemCreate_ = function(textBlob, fileSystem) {
fileSystem.root.getFile(
'net_internals.log', {create: true},
this.onFileCreate_.bind(this, textBlob),
this.onFileError_.bind(this, 'Unable to create file.'));
};
// Once the file is created, or an existing one has been opened, create a
// writer for it.
DataView.prototype.onFileCreate_ = function(textBlob, fileEntry) {
fileEntry.createWriter(
this.onFileCreateWriter_.bind(this, textBlob, fileEntry),
this.onFileError_.bind(this, 'Unable to create writer.'));
};
// Once the |fileWriter| has been created, truncate the file, in case it already
// existed.
DataView.prototype.onFileCreateWriter_ = function(textBlob,
fileEntry, fileWriter) {
fileWriter.onerror = this.onFileError_.bind(this, 'Truncate failed.');
fileWriter.onwriteend = this.onFileTruncate_.bind(this, textBlob,
fileWriter, fileEntry);
fileWriter.truncate(0);
};
// Once the file has been truncated, write |textBlob| to the file.
DataView.prototype.onFileTruncate_ = function(textBlob, fileWriter, fileEntry) {
fileWriter.onerror = this.onFileError_.bind(this, 'Write failed.');
fileWriter.onwriteend = this.onFileWriteComplete_.bind(this, fileEntry);
fileWriter.write(textBlob);
};
// Once the file has been written to, start the download.
DataView.prototype.onFileWriteComplete_ = function(fileEntry) {
this.downloadIframe_.src = fileEntry.toURL();
this.enableExportFileButton_(true);
};
// On any Javascript File API error, enable the export button and display
// |errorText|, followed by the specific error.
DataView.prototype.onFileError_ = function(errorText, error) {
this.enableExportFileButton_(true);
alert(errorText + ' ' + getKeyWithValue(FileError, error.code));
};
DataView.prototype.appendEventsPrintedAsText_ = function(out) {
var allEvents = g_browser.getAllCapturedEvents();
// Group the events into buckets by source ID, and buckets by source type.
var sourceIds = [];
var sourceIdToEventList = {};
var sourceTypeToSourceIdList = {};
// Lists used for actual output.
var eventLists = [];
for (var i = 0; i < allEvents.length; ++i) {
var e = allEvents[i];
var eventList = sourceIdToEventList[e.source.id];
if (!eventList) {
eventList = [];
eventLists.push(eventList);
if (e.source.type != LogSourceType.NONE)
sourceIdToEventList[e.source.id] = eventList;
// Update sourceIds
sourceIds.push(e.source.id);
// Update the sourceTypeToSourceIdList list.
var idList = sourceTypeToSourceIdList[e.source.type];
if (!idList) {
idList = [];
sourceTypeToSourceIdList[e.source.type] = idList;
}
idList.push(e.source.id);
}
eventList.push(e);
}
// For each source or event without a source (ordered by when the first
// output event for that source happened).
for (var i = 0; i < eventLists.length; ++i) {
var eventList = eventLists[i];
var sourceId = eventList[0].source.id;
var sourceType = eventList[0].source.type;
var startDate = g_browser.convertTimeTicksToDate(eventList[0].time);
out.push('------------------------------------------');
out.push(getKeyWithValue(LogSourceType, sourceType) +
' (id=' + sourceId + ')' +
' [start=' + startDate.toLocaleString() + ']');
out.push('------------------------------------------');
out.push(PrintSourceEntriesAsText(eventList));
}
};
DataView.prototype.appendSocketPoolsAsText_ = function(text, socketPoolInfo) {
var socketPools = SocketPoolWrapper.createArrayFrom(socketPoolInfo);
var tablePrinter = SocketPoolWrapper.createTablePrinter(socketPools);
text.push(tablePrinter.toText(2));
text.push('');
for (var i = 0; i < socketPools.length; ++i) {
if (socketPools[i].origPool.groups == undefined)
continue;
var groupTablePrinter = socketPools[i].createGroupTablePrinter();
text.push(groupTablePrinter.toText(2));
}
};
/**
* Format a time ticks count as a timestamp.
*/
DataView.prototype.formatExpirationTime_ = function(timeTicks) {
var d = g_browser.convertTimeTicksToDate(timeTicks);
var isExpired = d.getTime() < (new Date()).getTime();
return 't=' + d.getTime() + (isExpired ? ' [EXPIRED]' : '');
};
|