-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathmain.js
286 lines (224 loc) · 6.06 KB
/
main.js
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
/**
* @author zz85 (https://github.com/zz85 | https://twitter.com/blurspline)
*/
var dpr, rc, ctx;
const DEBUG = false;
const STORAGE_KEY = 'kafka-streams-viz';
function processName(name) {
return name.replace(/-/g, '-\\n');
}
// converts kafka stream ascii topo description to DOT language
function convertTopoToDot(topo) {
var lines = topo.split('\n');
var results = [];
var outside = [];
var stores = new Set();
var topics = new Set();
var entityName;
// dirty but quick parsing
lines.forEach(line => {
var sub = /Sub-topology: ([0-9]*)/;
var match = sub.exec(line);
if (match) {
if (results.length) results.push(`}`);
results.push(`subgraph cluster_${match[1]} {
label = "${match[0]}";
style=filled;
color=lightgrey;
node [style=filled,color=white];
`);
return;
}
match = /(Source\:|Processor\:|Sink:)\s+(\S+)\s+\((topics|topic|stores)\:(.*)\)/.exec(line)
if (match) {
entityName = processName(match[2]);
var type = match[3]; // source, processor or sink
var linkedNames = match[4];
linkedNames = linkedNames.replace(/\[|\]/g, '');
linkedNames.split(',').forEach(linkedName => {
linkedName = processName(linkedName.trim());
if (linkedName === '') {
// short circuit
}
else if (type === 'topics') {
// from
outside.push(`"${linkedName}" -> "${entityName}";`);
topics.add(linkedName);
}
else if (type === 'topic') {
// to
outside.push(`"${entityName}" -> "${linkedName}";`);
topics.add(linkedName);
}
else if (type === 'stores') {
if (entityName.includes("JOIN")) {
outside.push(`"${linkedName}" -> "${entityName}";`);
} else {
outside.push(`"${entityName}" -> "${linkedName}";`);
}
stores.add(linkedName);
}
});
return;
}
match = /\-\-\>\s+(.*)$/.exec(line);
if (match && entityName) {
var targets = match[1];
targets.split(',').forEach(name => {
var linkedName = processName(name.trim());
if (linkedName === 'none') return;
results.push(`"${entityName}" -> "${linkedName}";`);
});
}
})
if (results.length) results.push(`}`);
results = results.concat(outside);
stores.forEach(node => {
results.push(`"${node}" [shape=cylinder];`)
});
topics.forEach(node => {
results.push(`"${node}" [shape=rect];`)
});
return `
digraph G {
label = "Kafka Streams Topology"
${results.join('\n')}
}
`;
}
function update() {
var topo = input.value;
var dotCode = convertTopoToDot(topo);
if (DEBUG) console.log('dot code\n', dotCode);
graphviz_code.value = dotCode;
var params = {
engine: 'dot',
format: 'svg'
};
var svgCode = Viz(dotCode, params);
svg_container.innerHTML = svgCode;
var svg = svg_container.querySelector('svg')
dpr = window.devicePixelRatio
canvas.width = svg.viewBox.baseVal.width * dpr | 0;
canvas.height = svg.viewBox.baseVal.height * dpr | 0;
canvas.style.width = `${svg.viewBox.baseVal.width}px`;
canvas.style.height = `${svg.viewBox.baseVal.height}px`;
rc = rough.canvas(canvas);
ctx = rc.ctx
ctx.scale(dpr, dpr);
var g = svg.querySelector('g');
try {
traverseSvgToRough(g);
sessionStorage.setItem(STORAGE_KEY, topo);
}
catch (e) {
console.error('Exception generating graph', e && e.stack || e);
// TODO update Frontend
}
}
function nullIfNone(attribute) {
return attribute === 'none' ? null : attribute;
}
/**
* The following part can be removed when rough.js adds support for rendering svgs.
*/
function getFillStroke(child) {
var fill = nullIfNone(child.getAttribute('fill'));
var stroke = nullIfNone(child.getAttribute('stroke'));
var isBaseRectangle = child.nodeName === 'polygon' && child.parentNode.id === 'graph0';
return {
fill: isBaseRectangle ? 'white' : fill,
fillStyle: isBaseRectangle ? 'solid' : 'hachure',
stroke: stroke
};
}
function splitToArgs(array, delimiter) {
return array.split(delimiter || ',').map(v => +v);
}
// node traversal function
function traverseSvgToRough(child) {
if (child.nodeName === 'path') {
var d = child.getAttribute('d');
var opts = getFillStroke(child);
rc.path(d, opts);
return;
}
if (child.nodeName === 'ellipse') {
var cx = +child.getAttribute('cx');
var cy = +child.getAttribute('cy');
var rx = +child.getAttribute('rx');
var ry = +child.getAttribute('ry');
var opts = getFillStroke(child);
rc.ellipse(cx, cy, rx * 1.5, ry * 1.5);
return;
}
if (child.nodeName === 'text') {
var fontFamily = child.getAttribute('font-family')
var fontSize = +child.getAttribute('font-size')
var anchor = child.getAttribute('text-anchor')
if (anchor === 'middle') {
ctx.textAlign = 'center';
}
if (fontFamily) {
ctx.fontFamily = fontFamily;
}
if (fontSize) {
ctx.fontSize = fontSize;
}
ctx.fillText(child.textContent, child.getAttribute('x'), child.getAttribute('y'));
return;
}
if (child.nodeName === 'polygon') {
var pts = child.getAttribute('points')
var opts = getFillStroke(child);
rc.path(`M${pts}Z`, opts);
return;
}
if (child.nodeName === 'g') {
var transform = child.getAttribute('transform');
ctx.save();
if (transform) {
var scale = /scale\(([^)]*)\)/.exec(transform);
if (scale) {
var args = scale[1].split(' ').map(parseFloat);
ctx.scale(...args);
}
var rotate = /rotate\(([^)]*)\)/.exec(transform);
if (rotate) {
var args = rotate[1].split(' ').map(parseFloat);
ctx.rotate(...args);
}
var translate = /translate\(([^)]*)\)/.exec(transform);
if (translate) {
var args = translate[1].split(' ').map(parseFloat);
ctx.translate(...args);
}
}
[...child.children].forEach(traverseSvgToRough);
ctx.restore();
return;
}
}
var pending;
function scheduleUpdate() {
if (pending) clearTimeout(pending);
pending = setTimeout(() => {
pending = null;
update();
}, 200);
}
// startup
var topo;
if (window.location.hash.length > 1) {
try {
topo = atob(window.location.hash.substr(1));
} catch {
console.log("Can not read topo from url hash");
window.location.hash = "";
}
}
if (!topo) {
topo = sessionStorage.getItem(STORAGE_KEY);
}
if (topo) input.value = topo;
update();