-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.php
71 lines (49 loc) · 1.79 KB
/
parser.php
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
<?php
if (!defined('UNDER_INDEX')) {
header('Location: /');
}
class Parser {
private $flow;
private $components;
private $chartType;
private $includeTable;
public function parse($flow) {
$this->flow = $flow;
if ($this->flow[count($this->flow)-1]['type'] != 'visualizer') {
throw new Exception('No se encontró el visualizador');
return;
}
$this->components = array();
$visualizer = null;
while (count($this->flow) > 0) {
$flowComponent = array_pop($this->flow);
if (!isset($this->components[$flowComponent['id']])) {
$component = new Component($flowComponent);
$this->components[$flowComponent['id']] = $component;
if (!isset($visualizer)) {
$visualizer = $component;
$this->chartType = (($flowComponent['settings']) && ($flowComponent['settings']['type'])) ? $flowComponent['settings']['type'] : 'line';
$this->includeTable = (($flowComponent['settings']) && ($flowComponent['settings']['table'])) ? $flowComponent['settings']['table'] : false;
}
} else {
$component = $this->components[$flowComponent['id']];
}
if (isset($lastFlowComponent)) {
$lastFlowComponent->addPrevious($component);
}
if ($flowComponent['type'] != 'source') {
$lastFlowComponent = $component;
} else {
$lastFlowComponent = null;
}
}
return $visualizer->getQuery();
}
public function getChartType() {
return $this->chartType;
}
public function getIncludeTable() {
return $this->includeTable;
}
}
?>