-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
127 lines (99 loc) · 2.42 KB
/
app.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
var o = document.getElementById('output');
var operators = {
"∪": {
name: "UNION",
},
"*": {
name: "INTERSECT",
},
"-": {
name: "EXCEPT",
},
"×": {
name: "MULTIPLY",
},
"∞": {
name: "NATURAL_JOIN",
},
"∝": {
name: "SEMIJOIN_JOIN",
}
};
function OUTPUT(obj) {
var out = obj.toString();
output.innerText = out;
}
function SELECT(fields, obj) {
// console.log('#1 SELECT obj', obj);
if (typeof obj === 'string') {
obj = squel.select({ autoQuoteTableNames: true, autoQuoteFieldNames: true }).from(obj);
}
// console.log('#2 SELECT obj', obj);
obj.deleteAllFields();
for (let field in fields) {
obj = obj.field(fields[field]);
}
return obj;
}
function FIND(cond, obj) {
return squel.select({ autoQuoteTableNames: true, autoQuoteFieldNames: true })
.where(cond)
.from(obj);
}
function NATURAL_JOIN(obj1, obj2) {
if (typeof obj1 === 'string') {
obj1 = SELECT(["*"], obj1);
}
if (typeof obj2 === 'string') {
obj2 = SELECT(["*"], obj2);
}
return obj1.natural_join(obj2);
}
function SEMIJOIN_JOIN(obj1, obj2) {
if (typeof obj1 === 'string') {
obj1 = SELECT(["*"], obj1);
}
if (typeof obj2 === 'string') {
obj2 = SELECT(["*"], obj2);
}
return obj1.semijoin_join(obj2);
}
function UNION(obj1, obj2) {
if (typeof obj1 === 'string') {
obj1 = SELECT(["*"], obj1);
}
if (typeof obj2 === 'string') {
obj2 = SELECT(["*"], obj2);
}
return obj1.union(obj2);
}
function EXCEPT(obj1, obj2) {
if (typeof obj1 === 'string') {
obj1 = SELECT(["*"], obj1);
}
if (typeof obj2 === 'string') {
obj2 = SELECT(["*"], obj2);
}
return obj1.except(obj2);
}
function INTERSECT(obj1, obj2) {
if (typeof obj1 === 'string') {
obj1 = SELECT(["*"], obj1);
}
if (typeof obj2 === 'string') {
obj2 = SELECT(["*"], obj2);
}
return obj1.intersect(obj2);
}
function MULTIPLY(obj1, obj2) {
if (typeof obj1 === 'string' && typeof obj2 !== 'string') {
return obj2.from(obj1);
}
if (typeof obj1 !== 'string' && typeof obj2 === 'string') {
return obj1.from(obj2);
}
if (typeof obj1 === 'string' && typeof obj2 === 'string') {
obj1 = SELECT(["*"], obj1);
}
return obj1.from(obj2);
}