-
Notifications
You must be signed in to change notification settings - Fork 10
/
parser.js
400 lines (355 loc) · 11.4 KB
/
parser.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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
class ParseError extends Error {
constructor (line, ...params) {
super(...params)
if (Error.captureStackTrace) {
Error.captureStackTrace(this, ParseError)
}
this.message = 'Line ' + line + ': ' + this.message
this.name = 'ParseError'
this.date = new Date()
}
}
class State {
constructor () {
this.state = 'ROOT'
this.lineNumber = 0
}
setLine (lineNumber) {
this.lineNumber = lineNumber
}
// --- CHECKS ---
_check (expectedState) {
if (this.state !== expectedState) {
throw new ParseError(this.lineNumber, "Expecting internal state '" + expectedState + "' it was '" + this.state + "'.")
}
}
_notExecuted (state, property) {
if (this.context && Object.prototype.hasOwnProperty.call(this.context, property)) {
throw new ParseError(this.lineNumber, "State was already executed: '" + state + "'.")
}
}
// --- CLASS ---
startClass (name) {
this._check('ROOT')
this._notExecuted('ROOT', 'name')
this.context = { name: name, key: name }
this.relations = []
this.relates = new Set()
this.state = 'CLASS'
this.className = name
}
addClassRelation (relatedClass, relation, inverse) {
this._check('CLASS')
this.relates.add(relatedClass)
if (inverse) {
this.relations.push({ to: this.context.name, from: relatedClass, relationship: relation })
} else {
this.relations.push({ from: this.context.name, to: relatedClass, relationship: relation })
}
}
stopClass () {
this._check('CLASS')
this.state = 'ROOT'
return { context: this.context, relations: this.relations, relates: this.relates }
}
// --- ATTR ---
startAttrs () {
this._check('CLASS')
this._notExecuted('ATTR', 'properties')
this.state = 'ATTR'
this.context.properties = []
}
addAttr (attr) {
this._check('ATTR')
this.context.properties.push(attr)
}
stopAttr () {
this._check('ATTR')
this.state = 'CLASS'
}
// --- METHODS ---
startMethods () {
this._check('CLASS')
this._notExecuted('METHOD', 'methods')
this.state = 'METHOD'
this.context.methods = []
}
addMethod (method) {
this._check('METHOD')
this.context.methods.push(method)
}
stopMethods () {
this._check('METHOD')
this.state = 'CLASS'
}
}
// Check current state on state
['Root', 'Class', 'Method', 'Attr'].forEach((method) => {
State.prototype['is' + method] = function () {
return this.state === method.toUpperCase()
}
})
class Extractor {
constructor () {
this.lineNumber = 0
this.conv = { '-': 'private', '+': 'public', '#': 'protected' }
// name and if it relation is inversed (from <-> to)
this.relations = {
extends: ['generalization', false],
implements: ['generalizationInterface', false],
association: ['association', false],
composes: ['composition', true],
aggregates: ['aggregation', true],
directionalAssociation: ['directionalAssociation', false]
}
this.modifier = { static: 'class' }
}
setLine (lineNumber) {
this.lineNumber = lineNumber
}
_convertVisibility (vis) {
if (!Object.prototype.hasOwnProperty.call(this.conv, vis)) {
throw new ParseError(this.lineNumber, 'Unknown visibility: ' + vis)
}
return this.conv[vis]
}
_prepareRelation (relation, types) {
if (!Object.prototype.hasOwnProperty.call(this.relations, relation)) {
throw new ParseError(this.lineNumber, 'Unknown relation: ' + relation)
}
return { relation: this.relations[relation][0], types: types, inverse: this.relations[relation][1] }
}
removeComment (line) {
return line.split('//')[0].trim()
}
extractRelation (line) {
const relation = line.split(' ')[0].trim()
const types = line.substring(relation.length + 1, line.length).split(',').map(x => x.trim())
return this._prepareRelation(relation, types)
}
_correctModifier (line) {
const base = line.split(':').map(x => x.trim())
const arr = base[0].split(/\s+/).map(x => x.trim())
if (arr[2]) { // has modifier
if (arr[1] in this.modifier) {
arr[1] = this.modifier[arr[1]]
} else {
throw new ParseError(this.lineNumber, 'Unknown attr modifier ' + line)
}
} else {
arr.splice(1, 0, '') // no modifier
}
return [...arr, base[1]]
}
extractAttr (line) {
if (line.indexOf('(') !== -1 || line.indexOf(')') !== -1) {
throw new ParseError(this.lineNumber, 'Unknown attr format ' + line)
}
const split = this._correctModifier(line)
if (split.length !== 4) {
throw new ParseError(this.lineNumber, 'Unknown attr format ' + line)
}
const visibility = this._convertVisibility(split[0])
const scope = split[1]
const name = split[2]
const type = split[3]
if (!name || !type) {
throw new ParseError(this.lineNumber, 'Unknown attr format ' + line)
}
return { name: name, scope: scope, type: type, visibility: visibility }
}
_semanticAnalysisGenericType (stringGenericType) {
let countLeftArrow = 0
let countRightArrow = 0
for (const stringGenericTypeElement of stringGenericType) {
if (stringGenericTypeElement === '<') {
countLeftArrow++
}
if (stringGenericTypeElement === '>') {
countRightArrow++
}
}
if (countLeftArrow === (countRightArrow + 1)) {
throw new ParseError(this.lineNumber, "missing ending '>'")
}
if (countRightArrow > (countLeftArrow + 2)) {
throw new ParseError(this.lineNumber, 'unbalanced or strange char (">")')
}
if (countRightArrow > countLeftArrow) {
throw new ParseError(this.lineNumber, 'unbalanced or strange char (">")')
}
}
_isGenericType (string, index) {
let countLeftArrow = 0
let countRightArrow = 0
let stringGenericType = ''
for (let i = index; i < string.length; i++) {
stringGenericType += string[i]
if (string[i] === '<') {
countLeftArrow++
}
let indexHook = -3
if (string[i] === '>') {
countRightArrow++
if (string[i + 1] === '>') {
for (let j = 1; j < countLeftArrow + 3; j++) {
if (string[i + j] === '>') {
stringGenericType += string[i + j]
indexHook += j
} else {
this._semanticAnalysisGenericType(stringGenericType)
return {
stringGenericType,
index: i + indexHook
}
}
}
}
}
if (countLeftArrow === 1 && countRightArrow === 1) {
return {
stringGenericType,
index: i
}
}
}
}
_parseCommaToBar (params) {
let refactorString = ''
let leftArrow = 0
for (let i = 0; i < params.length; i++) {
if (!leftArrow) {
if (params[i] === ',') {
refactorString += '|'
} else {
if (params[i] !== '<') {
refactorString += params[i]
}
}
}
if (params[i] === '<') {
const objectGenericType = this._isGenericType(params, i)
refactorString += objectGenericType.stringGenericType
i = objectGenericType.index + 1
leftArrow = 1
}
if (leftArrow) {
if (params[i] === ',') {
refactorString += '|'
} else {
if (params[i] !== undefined) {
refactorString += params[i]
}
}
}
}
return refactorString
}
extractParameters (params) {
const resultParams = []
for (const param of this._parseCommaToBar(params).split('|').map(x => x.trim())) {
const aval = param.split(':').map(x => x.trim())
if (aval.length !== 2) {
throw new ParseError(this.lineNumber, 'Unknown param format ' + params)
}
const name = aval[0]
const type = aval[1]
if (!name || !type) {
throw new ParseError(this.lineNumber, 'Unknown param format ' + params)
}
resultParams.push({ name: name, type: type })
}
return resultParams
}
_getReturnType (state, signature, result, line) {
// Not a constructor
const methodName = signature.substring(0, signature.indexOf('(')).trim()
if (!state.context.name.trim().startsWith(methodName)) {
// has return type
const signSplit = signature.substring(signature.indexOf(')')).split(':').map(x => x.trim())
if (signSplit.length < 2 || !signSplit[1]) {
throw new ParseError(this.lineNumber, 'Missing or strange return type ' + line)
}
result.type = signSplit[1].trim()
} else {
if (signature.substring(signature.indexOf(')')).indexOf(':') !== -1) {
throw new ParseError(this.lineNumber, 'Constructor should not have return type ' + line)
}
}
}
extractMethod (state, line) {
const visibilityStr = line.split(' ', 1)[0]
const result = { visibility: this._convertVisibility(visibilityStr.trim()) }
const modifier = line.split(' ', 2)[1]
if (modifier in this.modifier) { result.scope = this.modifier[modifier] }
const signature = line.substring(visibilityStr.length + (!result.scope ? 0 : 7)).trim()
result.name = signature.substring(0, signature.indexOf('('))
if (!result.name) {
throw new ParseError(this.lineNumber, 'Unknown method signature ' + line)
}
if (signature.indexOf('(') + 1 < signature.indexOf(')')) {
const paramsStr = signature.substring(signature.indexOf('(') + 1, signature.indexOf(')'))
result.parameters = this.extractParameters(paramsStr)
} else if (signature.indexOf('(') > signature.indexOf(')')) {
throw new ParseError(this.lineNumber, 'Unknown method signature ' + line)
}
this._getReturnType(state, signature, result, line)
return result
}
}
class Parser {
_changeState (lineNumber, state, classes) {
if (state.isClass()) {
state.startAttrs()
} else if (state.isAttr()) {
state.stopAttr()
state.startMethods()
} else if (state.isMethod()) {
state.stopMethods()
classes.push(state.stopClass())
return new State()
} else {
throw new ParseError('Line ' + lineNumber + ': was expecting a class')
}
return state
}
_extractData (state, extractor, line) {
if (state.isRoot()) {
state.startClass(line)
} else if (state.isClass()) {
const relationships = extractor.extractRelation(line)
for (const class_ of relationships.types) {
state.addClassRelation(class_, relationships.relation, relationships.inverse)
}
} else if (state.isAttr()) {
state.addAttr({ className: state.className, ...extractor.extractAttr(line) })
} else if (state.isMethod()) {
state.addMethod({ className: state.className, ...extractor.extractMethod(state, line) })
}
}
parse (data) {
let lineNumber = 0
let state = new State()
const extractor = new Extractor()
const classes = []
const arrayOfLines = data.split(/\r?\n/)
if (!arrayOfLines || !data.match(/[^\r\n]+/g)) {
throw new ParseError(0, 'No text found.')
}
for (const line of arrayOfLines.map(x => extractor.removeComment(x.trim()))) {
extractor.setLine(++lineNumber)
state.setLine(lineNumber)
if (line.startsWith('//') || !line) {
continue
}
if (line.startsWith('---')) {
state = this._changeState(lineNumber, state, classes)
continue
}
this._extractData(state, extractor, line)
}
state._check('ROOT')
return classes
}
}
export { Parser }