2017-10-23 17:25:41 +02:00
|
|
|
var feedStatusFreqCheck = 1000*15;
|
2017-10-23 15:32:44 +02:00
|
|
|
var maxNumPoint = hours_spanned;
|
2017-10-23 17:25:41 +02:00
|
|
|
var keepaliveTime = 0;
|
2017-10-20 17:09:01 +02:00
|
|
|
var emptyArray = [];
|
|
|
|
for(i=0; i<maxNumPoint; i++) {
|
|
|
|
emptyArray.push([i, 0]);
|
|
|
|
}
|
|
|
|
|
2017-10-20 15:09:53 +02:00
|
|
|
class Sources {
|
|
|
|
constructor() {
|
|
|
|
this._sourcesArray = {};
|
|
|
|
this._sourcesCount = {};
|
|
|
|
this._sourcesCountMax = {};
|
|
|
|
this._globalMax = 0;
|
|
|
|
this._sourceNames = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
addSource(sourceName) {
|
2017-10-20 17:09:01 +02:00
|
|
|
this._sourcesArray[sourceName] = emptyArray;
|
2017-10-20 15:09:53 +02:00
|
|
|
this._sourcesCount[sourceName] = 0;
|
|
|
|
this._sourcesCountMax[sourceName] = 0;
|
|
|
|
this._sourceNames.push(sourceName);
|
|
|
|
}
|
|
|
|
|
|
|
|
addIfNotPresent(sourceName) {
|
|
|
|
if (this._sourceNames.indexOf(sourceName) == -1) {
|
|
|
|
this.addSource(sourceName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
incCountOnSource(sourceName) {
|
|
|
|
this._sourcesCount[sourceName] += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
resetCountOnSource() {
|
|
|
|
for (var src of this._sourceNames) {
|
|
|
|
this._sourcesCount[src] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
slideSource() {
|
|
|
|
var globMax = 0;
|
|
|
|
for (var src of this._sourceNames) {
|
|
|
|
// res[0] = max, res[1] = slidedArray
|
|
|
|
var res = slideAndMax(this._sourcesArray[src], this._sourcesCount[src]);
|
|
|
|
// max
|
|
|
|
this._sourcesCountMax[src] = res[0];
|
|
|
|
globMax = globMax > res[0] ? globMax : res[0];
|
|
|
|
// data
|
|
|
|
this._sourcesArray[src] = res[1];
|
|
|
|
}
|
|
|
|
this._globalMax = globMax;
|
|
|
|
}
|
|
|
|
|
|
|
|
toArray() {
|
|
|
|
var to_return = [];
|
|
|
|
for (var src of this._sourceNames) {
|
2017-10-23 15:32:44 +02:00
|
|
|
if(src == 'global') //ignore global
|
|
|
|
continue;
|
|
|
|
var realData = this._sourcesArray[src].slice(0); //clone array
|
|
|
|
realData.push([maxNumPoint, 0]);
|
2017-10-20 15:09:53 +02:00
|
|
|
to_return.push({
|
|
|
|
label: src,
|
2017-10-23 15:32:44 +02:00
|
|
|
data: realData
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return to_return;
|
|
|
|
}
|
|
|
|
|
|
|
|
toArrayDirect() {
|
|
|
|
var to_return = [];
|
|
|
|
for (var src of this._sourceNames) {
|
|
|
|
if(src == 'global') //ignore global
|
|
|
|
continue;
|
|
|
|
var realData = this._sourcesArray[src].slice(0); //clone array
|
|
|
|
realData.push([maxNumPoint, this._sourcesCount[src]]);
|
|
|
|
this._globalMax = this._globalMax > this._sourcesCount[src] ? this._globalMax : this._sourcesCount[src];
|
|
|
|
to_return.push({
|
|
|
|
label: src,
|
|
|
|
data: realData
|
2017-10-20 15:09:53 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return to_return;
|
|
|
|
}
|
|
|
|
|
|
|
|
getGlobalMax() {
|
|
|
|
return this._globalMax;
|
|
|
|
}
|
|
|
|
|
|
|
|
getSingleSource(sourceName) {
|
|
|
|
return this._sourcesArray[sourceName];
|
|
|
|
}
|
|
|
|
|
|
|
|
getEmptyData() {
|
2017-10-20 17:09:01 +02:00
|
|
|
return [{label: 'no data', data: emptyArray}];
|
2017-10-20 15:09:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* END CLASS SOURCE */
|
|
|
|
|
|
|
|
var sources = new Sources();
|
|
|
|
sources.addSource('global');
|
|
|
|
|
|
|
|
var curNumLog = 0;
|
|
|
|
var curMaxDataNumLog = 0;
|
|
|
|
|
|
|
|
$(document).ready(function () {
|
|
|
|
createHead(function() {
|
|
|
|
if (!!window.EventSource) {
|
|
|
|
var source_log = new EventSource(urlForLogs);
|
|
|
|
|
|
|
|
source_log.onopen = function(){
|
|
|
|
//console.log('connection is opened. '+source_log.readyState);
|
|
|
|
};
|
|
|
|
|
|
|
|
source_log.onerror = function(){
|
|
|
|
//console.log('error: '+source_log.readyState);
|
|
|
|
};
|
|
|
|
|
|
|
|
source_log.onmessage = function(event) {
|
|
|
|
var json = jQuery.parseJSON( event.data );
|
|
|
|
updateLogTable(json.feedName, json.log);
|
|
|
|
};
|
|
|
|
|
|
|
|
} else {
|
|
|
|
console.log("No event source_log");
|
|
|
|
}
|
|
|
|
});
|
2017-10-23 16:34:14 +02:00
|
|
|
|
|
|
|
$( "#rotation_wait_time_selector" ).change(function() {
|
|
|
|
var sel = parseInt($( this ).val());
|
|
|
|
if(isNaN(sel)) {
|
|
|
|
rotation_wait_time = 0;
|
|
|
|
} else {
|
|
|
|
rotation_wait_time = sel;
|
|
|
|
}
|
|
|
|
var old = ROTATIONWAITTIME;
|
|
|
|
ROTATIONWAITTIME = 1000*rotation_wait_time; //seconds
|
|
|
|
if(old == 0) {
|
|
|
|
mapEventManager._timeoutRotate = setTimeout(function(){ mapEventManager.rotateMap(); }, ROTATIONWAITTIME);
|
|
|
|
}
|
|
|
|
});
|
2017-10-23 16:56:25 +02:00
|
|
|
|
|
|
|
$( "#zoom_selector" ).change(function() {
|
|
|
|
var sel = parseInt($( this ).val());
|
|
|
|
zoomlevel = sel;
|
|
|
|
ZOOMLEVEL = sel;
|
|
|
|
});
|
|
|
|
|
2017-10-20 15:09:53 +02:00
|
|
|
});
|
|
|
|
|
2017-10-23 17:25:41 +02:00
|
|
|
function ledColorManager() {
|
|
|
|
if(new Date().getTime() - keepaliveTime > feedStatusFreqCheck) { // no feed
|
|
|
|
$("#status_led").removeClass("led_green");
|
|
|
|
$("#status_led").addClass("led_red");
|
|
|
|
} else {
|
|
|
|
$("#status_led").removeClass("led_red");
|
|
|
|
$("#status_led").addClass("led_green");
|
|
|
|
}
|
|
|
|
setTimeout(function(){ ledColorManager(); }, feedStatusFreqCheck);
|
|
|
|
}
|
|
|
|
|
2017-10-20 15:09:53 +02:00
|
|
|
|
|
|
|
// LOG TABLE
|
|
|
|
function updateLogTable(feedName, log) {
|
|
|
|
if (log.length == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Create new row
|
|
|
|
tableBody = document.getElementById('table_log_body');
|
|
|
|
//curNumLog++;
|
|
|
|
sources.addIfNotPresent(feedName);
|
|
|
|
sources.incCountOnSource(feedName);
|
|
|
|
sources.incCountOnSource('global');
|
|
|
|
|
|
|
|
// only add row for attribute
|
|
|
|
if (feedName == "Attribute" ) {
|
|
|
|
createRow(tableBody, log);
|
|
|
|
|
|
|
|
// Remove old row
|
|
|
|
var logSel = document.getElementById("log_select");
|
|
|
|
//get height of pannel, find max num of item
|
|
|
|
var maxNumLogItem = document.getElementById('divLogTable').clientHeight/37;
|
|
|
|
maxNumLogItem -= 2; //take heading/padding/... into account
|
|
|
|
if (maxNumLogItem - parseInt(maxNumLogItem) < 0.5) { //beautifier
|
|
|
|
maxNumLogItem -= 1;
|
|
|
|
}
|
|
|
|
if (tableBody.rows.length > maxNumLogItem) {
|
|
|
|
while (tableBody.rows.length >= maxNumLogItem){
|
|
|
|
tableBody.deleteRow(0);
|
|
|
|
}
|
|
|
|
}
|
2017-10-23 17:25:41 +02:00
|
|
|
} else if (feedName == "Keepalive") {
|
|
|
|
keepaliveTime = new Date().getTime();
|
|
|
|
ledColorManager();
|
2017-10-20 15:09:53 +02:00
|
|
|
} else {
|
|
|
|
// do nothing
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function slideAndMax(orig, newData) {
|
|
|
|
var slided = [];
|
|
|
|
var max = newData;
|
|
|
|
for (i=1; i<orig.length; i++) {
|
|
|
|
y = orig[i][1];
|
|
|
|
slided.push([i-1, y]);
|
|
|
|
max = y > max ? y : max;
|
|
|
|
}
|
|
|
|
slided.push([orig.length-1, newData]);
|
|
|
|
curMaxDataNumLog = max;
|
|
|
|
return [curMaxDataNumLog, slided];
|
|
|
|
}
|
|
|
|
|
|
|
|
function createRow(tableBody, log) {
|
|
|
|
var tr = document.createElement('TR');
|
|
|
|
//var action = document.createElement('TD');
|
|
|
|
|
|
|
|
for (var key in log) {
|
|
|
|
if (log.hasOwnProperty(key)) {
|
|
|
|
var td = document.createElement('TD');
|
|
|
|
td.appendChild(document.createTextNode(log[key]));
|
|
|
|
tr.appendChild(td);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// level
|
|
|
|
if( log.level == "INFO" ){
|
|
|
|
tr.className = "info";
|
|
|
|
}
|
|
|
|
else if ( log.level == "WARNING" ){
|
|
|
|
tr.className = "warning";
|
|
|
|
}
|
|
|
|
else if ( log.level == "CRITICAL"){
|
|
|
|
tr.className = "danger"
|
|
|
|
}
|
|
|
|
|
|
|
|
// action
|
|
|
|
//action.appendChild(document.createTextNode("ACTION"));
|
|
|
|
//tr.appendChild(action);
|
|
|
|
|
|
|
|
tableBody.appendChild(tr);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function createHead(callback) {
|
|
|
|
if (document.getElementById('table_log_head').childNodes.length > 1)
|
|
|
|
return
|
|
|
|
$.getJSON( urlForHead, function( data ) {
|
|
|
|
var tr = document.createElement('TR');
|
|
|
|
for (head of data) {
|
|
|
|
var th = document.createElement('TH');
|
|
|
|
th.appendChild(document.createTextNode(head));
|
|
|
|
tr.appendChild(th);
|
|
|
|
}
|
|
|
|
//var action = document.createElement('TH');
|
|
|
|
//action.appendChild(document.createTextNode("Actions"));
|
|
|
|
//tr.appendChild(action);
|
|
|
|
document.getElementById('table_log_head').appendChild(tr);
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
}
|