memgraph/demo/simulation/static/demo.js

227 lines
5.2 KiB
JavaScript
Raw Normal View History

2016-03-14 04:51:04 +08:00
(() => {
'use strict';
class QpsGauge {
constructor(canvas) {
this.gauge = new Gauge(canvas).setOptions({
lines: 12, // The number of lines to draw
angle: 0.07, // The length of each line
lineWidth: 0.27, // The line thickness
pointer: {
length: 0.82, // The radius of the inner circle
strokeWidth: 0.073, // The rotation offset
color: '#000' // Fill color
},
// If true, the pointer will not go past the end of the gauge
limitMax: 'true',
strokeColor: '#e0e0e0', // to see which ones work best for you
generateGradient: true,
percentColors: [[0.0, '#d32f2f'], [0.5, '#ffee58'], [1.0, '#388e3c']],
});
this.gauge.animationSpeed = 1;
}
set(value) {
this.gauge.set(value);
}
setMax(value) {
this.gauge.maxValue = this.maxValue = value;
}
getMax() {
return this.maxValue;
}
}
class CypherQuery {
constructor(textarea) {
this.textarea = textarea;
this.editor = CodeMirror.fromTextArea(this.textarea, {
height: 0,
lineNumbers: true,
mode: 'application/x-cypher-query',
indentWithTabs: false,
smartIndent: true,
matchBrackets: true,
theme: 'neo',
viewportMargin: Infinity
});
}
set(value) {
this.editor.getDoc().setValue(value);
}
get(separator) {
separator = separator ? separator : ' ';
this.editor.getDoc().getValue(separator);
}
}
class QpsText {
constructor(element) {
this.element = element;
}
get() {
$(this.element).text();
}
set(text) {
$(this.element).text(text);
}
}
class QueryCard {
constructor(card, maxQps, value) {
this.card = card;
this.maxQps = maxQps;
value = value ? value : 1;
this.text = new QpsText($(card).find('#text')[0]);
this.gauge = new QpsGauge($(card).find('#gauge')[0]);
this.query = new CypherQuery($(card).find('#query')[0]);
this.gauge.setMax(maxQps + 1);
this.gauge.animationSpeed = 1;
this.gauge.set(value);
}
set_value(value) {
2016-03-14 04:51:04 +08:00
this.text.set(value);
this.gauge.set(value);
}
set_query(query) {
this.query.set(query);
}
2016-03-14 04:51:04 +08:00
}
var put_new_line_mod_2 = function(array) {
let join_array = array.map(function(o, i) {
if (i % 2 == 0)
return ' ';
else
return '\n';
});
join_array.pop();
return array.map(function(v,i) {
return [v, join_array[i]];
}).reduce(function(a,b) {
return a.concat(b);
});
};
var queries = [
"CREATE (n{id:@}) RETURN n",
"MATCH (n{id:#}),(m{id:#}) CREATE (n)-[r:test]->(m) RETURN r",
"MATCH (n{id:#}) SET n.prop=^ RETURN n",
"MATCH (n{id:#}) RETURN n",
"MATCH (n{id:#})-[r]->(m) RETURN count(r)"
];
$("#running-button").click(function() {
running = !running;
if (running) {
$(this).text('STOP');
run();
updateGraph();
}
if (!running)
$(this).text('START');
});
// counters init
let running = false;
2016-03-14 04:51:04 +08:00
let value = 0;
let maxQps = 15000;
2016-03-14 04:51:04 +08:00
// cards init
let neo4jCards = [];
let memgraphCards = [];
queries.forEach(function(query, i) {
query = put_new_line_mod_2(query.split(" ")).join('');
neo4jCards.push(new QueryCard($('#q-0-' + i.toString())[0], maxQps));
neo4jCards[i].set_query(query);
memgraphCards.push(new QueryCard($('#q-1-' + i.toString())[0], maxQps));
memgraphCards[i].set_query(query);
});
2016-03-14 04:51:04 +08:00
// cards update
2016-03-14 04:51:04 +08:00
function run() {
if (!running)
return;
2016-03-14 04:51:04 +08:00
setTimeout(() => {
value += 10;
if(value >= maxQps)
value = 0;
queries.forEach(function(query, i) {
neo4jCards[i].set_value(Math.round(1000 + Math.random() * 3000));
memgraphCards[i].set_value(Math.round(7000 + Math.random() * 7000));
});
2016-03-14 04:51:04 +08:00
run();
}, 1000);
2016-03-14 04:51:04 +08:00
}
// graph init
var data = [];
var chart;
var chartData;
2016-03-14 04:51:04 +08:00
nv.addGraph(function() {
chart = nv.models.lineChart()
.useInteractiveGuideline(true)
.showLegend(true)
.showYAxis(true)
.showXAxis(true);
2016-03-14 04:51:04 +08:00
chart.xAxis
.axisLabel('Time (s)')
.tickFormat(d3.format(',r'));
chart.yAxis
.axisLabel('QPS')
.tickFormat(d3.format('f'));
2016-03-14 04:51:04 +08:00
chartData = d3.select('#chart svg')
.datum(data);
chartData.call(chart);
2016-03-14 04:51:04 +08:00
chart.update();
nv.utils.windowResize(function() { chart.update(); });
return chart;
});
// graph update
let x = 0;
function updateGraph() {
if (!running)
return;
setTimeout(() => {
x += 1;
if (x > 100)
x = 0
var memgraphLine = [];
var neo4jLine = [];
for (var i = 0; i < x; i++) {
memgraphLine.push({x: i, y: 100 * Math.random() + 1000});
neo4jLine.push({x: i, y: 100 * Math.random() + 50});
}
var newData = [{
values: memgraphLine,
key: 'Memgraph',
color: '#ff0000'
2016-03-14 04:51:04 +08:00
}, {
values: neo4jLine,
key: 'Neo4j',
color: '#0000ff'
2016-03-14 04:51:04 +08:00
}];
chartData.datum(newData).transition().duration(500).call(chart);
updateGraph();
}, 1000);
2016-03-14 04:51:04 +08:00
}
})();