1 // ER diagram description parser
4 constructor(description
)
7 this.inheritances
= [ ];
8 this.associations
= [ ];
10 this.mcdParsing(description
);
12 // Cache SVG graphs returned by server (in addition to server cache = good perfs)
18 static CARDINAL(symbol
)
20 let res
= { "*": "0,n", "+": "1,n", "?": "0,1", "1": "1,1" } [ symbol
[0] ];
21 if (symbol
.length
>= 2)
24 res
= '(' + res
+ ')';
25 else if (['>','<'].includes(symbol
[1]))
31 ///////////////////////////////
32 // PARSING STAGE 1: text to MCD
33 ///////////////////////////////
35 // Parse a textual description into a json object
38 let lines
= text
.split("\n");
39 lines
.push(""); //easier parsing: always empty line at the end
41 for (let i
=0; i
< lines
.length
; i
++)
43 lines
[i
] = lines
[i
].trim();
45 if (lines
[i
].length
== 0)
47 if (start
>= 0) //there is some group of lines to parse
49 this.parseThing(lines
, start
, i
);
53 else //not empty line: just register starting point
61 // Parse a group of lines into entity, association, ...
62 parseThing(lines
, start
, end
) //start included, end excluded
64 switch (lines
[start
].charAt(0))
67 // Entity = { name: { attributes, [weak] } }
68 let name
= lines
[start
].match(/[^\[\]"\s]+/)[0];
69 let entity
= { attributes: this.parseAttributes(lines
, start
+1, end
) };
70 if (lines
[start
].charAt(1) == '[')
72 this.entities
[name
] = entity
;
74 case 'i': //inheritance (arrows)
75 this.inheritances
= this.inheritances
.concat(this.parseInheritance(lines
, start
+1, end
));
77 case '{': //association
78 // Association = { [name], [attributes], [weak], entities: ArrayOf entity indices }
79 let relationship
= { };
80 let nameRes
= lines
[start
].match(/[^{}"\s]+/);
82 relationship
.name
= nameRes
[0];
83 if (lines
[start
].charAt(1) == '{')
84 relationship
.weak
= true;
85 this.associations
.push(Object
.assign({}, relationship
, this.parseAssociation(lines
, start
+1, end
)));
90 // attributes: ArrayOf {name, [isKey], [type], [qualifiers]}
91 parseAttributes(lines
, start
, end
)
94 for (let i
=start
; i
<end
; i
++)
98 if (line
.charAt(0) == '+')
101 line
= line
.slice(1);
103 field
.name
= line
.match(/[^"\s]+/)[0];
104 let sqlClues
= line
.substring(field
.name
.length
).trim();
105 if (sqlClues
.length
> 0)
107 field
.type
= sqlClues
.match(/[^\s]+/)[0]; //type is always the first indication (mandatory)
108 field
.qualifiers
= sqlClues
.substring(field
.type
.length
);
110 attributes
.push(field
);
115 // GroupOf Inheritance: { parent, children: ArrayOf entity indices }
116 parseInheritance(lines
, start
, end
)
118 let inheritance
= [];
119 for (let i
=start
; i
<end
; i
++)
121 let lineParts
= lines
[i
].split(" ");
123 for (let j
=1; j
<lineParts
.length
; j
++)
124 children
.push(lineParts
[j
]);
125 inheritance
.push({ parent:lineParts
[0], children: children
});
130 // Association (parsed here): {
131 // entities: ArrayOf entity names + cardinality,
132 // [attributes: ArrayOf {name, [isKey], [type], [qualifiers]}]
134 parseAssociation(lines
, start
, end
)
141 if (lines
[i
].charAt(0) == '-')
143 assoce
.attributes
= this.parseAttributes(lines
, i
+1, end
);
148 // Read entity name + cardinality
149 let lineParts
= lines
[i
].split(" ");
150 entities
.push({ name:lineParts
[0], card:lineParts
[1] });
154 assoce
.entities
= entities
;
158 //////////////////////////////
159 // PARSING STAGE 2: MCD to MLD
160 //////////////////////////////
162 // From entities + relationships to tables
165 // Pass 1: initialize tables
166 Object
.keys(this.entities
).forEach( name
=> {
167 let newTable
= [ ]; //array of fields
168 this.entities
[name
].attributes
.forEach( attr
=> {
173 qualifiers: attr
.qualifiers
,
175 if (!!attr
.qualifiers
&& !!attr
.qualifiers
.match(/foreign/i))
176 Object
.assign(newField
, {ref: attr
.qualifiers
.match(/references ([^\s
]+)/i
)[1]});
177 newTable
.push(newField
);
179 this.tables
[name
] = newTable
;
181 // Add foreign keys information for children (inheritance). TODO: allow several levels
182 // NOTE: modelisation assume each child has its own table, refering parent (other options exist)
183 this.inheritances
.forEach( inh
=> {
184 let idx
= this.tables
[inh
.parent
].findIndex( item
=> { return item
.isKey
; });
185 inh
.children
.forEach( c
=> {
186 this.tables
[c
].push({
187 name: inh
.parent
+ "_id",
188 type: this.tables
[inh
.parent
][idx
].type
,
190 qualifiers: (this.tables
[inh
.parent
][idx
].qualifiers
|| "") + " foreign key references " + inh
.parent
,
195 // Pass 2: parse associations, add foreign keys when cardinality is 0,1 or 1,1
196 this.associations
.forEach( a
=> {
197 let newTableAttrs
= [ ];
198 let hasZeroOne
= false;
199 a
.entities
.forEach( e
=> {
200 if (['?','1'].includes(e
.card
[0]))
203 // Foreign key apparition (for each entity in association minus current one, for each identifying attribute)
204 a
.entities
.forEach( e2
=> {
205 if (e2
.name
== e
.name
)
207 this.entities
[e2
.name
].attributes
.forEach( attr
=> {
210 // For "weak tables", foreign keys become part of the key
211 const isKey
= e
.card
.length
>= 2 && e
.card
[1] == 'R';
212 this.tables
[e
.name
].push({
214 name: e2
.name
+ "_" + attr
.name
,
216 qualifiers: "foreign key references " + e2
.name
+ " " + (!isKey
&& e
.card
[0]=='1' ? "not null" : ""),
217 ref: e2
.name
, //easier drawMld function (fewer regexps)
225 // Add all keys in current entity
226 let fields
= this.entities
[e
.name
].attributes
.filter( attr
=> { return attr
.isKey
; });
233 if (!hasZeroOne
&& newTableAttrs
.length
> 1)
235 // Ok, really create a new table
237 name: a
.name
|| newTableAttrs
.map( item
=> { return item
.entity
; }).join("_"),
240 newTableAttrs
.forEach( item
=> {
241 item
.fields
.forEach( f
=> {
242 newTable
.fields
.push({
243 name: item
.entity
+ "_" + f
.name
,
246 qualifiers: (f
.qualifiers
|| "") + " foreign key references " + item
.entity
,
251 // Check for duplicates (in case of self-relationship), rename if needed
252 newTable
.fields
.forEach( (f
,i
) => {
253 const idx
= newTable
.fields
.findIndex( item
=> { return item
.name
== f
.name
; });
256 // Current field is a duplicate
258 let newName
= f
.name
+ suffix
;
259 while (newTable
.fields
.findIndex( item
=> { return item
.name
== newName
; }) >= 0)
262 newName
= f
.name
+ suffix
;
267 // Add relationship potential own attributes
268 (a
.attributes
|| [ ]).forEach( attr
=> {
269 newTable
.fields
.push({
273 qualifiers: attr
.qualifiers
,
276 this.tables
[newTable
.name
] = newTable
.fields
;
281 /////////////////////////////////
282 // DRAWING + GET SQL FROM PARSING
283 /////////////////////////////////
285 static AjaxGet(dotInput
, callback
)
287 let xhr
= new XMLHttpRequest();
288 xhr
.onreadystatechange = function() {
289 if (this.readyState
== 4 && this.status
== 200)
290 callback(this.responseText
);
292 xhr
.open("GET", "scripts/getGraphSvg.php?dot=" + encodeURIComponent(dotInput
), true);
296 // "Modèle conceptuel des données". TODO: option for graph size
297 // NOTE: randomizing helps to obtain better graphs (sometimes)
298 drawMcd(id
, mcdStyle
) //mcdStyle: bubble, or compact
300 let element
= document
.getElementById(id
);
301 mcdStyle
= mcdStyle
|| "compact";
302 if (this.mcdGraph
.length
> 0)
304 element
.innerHTML
= this.mcdGraph
;
307 // Build dot graph input
308 let mcdDot
= 'graph {\n';
309 mcdDot
+= 'rankdir="LR";\n';
311 if (mcdStyle
== "compact")
312 mcdDot
+= 'node [shape=plaintext];\n';
313 _
.shuffle(Object
.keys(this.entities
)).forEach( name
=> {
314 if (mcdStyle
== "bubble")
316 mcdDot
+= '"' + name
+ '" [shape=rectangle, label="' + name
+ '"';
317 if (this.entities
[name
].weak
)
318 mcdDot
+= ', peripheries=2';
320 if (!!this.entities
[name
].attributes
)
322 this.entities
[name
].attributes
.forEach( a
=> {
323 let label
= (a
.isKey
? '#' : '') + a
.name
;
324 let attrName
= name
+ '_' + a
.name
;
325 mcdDot
+= '"' + attrName
+ '" [shape=ellipse, label="' + label
+ '"];\n';
326 if (Math
.random() < 0.5)
327 mcdDot
+= '"' + attrName
+ '" -- "' + name
+ '";\n';
329 mcdDot
+= '"' + name
+ '" -- "' + attrName
+ '";\n';
335 mcdDot
+= '"' + name
+ '" [label=<';
336 if (this.entities
[name
].weak
)
338 mcdDot
+= '<table port="name" BORDER="1" ALIGN="LEFT" CELLPADDING="0" CELLSPACING="3" CELLBORDER="0">' +
339 '<tr><td><table BORDER="1" ALIGN="LEFT" CELLPADDING="5" CELLSPACING="0">\n';
342 mcdDot
+= '<table port="name" BORDER="1" ALIGN="LEFT" CELLPADDING="5" CELLSPACING="0">\n';
343 mcdDot
+= '<tr><td BGCOLOR="#ae7d4e" BORDER="0"><font COLOR="#FFFFFF">' + name
+ '</font></td></tr>\n';
344 if (!!this.entities
[name
].attributes
)
346 this.entities
[name
].attributes
.forEach( a
=> {
347 let label
= (a
.isKey
? '<u>' : '') + a
.name
+ (a
.isKey
? '</u>' : '');
348 mcdDot
+= '<tr><td BGCOLOR="#FFFFFF" BORDER="0" ALIGN="LEFT"><font COLOR="#000000" >' + label
+ '</font></td></tr>\n';
351 mcdDot
+= '</table>';
352 if (this.entities
[name
].weak
)
353 mcdDot
+= '</td></tr></table>';
358 _
.shuffle(this.inheritances
).forEach( i
=> {
359 // TODO: node shape = triangle fill yellow. See
360 // https://merise.developpez.com/faq/?page=MCD#CIF-ou-dependance-fonctionnelle-de-A-a-Z
361 // https://merise.developpez.com/faq/?page=MLD#Comment-transformer-un-MCD-en-MLD
362 // https://www.developpez.net/forums/d1088964/general-developpement/alm/modelisation/structure-agregation-l-association-d-association/
363 _
.shuffle(i
.children
).forEach( c
=> {
364 if (Math
.random() < 0.5)
365 mcdDot
+= '"' + c
+ '":name -- "' + i
.parent
+ '":name [dir="forward",arrowhead="vee",';
367 mcdDot
+= '"' + i
.parent
+ '":name -- "' + c
+ '":name [dir="back",arrowtail="vee",';
368 mcdDot
+= 'style="dashed"];\n';
372 if (mcdStyle
== "compact")
373 mcdDot
+= 'node [shape=rectangle, style=rounded];\n';
374 let assoceCounter
= 0;
375 _
.shuffle(this.associations
).forEach( a
=> {
376 let name
= a
.name
|| "_assoce" + assoceCounter
++;
377 if (mcdStyle
== "bubble")
379 mcdDot
+= '"' + name
+ '" [shape="diamond", style="filled", color="lightgrey", label="' + name
+ '"';
381 mcdDot
+= ', peripheries=2';
385 a
.attributes
.forEach( attr
=> {
386 let label
= (attr
.isKey
? '#' : '') + attr
.name
;
387 mcdDot
+= '"' + name
+ '_' + attr
.name
+ '" [shape=ellipse, label="' + label
+ '"];\n';
388 let attrName
= name
+ '_' + attr
.name
;
389 if (Math
.random() < 0.5)
390 mcdDot
+= '"' + attrName
+ '" -- "' + name
+ '";\n';
392 mcdDot
+= '"' + name
+ '" -- "' + attrName
+ '";\n';
398 let label
= '<' + name
+ '>';
401 a
.attributes
.forEach( attr
=> {
402 let attrLabel
= (attr
.isKey
? '#' : '') + attr
.name
;
403 label
+= '\\n' + attrLabel
;
406 mcdDot
+= '"' + name
+ '" [color="lightgrey", label="' + label
+ '"';
408 mcdDot
+= ', peripheries=2';
411 _
.shuffle(a
.entities
).forEach( e
=> {
412 if (Math
.random() < 0.5)
413 mcdDot
+= '"' + e
.name
+ '":name -- "' + name
+ '"';
415 mcdDot
+= '"' + name
+ '" -- "' + e
.name
+ '":name';
416 mcdDot
+= '[label="' + ErDiags
.CARDINAL(e
.card
) + '"];\n';
420 //console.log(mcdDot);
421 ErDiags
.AjaxGet(mcdDot
, graphSvg
=> {
422 this.mcdGraph
= graphSvg
;
423 element
.innerHTML
= graphSvg
;
427 // "Modèle logique des données", from MCD without anomalies
428 // TODO: this one should draw links from foreign keys to keys (port=... in <TD>)
431 let element
= document
.getElementById(id
);
432 if (this.mldGraph
.length
> 0)
434 element
.innerHTML
= this.mcdGraph
;
437 // Build dot graph input (assuming foreign keys not already present...)
438 let mldDot
= 'graph {\n';
439 mldDot
+= 'rankdir="LR";\n';
440 mldDot
+= 'node [shape=plaintext];\n';
442 _
.shuffle(Object
.keys(this.tables
)).forEach( name
=> {
443 mldDot
+= '"' + name
+ '" [label=<<table BORDER="1" ALIGN="LEFT" CELLPADDING="5" CELLSPACING="0">\n';
444 mldDot
+= '<tr><td BGCOLOR="#ae7d4e" BORDER="0"><font COLOR="#FFFFFF">' + name
+ '</font></td></tr>\n';
445 this.tables
[name
].forEach( f
=> {
446 let label
= (f
.isKey
? '<u>' : '') + (!!f
.ref
? '#' : '') + f
.name
+ (f
.isKey
? '</u>' : '');
447 mldDot
+= '<tr><td port="' + f
.name
+ '"' + ' BGCOLOR="#FFFFFF" BORDER="0" ALIGN="LEFT"><font COLOR="#000000" >' + label
+ '</font></td></tr>\n';
450 // Need to find a key attribute in reference entity (the first...)
452 for (let field
of this.tables
[f
.ref
])
456 keyInRef
= field
.name
;
460 if (Math
.random() < 0.5)
461 links
+= '"' + f
.ref
+ '":"' + keyInRef
+ '" -- "' + name
+'":"'+f
.name
+ '" [dir="forward",arrowhead="dot"';
463 links
+= '"'+name
+'":"'+f
.name
+'" -- "' + f
.ref
+ '":"' + keyInRef
+ '" [dir="back",arrowtail="dot"';
467 mldDot
+= '</table>>];\n';
469 mldDot
+= links
+ '\n';
471 //console.log(mldDot);
472 ErDiags
.AjaxGet(mldDot
, graphSvg
=> {
473 this.mldGraph
= graphSvg
;
474 element
.innerHTML
= graphSvg
;
480 let element
= document
.getElementById(id
);
481 if (this.sqlText
.length
> 0)
483 element
.innerHTML
= this.sqlText
;
487 Object
.keys(this.tables
).forEach( name
=> {
488 sqlText
+= "CREATE TABLE " + name
+ " (\n";
490 this.tables
[name
].forEach( f
=> {
491 let type
= f
.type
|| (f
.isKey
? "INTEGER" : "TEXT");
492 sqlText
+= "\t" + f
.name
+ " " + type
+ " " + (f
.qualifiers
|| "") + ",\n";
494 key
+= (key
.length
>0 ? "," : "") + f
.name
;
496 sqlText
+= "\tPRIMARY KEY (" + key
+ ")\n";
499 //console.log(sqlText);
500 this.sqlText
= sqlText
;
501 element
.innerHTML
= "<pre><code>" + sqlText
+ "</code></pre>";