aboutsummaryrefslogtreecommitdiff
path: root/src/index.js
blob: 729db76e6672d0ef2880948198afaf0400e91560 (plain)
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
/**
 * A parsed wardley map.
 * @typedef {Object} Map
 * @property {Component[]} components - List of components
 * @property {Dependency[]} dependencies - List of dependencies
 * @property {Note[]} notes - List of notes
 * @property {Stage[]} stages - List of stages
 * @property {Group[]} groups - List of groups
 * @property {Inertia[]} inertias - List of inertias
 * @property {Evolution[]} evolutions - List of evolutions
 */

/**
 * Any of the potential shapes in a component.
 * @typedef {"x"|"square"|"triangle"|"circle"} Shape
 */

/**
 * A component in the map.
 * @typedef {Object} Component
 * @property {string} label - Component label
 * @property {[number, number]} coordinates - X and Y coordinates
 * @property {Shape} shape - Shape of the component
 */

/**
 * A dependency between two components.
 * @typedef {Object} Dependency
 * @property {string} from - Source component label
 * @property {string} to - Target component label
 * @property {boolean} isDirected - Whether the dependency is directed (->) or undirected (--)
 */

/**
 * A note.
 * @typedef {Object} Note
 * @property {[number, number]} coordinates - X and Y coordinates
 * @property {string} text - Note text content
 */

/**
 * An override for the width of an evolution stage.
 * @typedef {Object} Stage
 * @property {string} stage - Stage number (i, ii, iii, iv)
 * @property {number} value - Stage value
 */

/**
 * A group of components.
 * @typedef {Object} Group
 * @property {string[]} components - Array of component labels in the group
 */

/**
 * Inertia associated with a component.
 * @typedef {Object} Inertia
 * @property {string} component - Component label with inertia
 */

/**
 * Evolution associated with a component.
 * @typedef {Object} Evolution
 * @property {string} component - Component label
 * @property {number} value - Evolution value
 */

/* CONSTANTS ******************************************************************/

const kLineSplitter = /\r\n|\r|\n/;

/* PUBLIC API *****************************************************************/

/**
 * wmap format Wardley Map parser.
 * @param {string} source - The wmap source code to parse
 * @returns {Map} - Parsed map with separate arrays for each entity type
 */
export function parse(source) {
    const components = [];
    const dependencies = [];
    const notes = [];
    const stages = [];
    const groups = [];
    const inertias = [];
    const evolutions = [];
    const lines = source.split(kLineSplitter);

    for (const rawLine of lines) {
        const line = rawLine.trim();
        if (!line) continue;

        const entity = parseLine(line);
        if (!entity) continue;

        switch (entity.type) {
            case "component":
                components.push({
                    label: entity.label,
                    coordinates: entity.coordinates,
                    shape: entity.shape,
                });
                break;
            case "dependency":
                dependencies.push({
                    from: entity.from,
                    to: entity.to,
                    isDirected: entity.isDirected,
                });
                break;
            case "note":
                notes.push({
                    coordinates: entity.coordinates,
                    text: entity.text,
                });
                break;
            case "stage":
                stages.push({
                    stage: entity.stage,
                    value: entity.value,
                });
                break;
            case "group":
                groups.push({
                    components: entity.components,
                });
                break;
            case "inertia":
                inertias.push({
                    component: entity.component,
                });
                break;
            case "evolution":
                evolutions.push({
                    component: entity.component,
                    value: entity.value,
                });
                break;
        }
    }

    return {
        components,
        dependencies,
        notes,
        stages,
        groups,
        inertias,
        evolutions,
    };
}

/* PARSERS ********************************************************************/

/**
 * Routes a line to either the keyword parser, or the component / dependency
 * parser.
 */
function parseLine(line) {
    const length = line.length;
    let i = 0;

    // Skip leading whitespace
    while (i < length && isWhitespace(line[i])) i++;
    if (i >= length) return null;

    if (line[i] === "[") {
        return parseKeywordEntity(line, i, length);
    }

    return parseComponentOrDependency(line, length);
}

/**
 * Parse any entity that start with keywords in brackets: [Stage], [Note],
 * [Group], [Inertia], [Evolution].
 */
