2015-05-09 00:28:01 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
uMatrix - a browser extension to benchmark browser session.
|
|
|
|
Copyright (C) 2015 Raymond Hill
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see {http://www.gnu.org/licenses/}.
|
|
|
|
|
|
|
|
Home: https://github.com/gorhill/sessbench
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* jshint boss: true */
|
|
|
|
/* global vAPI, uDom */
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-05-16 16:15:02 +02:00
|
|
|
// Adjust top padding of content table, to match that of toolbar height.
|
|
|
|
|
|
|
|
document.getElementById('content').style.setProperty(
|
|
|
|
'margin-top',
|
|
|
|
document.getElementById('toolbar').offsetHeight + 'px'
|
|
|
|
);
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-05-09 00:28:01 +02:00
|
|
|
var messager = vAPI.messaging.channel('logger-ui.js');
|
|
|
|
var tbody = document.querySelector('#content tbody');
|
|
|
|
var trJunkyard = [];
|
|
|
|
var tdJunkyard = [];
|
|
|
|
var firstVarDataCol = 2; // currently, column 2 (0-based index)
|
|
|
|
var lastVarDataIndex = 4; // currently, d0-d3
|
|
|
|
var maxEntries = 5000;
|
|
|
|
var noTabId = '';
|
|
|
|
var allTabIds = {};
|
2015-05-18 14:12:35 +02:00
|
|
|
var allTabIdsToken;
|
2015-05-16 16:15:02 +02:00
|
|
|
var hiddenTemplate = document.querySelector('#hiddenTemplate > span');
|
|
|
|
|
2015-05-09 00:28:01 +02:00
|
|
|
var prettyRequestTypes = {
|
|
|
|
'main_frame': 'doc',
|
|
|
|
'stylesheet': 'css',
|
|
|
|
'sub_frame': 'frame',
|
|
|
|
'xmlhttprequest': 'xhr'
|
|
|
|
};
|
|
|
|
|
|
|
|
var timeOptions = {
|
|
|
|
hour: '2-digit',
|
|
|
|
minute: '2-digit',
|
|
|
|
second: '2-digit',
|
|
|
|
hour12: false
|
|
|
|
};
|
|
|
|
|
|
|
|
var dateOptions = {
|
|
|
|
month: 'short',
|
|
|
|
day: '2-digit'
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-05-16 16:15:02 +02:00
|
|
|
var classNameFromTabId = function(tabId) {
|
|
|
|
if ( tabId === noTabId ) {
|
|
|
|
return 'tab_bts';
|
|
|
|
}
|
|
|
|
if ( tabId !== '' ) {
|
|
|
|
return 'tab_' + tabId;
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-05-09 00:28:01 +02:00
|
|
|
// Emphasize hostname in URL, as this is what matters in uMatrix's rules.
|
|
|
|
|
|
|
|
var nodeFromURL = function(url, filter) {
|
|
|
|
if ( filter.charAt(0) !== 's' ) {
|
|
|
|
return document.createTextNode(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
// make a regex out of the filter
|
|
|
|
var reText = filter.slice(3);
|
|
|
|
var pos = reText.indexOf('$');
|
|
|
|
if ( pos > 0 ) {
|
|
|
|
reText = reText.slice(0, pos);
|
|
|
|
}
|
|
|
|
if ( reText === '*' ) {
|
|
|
|
reText = '\\*';
|
|
|
|
} else if ( reText.charAt(0) === '/' && reText.slice(-1) === '/' ) {
|
|
|
|
reText = reText.slice(1, -1);
|
|
|
|
} else {
|
|
|
|
reText = reText
|
|
|
|
.replace(/\./g, '\\.')
|
|
|
|
.replace(/\?/g, '\\?')
|
|
|
|
.replace('||', '')
|
|
|
|
.replace(/\^/g, '.')
|
|
|
|
.replace(/^\|/g, '^')
|
|
|
|
.replace(/\|$/g, '$')
|
|
|
|
.replace(/\*/g, '.*')
|
|
|
|
;
|
|
|
|
}
|
|
|
|
var re = new RegExp(reText, 'gi');
|
|
|
|
var matches = re.exec(url);
|
|
|
|
if ( matches === null || matches[0].length === 0 ) {
|
|
|
|
return document.createTextNode(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
var node = renderedURLTemplate.cloneNode(true);
|
|
|
|
node.childNodes[0].textContent = url.slice(0, matches.index);
|
|
|
|
node.childNodes[1].textContent = url.slice(matches.index, re.lastIndex);
|
|
|
|
node.childNodes[2].textContent = url.slice(re.lastIndex);
|
|
|
|
return node;
|
|
|
|
};
|
|
|
|
|
|
|
|
var renderedURLTemplate = document.querySelector('#renderedURLTemplate > span');
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var createCellAt = function(tr, index) {
|
|
|
|
var td = tr.cells[index];
|
|
|
|
var mustAppend = !td;
|
|
|
|
if ( mustAppend ) {
|
|
|
|
td = tdJunkyard.pop();
|
|
|
|
}
|
|
|
|
if ( td ) {
|
|
|
|
td.removeAttribute('colspan');
|
|
|
|
td.textContent = '';
|
|
|
|
} else {
|
|
|
|
td = document.createElement('td');
|
|
|
|
}
|
|
|
|
if ( mustAppend ) {
|
|
|
|
tr.appendChild(td);
|
|
|
|
}
|
|
|
|
return td;
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var createRow = function(layout) {
|
|
|
|
var tr = trJunkyard.pop();
|
|
|
|
if ( tr ) {
|
|
|
|
tr.className = '';
|
|
|
|
} else {
|
|
|
|
tr = document.createElement('tr');
|
|
|
|
}
|
|
|
|
for ( var index = 0; index < firstVarDataCol; index++ ) {
|
|
|
|
createCellAt(tr, index);
|
|
|
|
}
|
|
|
|
var i = 1, span = 1, td;
|
|
|
|
for (;;) {
|
|
|
|
td = createCellAt(tr, index);
|
|
|
|
if ( i === lastVarDataIndex ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ( layout.charAt(i) !== '1' ) {
|
|
|
|
span += 1;
|
|
|
|
} else {
|
|
|
|
if ( span !== 1 ) {
|
|
|
|
td.setAttribute('colspan', span);
|
|
|
|
}
|
|
|
|
index += 1;
|
|
|
|
span = 1;
|
|
|
|
}
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
if ( span !== 1 ) {
|
|
|
|
td.setAttribute('colspan', span);
|
|
|
|
}
|
|
|
|
index += 1;
|
|
|
|
while ( td = tr.cells[index] ) {
|
|
|
|
tdJunkyard.push(tr.removeChild(td));
|
|
|
|
}
|
|
|
|
return tr;
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-05-16 16:15:02 +02:00
|
|
|
var createHiddenTextNode = function(text) {
|
|
|
|
var node = hiddenTemplate.cloneNode(true);
|
|
|
|
node.textContent = text;
|
|
|
|
return node;
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-05-09 00:28:01 +02:00
|
|
|
var createGap = function(tabId, url) {
|
|
|
|
var tr = createRow('1');
|
|
|
|
tr.classList.add('tab');
|
|
|
|
tr.classList.add('canMtx');
|
|
|
|
tr.classList.add('tab_' + tabId);
|
|
|
|
tr.classList.add('maindoc');
|
|
|
|
tr.cells[firstVarDataCol].textContent = url;
|
|
|
|
tbody.insertBefore(tr, tbody.firstChild);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var renderNetLogEntry = function(tr, entry) {
|
|
|
|
var filter = entry.d0;
|
|
|
|
var type = entry.d1;
|
|
|
|
var url = entry.d2;
|
|
|
|
|
|
|
|
tr.classList.add('canMtx');
|
|
|
|
|
|
|
|
// If the request is that of a root frame, insert a gap in the table
|
|
|
|
// in order to visually separate entries for different documents.
|
|
|
|
if ( type === 'main_frame' ) {
|
|
|
|
createGap(entry.tab, url);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cosmetic filter?
|
|
|
|
if ( filter.charAt(0) === 'c' ) {
|
|
|
|
tr.classList.add('cosmetic');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( filter.charAt(1) === 'b' ) {
|
|
|
|
tr.classList.add('blocked');
|
|
|
|
tr.cells[2].textContent = ' --';
|
|
|
|
} else if ( filter.charAt(1) === 'a' ) {
|
|
|
|
tr.classList.add('allowed');
|
|
|
|
tr.cells[2].textContent = ' ++';
|
|
|
|
} else {
|
|
|
|
tr.cells[2].textContent = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
var filterText = filter.slice(3);
|
|
|
|
if ( filter.lastIndexOf('sa', 0) === 0 ) {
|
|
|
|
filterText = '@@' + filterText;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr.cells[3].textContent = filterText + '\t';
|
|
|
|
tr.cells[4].textContent = (prettyRequestTypes[type] || type) + '\t';
|
|
|
|
tr.cells[5].appendChild(nodeFromURL(url, filter));
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var renderLogEntry = function(entry) {
|
|
|
|
var tr;
|
|
|
|
var fvdc = firstVarDataCol;
|
|
|
|
|
|
|
|
switch ( entry.cat ) {
|
|
|
|
case 'error':
|
|
|
|
case 'info':
|
|
|
|
tr = createRow('1');
|
|
|
|
tr.cells[fvdc].textContent = entry.d0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'cosmetic':
|
|
|
|
case 'net':
|
|
|
|
tr = createRow('1111');
|
|
|
|
renderNetLogEntry(tr, entry);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
tr = createRow('1');
|
|
|
|
tr.cells[fvdc].textContent = entry.d0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fields common to all rows.
|
|
|
|
var time = new Date(entry.tstamp);
|
|
|
|
tr.cells[0].textContent = time.toLocaleTimeString('fullwide', timeOptions);
|
|
|
|
tr.cells[0].title = time.toLocaleDateString('fullwide', dateOptions);
|
|
|
|
|
|
|
|
if ( entry.tab ) {
|
2015-05-16 16:15:02 +02:00
|
|
|
tr.classList.add('tab', classNameFromTabId(entry.tab));
|
2015-05-09 00:28:01 +02:00
|
|
|
if ( entry.tab === noTabId ) {
|
2015-05-16 16:15:02 +02:00
|
|
|
tr.cells[1].appendChild(createHiddenTextNode('bts'));
|
2015-05-09 00:28:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( entry.cat !== '' ) {
|
|
|
|
tr.classList.add('cat_' + entry.cat);
|
|
|
|
}
|
|
|
|
|
|
|
|
rowFilterer.filterOne(tr, true);
|
|
|
|
|
|
|
|
tbody.insertBefore(tr, tbody.firstChild);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var renderLogEntries = function(response) {
|
|
|
|
document.body.classList.toggle('colorBlind', response.colorBlind);
|
|
|
|
|
|
|
|
var entries = response.entries;
|
|
|
|
if ( entries.length === 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Preserve scroll position
|
|
|
|
var height = tbody.offsetHeight;
|
|
|
|
|
|
|
|
var tabIds = response.tabIds;
|
|
|
|
var n = entries.length;
|
|
|
|
var entry;
|
|
|
|
for ( var i = 0; i < n; i++ ) {
|
|
|
|
entry = entries[i];
|
|
|
|
// Unlikely, but it may happen
|
|
|
|
if ( entry.tab && tabIds.hasOwnProperty(entry.tab) === false ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
renderLogEntry(entries[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prevent logger from growing infinitely and eating all memory. For
|
|
|
|
// instance someone could forget that it is left opened for some
|
|
|
|
// dynamically refreshed pages.
|
|
|
|
truncateLog(maxEntries);
|
|
|
|
|
|
|
|
var yDelta = tbody.offsetHeight - height;
|
|
|
|
if ( yDelta === 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chromium:
|
|
|
|
// body.scrollTop = good value
|
|
|
|
// body.parentNode.scrollTop = 0
|
|
|
|
if ( document.body.scrollTop !== 0 ) {
|
|
|
|
document.body.scrollTop += yDelta;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Firefox:
|
|
|
|
// body.scrollTop = 0
|
|
|
|
// body.parentNode.scrollTop = good value
|
|
|
|
var parentNode = document.body.parentNode;
|
|
|
|
if ( parentNode && parentNode.scrollTop !== 0 ) {
|
|
|
|
parentNode.scrollTop += yDelta;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-05-16 16:15:02 +02:00
|
|
|
var synchronizeTabIds = function(newTabIds) {
|
|
|
|
var oldTabIds = allTabIds;
|
|
|
|
var autoDeleteVoidRows = !!vAPI.localStorage.getItem('loggerAutoDeleteVoidRows');
|
|
|
|
var rowVoided = false;
|
|
|
|
var trs;
|
|
|
|
for ( var tabId in oldTabIds ) {
|
|
|
|
if ( oldTabIds.hasOwnProperty(tabId) === false ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ( newTabIds.hasOwnProperty(tabId) ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Mark or remove voided rows
|
|
|
|
trs = uDom('.tab_' + tabId);
|
|
|
|
if ( autoDeleteVoidRows ) {
|
|
|
|
toJunkyard(trs);
|
|
|
|
} else {
|
|
|
|
trs.removeClass('canMtx');
|
|
|
|
rowVoided = true;
|
|
|
|
}
|
|
|
|
// Remove popup if it is currently bound to a removed tab.
|
|
|
|
if ( tabId === popupManager.tabId ) {
|
|
|
|
popupManager.toggleOff();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var select = document.getElementById('pageSelector');
|
|
|
|
var selectValue = select.value;
|
|
|
|
var tabIds = Object.keys(newTabIds).sort(function(a, b) {
|
|
|
|
return newTabIds[a].localeCompare(newTabIds[b]);
|
|
|
|
});
|
|
|
|
var option;
|
|
|
|
for ( var i = 0, j = 2; i < tabIds.length; i++ ) {
|
|
|
|
tabId = tabIds[i];
|
|
|
|
if ( tabId === noTabId ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
option = select.options[j];
|
|
|
|
j += 1;
|
|
|
|
if ( !option ) {
|
|
|
|
option = document.createElement('option');
|
|
|
|
select.appendChild(option);
|
|
|
|
}
|
|
|
|
option.textContent = newTabIds[tabId];
|
|
|
|
option.value = classNameFromTabId(tabId);
|
|
|
|
if ( option.value === selectValue ) {
|
|
|
|
option.setAttribute('selected', '');
|
|
|
|
} else {
|
|
|
|
option.removeAttribute('selected');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while ( j < select.options.length ) {
|
|
|
|
select.removeChild(select.options[j]);
|
|
|
|
}
|
|
|
|
if ( select.value !== selectValue ) {
|
|
|
|
select.selectedIndex = 0;
|
|
|
|
select.value = '';
|
|
|
|
select.options[0].setAttribute('selected', '');
|
|
|
|
pageSelectorChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
allTabIds = newTabIds;
|
|
|
|
|
|
|
|
return rowVoided;
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-05-09 00:28:01 +02:00
|
|
|
var truncateLog = function(size) {
|
|
|
|
if ( size === 0 ) {
|
|
|
|
size = 5000;
|
|
|
|
}
|
|
|
|
var tbody = document.querySelector('#content tbody');
|
|
|
|
size = Math.min(size, 10000);
|
|
|
|
var tr;
|
|
|
|
while ( tbody.childElementCount > size ) {
|
|
|
|
tr = tbody.lastElementChild;
|
|
|
|
trJunkyard.push(tbody.removeChild(tr));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var onLogBufferRead = function(response) {
|
|
|
|
// This tells us the behind-the-scene tab id
|
|
|
|
noTabId = response.noTabId;
|
|
|
|
|
|
|
|
// This may have changed meanwhile
|
|
|
|
if ( response.maxEntries !== maxEntries ) {
|
|
|
|
maxEntries = response.maxEntries;
|
|
|
|
uDom('#maxEntries').val(maxEntries || '');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Neuter rows for which a tab does not exist anymore
|
2015-05-18 14:12:35 +02:00
|
|
|
var rowVoided = false;
|
|
|
|
if ( response.tabIdsToken !== allTabIdsToken ) {
|
|
|
|
rowVoided = synchronizeTabIds(response.tabIds);
|
|
|
|
allTabIdsToken = response.tabIdsToken;
|
|
|
|
}
|
|
|
|
|
2015-05-09 00:28:01 +02:00
|
|
|
renderLogEntries(response);
|
|
|
|
|
2015-05-10 18:25:26 +02:00
|
|
|
if ( rowVoided ) {
|
|
|
|
uDom('#clean').toggleClass(
|
|
|
|
'disabled',
|
|
|
|
tbody.querySelector('tr.tab:not(.canMtx)') === null
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-05-09 00:28:01 +02:00
|
|
|
// Synchronize toolbar with content of log
|
|
|
|
uDom('#clear').toggleClass(
|
|
|
|
'disabled',
|
|
|
|
tbody.querySelector('tr') === null
|
|
|
|
);
|
|
|
|
|
2015-05-17 19:02:56 +02:00
|
|
|
vAPI.setTimeout(readLogBuffer, 1200);
|
2015-05-09 00:28:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// This can be called only once, at init time. After that, this will be called
|
|
|
|
// automatically. If called after init time, this will be messy, and this would
|
|
|
|
// require a bit more code to ensure no multi time out events.
|
|
|
|
|
|
|
|
var readLogBuffer = function() {
|
|
|
|
messager.send({ what: 'readAll' }, onLogBufferRead);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-05-16 16:15:02 +02:00
|
|
|
var pageSelectorChanged = function() {
|
|
|
|
var style = document.getElementById('tabFilterer');
|
|
|
|
var tabClass = document.getElementById('pageSelector').value;
|
|
|
|
var sheet = style.sheet;
|
|
|
|
while ( sheet.cssRules.length !== 0 ) {
|
|
|
|
sheet.deleteRule(0);
|
|
|
|
}
|
|
|
|
if ( tabClass !== '' ) {
|
|
|
|
sheet.insertRule(
|
|
|
|
'#content table tr:not(.' + tabClass + ') { display: none; }',
|
|
|
|
0
|
|
|
|
);
|
|
|
|
}
|
|
|
|
uDom('#refresh').toggleClass(
|
|
|
|
'disabled',
|
|
|
|
tabClass === '' || tabClass === 'tab_bts'
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var reloadTab = function() {
|
|
|
|
var tabClass = document.getElementById('pageSelector').value;
|
|
|
|
var matches = tabClass.match(/^tab_(.+)$/);
|
|
|
|
if ( matches === null ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ( matches[1] === 'bts' ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
messager.send({ what: 'reloadTab', tabId: matches[1] });
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-05-09 00:28:01 +02:00
|
|
|
var onMaxEntriesChanged = function() {
|
|
|
|
var raw = uDom(this).val();
|
|
|
|
try {
|
|
|
|
maxEntries = parseInt(raw, 10);
|
|
|
|
if ( isNaN(maxEntries) ) {
|
|
|
|
maxEntries = 0;
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
maxEntries = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
messager.send({
|
|
|
|
what: 'userSettings',
|
|
|
|
name: 'requestLogMaxEntries',
|
|
|
|
value: maxEntries
|
|
|
|
});
|
|
|
|
|
|
|
|
truncateLog(maxEntries);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var rowFilterer = (function() {
|
|
|
|
var filters = [];
|
|
|
|
|
|
|
|
var parseInput = function() {
|
|
|
|
filters = [];
|
|
|
|
|
|
|
|
var rawPart, not, hardBeg, hardEnd, reStr;
|
|
|
|
var raw = uDom('#filterInput').val().trim();
|
|
|
|
var rawParts = raw.split(/\s+/);
|
|
|
|
var i = rawParts.length;
|
|
|
|
while ( i-- ) {
|
|
|
|
rawPart = rawParts[i];
|
|
|
|
not = rawPart.charAt(0) === '!';
|
|
|
|
if ( not ) {
|
|
|
|
rawPart = rawPart.slice(1);
|
|
|
|
}
|
|
|
|
hardBeg = rawPart.charAt(0) === '|';
|
|
|
|
if ( hardBeg ) {
|
|
|
|
rawPart = rawPart.slice(1);
|
|
|
|
}
|
|
|
|
hardEnd = rawPart.slice(-1) === '|';
|
|
|
|
if ( hardEnd ) {
|
|
|
|
rawPart = rawPart.slice(0, -1);
|
|
|
|
}
|
|
|
|
if ( rawPart === '' ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// https://developer.mozilla.org/en/docs/Web/JavaScript/Guide/Regular_Expressions
|
|
|
|
reStr = rawPart.replace(/[.+?^${}()|[\]\\]/g, '\\$&')
|
|
|
|
.replace(/\*/g, '.*');
|
|
|
|
if ( hardBeg ) {
|
|
|
|
reStr = '(?:^|\\s)' + reStr;
|
|
|
|
}
|
|
|
|
if ( hardEnd ) {
|
|
|
|
reStr += '(?:\\s|$)';
|
|
|
|
}
|
|
|
|
filters.push({
|
|
|
|
re: new RegExp(reStr, 'i'),
|
|
|
|
r: !not
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var filterOne = function(tr, clean) {
|
|
|
|
var ff = filters;
|
|
|
|
var fcount = ff.length;
|
|
|
|
if ( fcount === 0 && clean === true ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// do not filter out doc boundaries, they help separate important
|
|
|
|
// section of log.
|
|
|
|
var cl = tr.classList;
|
|
|
|
if ( cl.contains('maindoc') ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ( fcount === 0 ) {
|
|
|
|
cl.remove('f');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var cc = tr.cells;
|
|
|
|
var ccount = cc.length;
|
|
|
|
var hit, j, f;
|
|
|
|
// each filter expression must hit (implicit and-op)
|
|
|
|
// if...
|
|
|
|
// positive filter expression = there must one hit on any field
|
|
|
|
// negative filter expression = there must be no hit on all fields
|
|
|
|
for ( var i = 0; i < fcount; i++ ) {
|
|
|
|
f = ff[i];
|
|
|
|
hit = !f.r;
|
|
|
|
for ( j = 0; j < ccount; j++ ) {
|
|
|
|
if ( f.re.test(cc[j].textContent) ) {
|
|
|
|
hit = f.r;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( !hit ) {
|
|
|
|
cl.add('f');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cl.remove('f');
|
|
|
|
};
|
|
|
|
|
|
|
|
var filterAll = function() {
|
|
|
|
// Special case: no filter
|
|
|
|
if ( filters.length === 0 ) {
|
|
|
|
uDom('#content tr').removeClass('f');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var tbody = document.querySelector('#content tbody');
|
|
|
|
var rows = tbody.rows;
|
|
|
|
var i = rows.length;
|
|
|
|
while ( i-- ) {
|
|
|
|
filterOne(rows[i]);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var onFilterChangedAsync = (function() {
|
|
|
|
var timer = null;
|
|
|
|
var commit = function() {
|
|
|
|
timer = null;
|
|
|
|
parseInput();
|
|
|
|
filterAll();
|
|
|
|
};
|
|
|
|
return function() {
|
|
|
|
if ( timer !== null ) {
|
|
|
|
clearTimeout(timer);
|
|
|
|
}
|
2015-05-17 19:02:56 +02:00
|
|
|
timer = vAPI.setTimeout(commit, 750);
|
2015-05-09 00:28:01 +02:00
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
|
|
var onFilterButton = function() {
|
|
|
|
var cl = document.body.classList;
|
|
|
|
cl.toggle('f', cl.contains('f') === false);
|
|
|
|
};
|
|
|
|
|
|
|
|
uDom('#filterButton').on('click', onFilterButton);
|
|
|
|
uDom('#filterInput').on('input', onFilterChangedAsync);
|
|
|
|
|
|
|
|
return {
|
|
|
|
filterOne: filterOne,
|
|
|
|
filterAll: filterAll
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var toJunkyard = function(trs) {
|
|
|
|
trs.remove();
|
|
|
|
var i = trs.length;
|
|
|
|
while ( i-- ) {
|
|
|
|
trJunkyard.push(trs.nodeAt(i));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var clearBuffer = function() {
|
|
|
|
var tbody = document.querySelector('#content tbody');
|
|
|
|
var tr;
|
|
|
|
while ( tbody.firstChild !== null ) {
|
|
|
|
tr = tbody.lastElementChild;
|
|
|
|
trJunkyard.push(tbody.removeChild(tr));
|
|
|
|
}
|
|
|
|
uDom('#clear').addClass('disabled');
|
2015-05-10 18:25:26 +02:00
|
|
|
uDom('#clean').addClass('disabled');
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var cleanBuffer = function() {
|
|
|
|
var rows = uDom('#content tr.tab:not(.canMtx)').remove();
|
|
|
|
var i = rows.length;
|
|
|
|
while ( i-- ) {
|
|
|
|
trJunkyard.push(rows.nodeAt(i));
|
|
|
|
}
|
|
|
|
uDom('#clean').addClass('disabled');
|
2015-05-09 00:28:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var toggleCompactView = function() {
|
|
|
|
document.body.classList.toggle(
|
|
|
|
'compactView',
|
|
|
|
document.body.classList.contains('compactView') === false
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var popupManager = (function() {
|
|
|
|
var realTabId = null;
|
|
|
|
var localTabId = null;
|
|
|
|
var container = null;
|
|
|
|
var popup = null;
|
|
|
|
var popupObserver = null;
|
|
|
|
var style = null;
|
|
|
|
var styleTemplate = [
|
|
|
|
'tr:not(.tab_{{tabId}}) {',
|
|
|
|
'cursor: not-allowed;',
|
|
|
|
'opacity: 0.2;',
|
|
|
|
'}'
|
|
|
|
].join('\n');
|
|
|
|
|
2015-05-10 15:28:50 +02:00
|
|
|
var resizePopup = function() {
|
|
|
|
if ( popup === null ) {
|
2015-05-09 00:28:01 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
var popupBody = popup.contentWindow.document.body;
|
|
|
|
if ( popupBody.clientWidth !== 0 && container.clientWidth !== popupBody.clientWidth ) {
|
2015-05-10 15:28:50 +02:00
|
|
|
container.style.setProperty('width', popupBody.clientWidth + 'px');
|
2015-05-09 00:28:01 +02:00
|
|
|
}
|
|
|
|
if ( popupBody.clientHeight !== 0 && popup.clientHeight !== popupBody.clientHeight ) {
|
2015-05-10 15:28:50 +02:00
|
|
|
popup.style.setProperty('height', popupBody.clientHeight + 'px');
|
2015-05-09 00:28:01 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-05-10 15:28:50 +02:00
|
|
|
var toggleSize = function() {
|
|
|
|
container.classList.toggle('hide');
|
|
|
|
};
|
|
|
|
|
2015-05-09 00:28:01 +02:00
|
|
|
var onLoad = function() {
|
|
|
|
resizePopup();
|
|
|
|
popupObserver.observe(popup.contentDocument.body, {
|
|
|
|
subtree: true,
|
|
|
|
attributes: true
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
var toggleOn = function(td) {
|
|
|
|
var tr = td.parentNode;
|
|
|
|
var matches = tr.className.match(/(?:^| )tab_([^ ]+)/);
|
|
|
|
if ( matches === null ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
realTabId = localTabId = matches[1];
|
|
|
|
if ( localTabId === 'bts' ) {
|
|
|
|
realTabId = noTabId;
|
|
|
|
}
|
|
|
|
|
|
|
|
container = document.getElementById('popupContainer');
|
|
|
|
|
2015-05-10 15:28:50 +02:00
|
|
|
container.querySelector('div > span:nth-of-type(1)').addEventListener('click', toggleSize);
|
|
|
|
container.querySelector('div > span:nth-of-type(2)').addEventListener('click', toggleOff);
|
2015-05-09 00:28:01 +02:00
|
|
|
|
|
|
|
popup = document.createElement('iframe');
|
|
|
|
popup.addEventListener('load', onLoad);
|
|
|
|
popup.setAttribute('src', 'popup.html?tabId=' + realTabId);
|
|
|
|
popupObserver = new MutationObserver(resizePopup);
|
|
|
|
container.appendChild(popup);
|
|
|
|
|
2015-05-16 16:15:02 +02:00
|
|
|
style = document.getElementById('popupFilterer');
|
2015-05-09 00:28:01 +02:00
|
|
|
style.textContent = styleTemplate.replace('{{tabId}}', localTabId);
|
|
|
|
|
|
|
|
document.body.classList.add('popupOn');
|
|
|
|
};
|
|
|
|
|
|
|
|
var toggleOff = function() {
|
|
|
|
document.body.classList.remove('popupOn');
|
|
|
|
|
2015-05-10 15:28:50 +02:00
|
|
|
container.querySelector('div > span:nth-of-type(1)').removeEventListener('click', toggleSize);
|
|
|
|
container.querySelector('div > span:nth-of-type(2)').removeEventListener('click', toggleOff);
|
|
|
|
container.classList.remove('hide');
|
2015-05-09 00:28:01 +02:00
|
|
|
|
|
|
|
popup.removeEventListener('load', onLoad);
|
|
|
|
popupObserver.disconnect();
|
|
|
|
popupObserver = null;
|
|
|
|
popup.setAttribute('src', '');
|
|
|
|
container.removeChild(popup);
|
|
|
|
popup = null;
|
|
|
|
|
|
|
|
style.textContent = '';
|
|
|
|
style = null;
|
|
|
|
|
|
|
|
container = null;
|
|
|
|
realTabId = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
var exports = {
|
|
|
|
toggleOn: function(ev) {
|
|
|
|
if ( realTabId === null ) {
|
|
|
|
toggleOn(ev.target);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
toggleOff: function() {
|
|
|
|
if ( realTabId !== null ) {
|
|
|
|
toggleOff();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Object.defineProperty(exports, 'tabId', {
|
|
|
|
get: function() { return realTabId || 0; }
|
|
|
|
});
|
|
|
|
|
|
|
|
return exports;
|
|
|
|
})();
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
uDom.onLoad(function() {
|
|
|
|
readLogBuffer();
|
|
|
|
|
2015-05-16 16:15:02 +02:00
|
|
|
uDom('#pageSelector').on('change', pageSelectorChanged);
|
|
|
|
uDom('#refresh').on('click', reloadTab);
|
2015-05-09 00:28:01 +02:00
|
|
|
uDom('#compactViewToggler').on('click', toggleCompactView);
|
2015-05-10 18:25:26 +02:00
|
|
|
uDom('#clean').on('click', cleanBuffer);
|
2015-05-09 00:28:01 +02:00
|
|
|
uDom('#clear').on('click', clearBuffer);
|
|
|
|
uDom('#maxEntries').on('change', onMaxEntriesChanged);
|
|
|
|
uDom('#content table').on('click', 'tr.canMtx > td:nth-of-type(2)', popupManager.toggleOn);
|
|
|
|
});
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
})();
|