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
|
// 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.
/**
* Javascript for omnibox.html, served from chrome://omnibox/
* This is used to debug omnibox ranking. The user enters some text
* into a box, submits it, and then sees lots of debug information
* from the autocompleter that shows what omnibox would do with that
* input.
*
* The simple object defined in this javascript file listens for
* certain events on omnibox.html, sends (when appropriate) the
* input text to C++ code to start the omnibox autcomplete controller
* working, and listens from callbacks from the C++ code saying that
* results are available. When results (possibly intermediate ones)
* are available, the Javascript formats them and displays them.
*/
cr.define('omniboxDebug', function() {
'use strict';
/**
* Register our event handlers.
*/
function initialize() {
$('omnibox-input-form').addEventListener(
'submit', startOmniboxQuery, false);
$('prevent-inline-autocomplete').addEventListener(
'change', startOmniboxQuery);
$('prefer-keyword').addEventListener('change', startOmniboxQuery);
$('page-classification').addEventListener('change', startOmniboxQuery);
$('show-details').addEventListener('change', refresh);
$('show-incomplete-results').addEventListener('change', refresh);
$('show-all-providers').addEventListener('change', refresh);
}
/**
* @type {Array.<Object>} an array of all autocomplete results we've seen
* for this query. We append to this list once for every call to
* handleNewAutocompleteResult. For details on the structure of
* the object inside, see the comments by addResultToOutput.
*/
var progressiveAutocompleteResults = [];
/**
* @type {number} the value for cursor position we sent with the most
* recent request. We need to remember this in order to display it
* in the output; otherwise it's hard or impossible to determine
* from screen captures or print-to-PDFs.
*/
var cursorPositionUsed = -1;
/**
* Extracts the input text from the text field and sends it to the
* C++ portion of chrome to handle. The C++ code will iteratively
* call handleNewAutocompleteResult as results come in.
*/
function startOmniboxQuery(event) {
// First, clear the results of past calls (if any).
progressiveAutocompleteResults = [];
// Then, call chrome with a five-element list:
// - first element: the value in the text box
// - second element: the location of the cursor in the text box
// - third element: the value of prevent-inline-autocomplete
// - forth element: the value of prefer-keyword
// - fifth element: the value of page-classification
cursorPositionUsed = $('input-text').selectionEnd;
chrome.send('startOmniboxQuery', [
$('input-text').value,
cursorPositionUsed,
$('prevent-inline-autocomplete').checked,
$('prefer-keyword').checked,
parseInt($('page-classification').value)]);
// Cancel the submit action. i.e., don't submit the form. (We handle
// display the results solely with Javascript.)
event.preventDefault();
}
/**
* Returns a simple object with information about how to display an
* autocomplete result data field.
* @param {string} header the label for the top of the column/table.
* @param {string} urlLabelForHeader the URL that the header should point
* to (if non-empty).
* @param {string} propertyName the name of the property in the autocomplete
* result record that we lookup.
* @param {boolean} displayAlways whether the property should be displayed
* regardless of whether we're in detailed more.
* @param {string} tooltip a description of the property that will be
* presented as a tooltip when the mouse is hovered over the column title.
* @constructor
*/
function PresentationInfoRecord(header, url, propertyName, displayAlways,
tooltip) {
this.header = header;
this.urlLabelForHeader = url;
this.propertyName = propertyName;
this.displayAlways = displayAlways;
this.tooltip = tooltip;
}
/**
* A constant that's used to decide what autocomplete result
* properties to output in what order. This is an array of
* PresentationInfoRecord() objects; for details see that
* function.
* @type {Array.<Object>}
* @const
*/
var PROPERTY_OUTPUT_ORDER = [
new PresentationInfoRecord('Provider', '', 'provider_name', true,
'The AutocompleteProvider suggesting this result.'),
new PresentationInfoRecord('Type', '', 'type', true,
'The type of the result.'),
new PresentationInfoRecord('Relevance', '', 'relevance', true,
'The result score. Higher is more relevant.'),
new PresentationInfoRecord('Contents', '', 'contents', true,
'The text that is presented identifying the result.'),
new PresentationInfoRecord(
'Can Be Default', '', 'allowed_to_be_default_match', false,
'A green checkmark indicates that the result can be the default ' +
'match (i.e., can be the match that pressing enter in the omnibox ' +
'navigates to).'),
new PresentationInfoRecord('Starred', '', 'starred', false,
'A green checkmark indicates that the result has been bookmarked.'),
new PresentationInfoRecord(
'HWYT', '', 'is_history_what_you_typed_match', false,
'A green checkmark indicates that the result is an History What You ' +
'Typed Match'),
new PresentationInfoRecord('Description', '', 'description', false,
'The page title of the result.'),
new PresentationInfoRecord('URL', '', 'destination_url', true,
'The URL for the result.'),
new PresentationInfoRecord('Fill Into Edit', '', 'fill_into_edit', false,
'The text shown in the omnibox when the result is selected.'),
new PresentationInfoRecord(
'Inline Autocompletion', '', 'inline_autocompletion', false,
'The text shown in the omnibox as a blue highlight selection ' +
'following the cursor, if this match is shown inline.'),
new PresentationInfoRecord('Del', '', 'deletable', false,
'A green checkmark indicates that the result can be deleted from ' +
'the visit history.'),
new PresentationInfoRecord('Prev', '', 'from_previous', false, ''),
new PresentationInfoRecord(
'Tran',
'http://code.google.com/codesearch#OAMlx_jo-ck/src/content/public/' +
'common/page_transition_types.h&exact_package=chromium&l=24',
'transition', false,
'How the user got to the result.'),
new PresentationInfoRecord(
'Done', '', 'provider_done', false,
'A green checkmark indicates that the provider is done looking for ' +
'more results.'),
new PresentationInfoRecord(
'Template URL', '', 'template_url', false, ''),
new PresentationInfoRecord(
'Associated Keyword', '', 'associated_keyword', false,
'If non-empty, a "press tab to search" hint will be shown and will ' +
'engage this keyword.'),
new PresentationInfoRecord(
'Keyword', '', 'keyword', false,
'The keyword of the search engine to be used.'),
new PresentationInfoRecord(
'Additional Info', '', 'additional_info', false,
'Provider-specific information about the result.')
];
/**
* Returns an HTML Element of type table row that contains the
* headers we'll use for labeling the columns. If we're in
* detailed_mode, we use all the headers. If not, we only use ones
* marked displayAlways.
*/
function createAutocompleteResultTableHeader() {
var row = document.createElement('tr');
var inDetailedMode = $('show-details').checked;
for (var i = 0; i < PROPERTY_OUTPUT_ORDER.length; i++) {
if (inDetailedMode || PROPERTY_OUTPUT_ORDER[i].displayAlways) {
var headerCell = document.createElement('th');
if (PROPERTY_OUTPUT_ORDER[i].urlLabelForHeader != '') {
// Wrap header text in URL.
var linkNode = document.createElement('a');
linkNode.href = PROPERTY_OUTPUT_ORDER[i].urlLabelForHeader;
linkNode.textContent = PROPERTY_OUTPUT_ORDER[i].header;
headerCell.appendChild(linkNode);
} else {
// Output header text without a URL.
headerCell.textContent = PROPERTY_OUTPUT_ORDER[i].header;
headerCell.className = 'table-header';
headerCell.title = PROPERTY_OUTPUT_ORDER[i].tooltip;
}
row.appendChild(headerCell);
}
}
return row;
}
/**
* @param {Object} autocompleteSuggestion the particular autocomplete
* suggestion we're in the process of displaying.
* @param {string} propertyName the particular property of the autocomplete
* suggestion that should go in this cell.
* @return {HTMLTableCellElement} that contains the value within this
* autocompleteSuggestion associated with propertyName.
*/
function createCellForPropertyAndRemoveProperty(autocompleteSuggestion,
propertyName) {
var cell = document.createElement('td');
if (propertyName in autocompleteSuggestion) {
if (propertyName == 'additional_info') {
// |additional_info| embeds a two-column table of provider-specific data
// within this cell.
var additionalInfoTable = document.createElement('table');
for (var additionalInfoKey in autocompleteSuggestion[propertyName]) {
var additionalInfoRow = document.createElement('tr');
// Set the title (name of property) cell text.
var propertyCell = document.createElement('td');
propertyCell.textContent = additionalInfoKey + ':';
propertyCell.className = 'additional-info-property';
additionalInfoRow.appendChild(propertyCell);
// Set the value of the property cell text.
var valueCell = document.createElement('td');
valueCell.textContent =
autocompleteSuggestion[propertyName][additionalInfoKey];
valueCell.className = 'additional-info-value';
additionalInfoRow.appendChild(valueCell);
additionalInfoTable.appendChild(additionalInfoRow);
}
cell.appendChild(additionalInfoTable);
} else if (typeof autocompleteSuggestion[propertyName] == 'boolean') {
// If this is a boolean, display a checkmark or an X instead of
// the strings true or false.
if (autocompleteSuggestion[propertyName]) {
cell.className = 'check-mark';
cell.textContent = '✔';
} else {
cell.className = 'x-mark';
cell.textContent = '✗';
}
} else {
var text = String(autocompleteSuggestion[propertyName]);
// If it's a URL wrap it in an href.
var re = /^(http|https|ftp|chrome|file):\/\//;
if (re.test(text)) {
var aCell = document.createElement('a');
aCell.textContent = text;
aCell.href = text;
cell.appendChild(aCell);
} else {
// All other data types (integer, strings, etc.) display their
// normal toString() output.
cell.textContent = autocompleteSuggestion[propertyName];
}
}
} // else: if propertyName is undefined, we leave the cell blank
return cell;
}
/**
* Called by C++ code when we get an update from the
* AutocompleteController. We simply append the result to
* progressiveAutocompleteResults and refresh the page.
*/
function handleNewAutocompleteResult(result) {
progressiveAutocompleteResults.push(result);
refresh();
}
/**
* Appends some human-readable information about the provided
* autocomplete result to the HTML node with id omnibox-debug-text.
* The current human-readable form is a few lines about general
* autocomplete result statistics followed by a table with one line
* for each autocomplete match. The input parameter result is a
* complex Object with lots of information about various
* autocomplete matches. Here's an example of what it looks like:
* <pre>
* {@code
* {
* 'done': false,
* 'time_since_omnibox_started_ms': 15,
* 'host': 'mai',
* 'is_typed_host': false,
* 'combined_results' : {
* 'num_items': 4,
* 'item_0': {
* 'destination_url': 'http://mail.google.com',
* 'provider_name': 'HistoryURL',
* 'relevance': 1410,
* ...
* }
* 'item_1: {
* ...
* }
* ...
* }
* 'results_by_provider': {
* 'HistoryURL' : {
* 'num_items': 3,
* ...
* }
* 'Search' : {
* 'num_items': 1,
* ...
* }
* ...
* }
* }
* }
* </pre>
* For more information on how the result is packed, see the
* corresponding code in chrome/browser/ui/webui/omnibox_ui.cc
*/
function addResultToOutput(result) {
var output = $('omnibox-debug-text');
var inDetailedMode = $('show-details').checked;
var showIncompleteResults = $('show-incomplete-results').checked;
var showPerProviderResults = $('show-all-providers').checked;
// Always output cursor position.
var p = document.createElement('p');
p.textContent = 'cursor position = ' + cursorPositionUsed;
output.appendChild(p);
// Output the result-level features in detailed mode and in
// show incomplete results mode. We do the latter because without
// these result-level features, one can't make sense of each
// batch of results.
if (inDetailedMode || showIncompleteResults) {
var p1 = document.createElement('p');
p1.textContent = 'elapsed time = ' +
result.time_since_omnibox_started_ms + 'ms';
output.appendChild(p1);
var p2 = document.createElement('p');
p2.textContent = 'all providers done = ' + result.done;
output.appendChild(p2);
var p3 = document.createElement('p');
p3.textContent = 'host = ' + result.host;
if ('is_typed_host' in result) {
// Only output the is_typed_host information if available. (It may
// be missing if the history database lookup failed.)
p3.textContent = p3.textContent + ' has is_typed_host = ' +
result.is_typed_host;
}
output.appendChild(p3);
}
// Combined results go after the lines below.
var group = document.createElement('a');
group.className = 'group-separator';
group.textContent = 'Combined results.';
output.appendChild(group);
// Add combined/merged result table.
var p = document.createElement('p');
p.appendChild(addResultTableToOutput(result.combined_results));
output.appendChild(p);
// Move forward only if you want to display per provider results.
if (!showPerProviderResults) {
return;
}
// Individual results go after the lines below.
var group = document.createElement('a');
group.className = 'group-separator';
group.textContent = 'Results for individual providers.';
output.appendChild(group);
// Add the per-provider result tables with labels. We do not append the
// combined/merged result table since we already have the per provider
// results.
for (var provider in result.results_by_provider) {
var results = result.results_by_provider[provider];
// If we have no results we do not display anything.
if (results.num_items == 0) {
continue;
}
var p = document.createElement('p');
p.appendChild(addResultTableToOutput(results));
output.appendChild(p);
}
}
/**
* @param {Object} result either the combined_results component of
* the structure described in the comment by addResultToOutput()
* above or one of the per-provider results in the structure.
* (Both have the same format).
* @return {HTMLTableCellElement} that is a user-readable HTML
* representation of this object.
*/
function addResultTableToOutput(result) {
var inDetailedMode = $('show-details').checked;
// Create a table to hold all the autocomplete items.
var table = document.createElement('table');
table.className = 'autocomplete-results-table';
table.appendChild(createAutocompleteResultTableHeader());
// Loop over every autocomplete item and add it as a row in the table.
for (var i = 0; i < result.num_items; i++) {
var autocompleteSuggestion = result['item_' + i];
var row = document.createElement('tr');
// Loop over all the columns/properties and output either them
// all (if we're in detailed mode) or only the ones marked displayAlways.
// Keep track of which properties we displayed.
var displayedProperties = {};
for (var j = 0; j < PROPERTY_OUTPUT_ORDER.length; j++) {
if (inDetailedMode || PROPERTY_OUTPUT_ORDER[j].displayAlways) {
row.appendChild(createCellForPropertyAndRemoveProperty(
autocompleteSuggestion, PROPERTY_OUTPUT_ORDER[j].propertyName));
displayedProperties[PROPERTY_OUTPUT_ORDER[j].propertyName] = true;
}
}
// Now, if we're in detailed mode, add all the properties that
// haven't already been output. (We know which properties have
// already been output because we delete the property when we output
// it. The only way we have properties left at this point if
// we're in detailed mode and we're getting back properties
// not listed in PROPERTY_OUTPUT_ORDER. Perhaps someone added
// something to the C++ code but didn't bother to update this
// Javascript? In any case, we want to display them.)
if (inDetailedMode) {
for (var key in autocompleteSuggestion) {
if (!displayedProperties[key]) {
var cell = document.createElement('td');
cell.textContent = key + '=' + autocompleteSuggestion[key];
row.appendChild(cell);
}
}
}
table.appendChild(row);
}
return table;
}
/* Repaints the page based on the contents of the array
* progressiveAutocompleteResults, which represents consecutive
* autocomplete results. We only display the last (most recent)
* entry unless we're asked to display incomplete results. For an
* example of the output, play with chrome://omnibox/
*/
function refresh() {
// Erase whatever is currently being displayed.
var output = $('omnibox-debug-text');
output.innerHTML = '';
if (progressiveAutocompleteResults.length > 0) { // if we have results
// Display the results.
var showIncompleteResults = $('show-incomplete-results').checked;
var startIndex = showIncompleteResults ? 0 :
progressiveAutocompleteResults.length - 1;
for (var i = startIndex; i < progressiveAutocompleteResults.length; i++) {
addResultToOutput(progressiveAutocompleteResults[i]);
}
}
}
return {
initialize: initialize,
startOmniboxQuery: startOmniboxQuery,
handleNewAutocompleteResult: handleNewAutocompleteResult
};
});
document.addEventListener('DOMContentLoaded', omniboxDebug.initialize);
|