function parseKeywordEntity(line, start, length) {
    // Read after [...
    let i = start + 1;
    const keywordStart = i;

    // ...but before ]
    while (i < length && line[i] !== "]") i++;
    if (i >= length) return null;

    const keyword = line.substring(keywordStart, i).trim().toLowerCase();

    // Skip ] and whitespace
    i++;
    while (i < length && isWhitespace(line[i])) i++;

    // Note: [Note] (x, y) text
    if (keyword === "note") {
        // Expect '('
        if (i >= length || line[i] !== "(") return null;
        i++;

        // Read x
        while (i < length && isWhitespace(line[i])) i++;
        const xStart = i;
        while (i < length && isDigitOrDot(line[i])) i++;
        if (i === xStart) return null;
        const x = parseFloat(line.substring(xStart, i));

        // Expect ','
        while (i < length && isWhitespace(line[i])) i++;
        if (i >= length || line[i] !== ",") return null;
        i++;

        // Read y
        while (i < length && isWhitespace(line[i])) i++;
        const yStart = i;
        while (i < length && isDigitOrDot(line[i])) i++;
        if (i === yStart) return null;
        const y = parseFloat(line.substring(yStart, i));

        // Expect ')'
        while (i < length && isWhitespace(line[i])) i++;
        if (i >= length || line[i] !== ")") return null;
        i++;

        // Read text
        while (i < length && isWhitespace(line[i])) i++;
        const text = line.substring(i).trim();

        return {
            type: "note",
            coordinates: [x, y],
            text,
        };
    }

    // Group: [Group] label1, label2, ...
    if (keyword === "group") {
        const components = line
            .substring(i)
            .split(",")
            .map((v) => v.trim())
            .filter((v) => v);
        return components.length > 0 ? { type: "group", components } : null;
    }

    // Inertia: [Inertia] label
    if (keyword === "inertia") {
        const component = line.substring(i).trim();
        return component ? { type: "inertia", component } : null;
    }

    // Evolution: [Evolution] label +/- number
    if (keyword === "evolution") {
        let indexOfSign = -1;
        let signCharacter = null;

        // Find the sign
        for (let j = i; j < length; j++) {
            if (line[j] === "+" || line[j] === "-") {
                // Make sure it's not part of a dependency arrow
                if (
                    j + 1 < length &&
                    (line[j + 1] === ">" || line[j + 1] === "-")
                )
                    continue;
                indexOfSign = j;
                signCharacter = line[j];
                break;
            }
        }

        if (indexOfSign === -1 || indexOfSign === i) return null;

        const component = line.substring(i, indexOfSign).trim();
        if (!component) return null;

        // Read number after sign
        let indexOfNumber = indexOfSign + 1;
        while (indexOfNumber < length && isWhitespace(line[indexOfNumber]))
            indexOfNumber++;
        const startOfNumber = indexOfNumber;
        while (indexOfNumber < length && isDigitOrDot(line[indexOfNumber]))
            indexOfNumber++;
        if (indexOfNumber === startOfNumber) return null;

        return {
            type: "evolution",
            component,
            value:
                (signCharacter === "+" ? 1 : -1) *
                parseFloat(line.substring(startOfNumber, indexOfNumber)),
        };
    }

    // Stage: [I|II|III|IV] stage
    // Least common. Max 4 in a file.
    if (
        keyword === "i" ||
        keyword === "ii" ||
        keyword === "iii" ||
        keyword === "iv"
    ) {
        const startOfNumber = i;
        while (i < length && isDigitOrDot(line[i])) i++;
        if (i > startOfNumber) {
            return {
                type: "stage",
                stage: keyword,
                value: parseFloat(line.substring(startOfNumber, i)),
            };
        }
    }

    return null;
}

/**
 * Parse component or dependency
 */
function parseComponentOrDependency(line, length) {
    const indexOfArrow = line.indexOf("->");
    const indexOfDash = line.indexOf("--");
    const indexOfParenthesis = line.indexOf("(");

    // Directed dependency
    if (
        indexOfArrow !== -1 &&
        (indexOfParenthesis === -1 || indexOfArrow < indexOfParenthesis)
    ) {
        const from = line.substring(0, indexOfArrow).trim();
        const to = line.substring(indexOfArrow + 2).trim();
        if (from && to) {
            return {
                type: "dependency",
                from,
                to,
                isDirected: true,
            };
        }
        return null;
    }

    // Undirected dependency
    if (
        indexOfDash !== -1 &&
        (indexOfParenthesis === -1 || indexOfDash < indexOfParenthesis)
    ) {
        const from = line.substring(0, indexOfDash).trim();
        const to = line.substring(indexOfDash + 2).trim();
        if (from && to) {
            return {
                type: "dependency",
                from,
                to,
                isDirected: false,
            };
        }
        return null;
    }

    // Component
    if (indexOfParenthesis > 0) {
        return parseComponent(line, indexOfParenthesis, length);
    }

    return null;
}

/**
 * Parse a component.
 */
function parseComponent(line, indexOfParenthesis, length) {
    const label = line.substring(0, indexOfParenthesis).trim();
    if (!label) return null;

    let i = indexOfParenthesis + 1;

    // Read x
    while (i < length && isWhitespace(line[i])) i++;
    const xStart = i;
    while (i < length && isDigitOrDot(line[i])) i++;
    if (i === xStart) return null;
    const x = parseFloat(line.substring(xStart, i));

    // Expect ','
    while (i < length && isWhitespace(line[i])) i++;
    if (i >= length || line[i] !== ",") return null;
    i++;

    // Read y
    while (i < length && isWhitespace(line[i])) i++;
    const yStart = i;
    while (i < length && isDigitOrDot(line[i])) i++;
    if (i === yStart) return null;
    const y = parseFloat(line.substring(yStart, i));

    // Expect ')'
    while (i < length && isWhitespace(line[i])) i++;
    if (i >= length || line[i] !== ")") return null;
    i++;

    // Optional shape: [shape]
    let shape = "circle";
    while (i < length && isWhitespace(line[i])) i++;
    if (i < length && line[i] === "[") {
        i++;
        const shapeStart = i;
        while (i < length && line[i] !== "]") i++;
        if (i > shapeStart && i < length) {
            shape = line.substring(shapeStart, i).trim().toLowerCase();
        }
    }

    return {
        type: "component",
        label,
        coordinates: [x, y],
        shape,
    };
}

/* HELPER FUNCTIONS ***********************************************************/

/**
 * Helper: Check if character is whitespace
 */
function isWhitespace(character) {
    return character === " " || character === "\t";
}

/**
 * Helper: Check if character is a digit or dot
 */
function isDigitOrDot(character) {
    return (character >= "0" && character <= "9") || character === ".";
}