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
|
/**
* A parsed wardley map.
* @typedef {Object} Map
* @property {Entity[]} entities - The list of parsed entities
*/
/**
* Any of the potential entities in the map.
* @typedef {Component|Dependency|Note|Stage|Group|Inertia|Evolution} Entity
*/
/**
* A component in the map.
* @typedef {Object} Component
* @property {'component'} type - Entity type
* @property {string} label - Component label
* @property {[number, number]} coordinates - X and Y coordinates
* @property {string|null} shape - Shape type (x, square, triangle, circle) or null
*/
/**
* A dependency between two components.
* @typedef {Object} Dependency
* @property {'dependency'} type - Entity type
* @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 {'note'} type - Entity type
* @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 {'stage'} type - Entity type
* @property {string} number - Stage number (i, ii, iii, iv)
* @property {number} value - Stage value
*/
/**
* A group of components.
* @typedef {Object} Group
* @property {'group'} type - Entity type
* @property {string[]} vertices - Array of component labels in the group
*/
/**
* Inertia associated with a component.
* @typedef {Object} Inertia
* @property {'inertia'} type - Entity type
* @property {string} vertex - Component label with inertia
*/
/**
* Evolution associated with a component.
* @typedef {Object} Evolution
* @property {'evolution'} type - Entity type
* @property {string} vertex - Component label
* @property {boolean} isPositive - Whether evolution is positive (+) or negative (-)
* @property {number} value - Evolution value
*/
/**
* 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 === ".";
}
/**
* wmap format Wardley Map parser.
* @param {string} source - The wmap source code to parse
* @returns {Map} - Parsed map with entities
*/
export function parse(source) {
const entities = [];
const lines = source.split(/\r\n|\r|\n/);
for (const rawLine of lines) {
const line = rawLine.trim();
if (!line) continue;
const entity = parseLine(line);
if (entity) {
entities.push(entity);
}
}
return { entities };
}
/**
* Parse a line
*/
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 entities that start with keywords in brackets: [Stage], [Note], [Group], [Inertia], [Evolution]
*/
function parseKeywordEntity(line, start, length) {
let i = start + 1; // skip '['
const keywordStart = i;
// Read until ']'
while (i < length && line[i] !== "]") i++;
if (i >= length) return null;
const keyword = line.substring(keywordStart, i).trim().toLowerCase();
i++; // skip ']'
// Skip whitespace after ']'
while (i < length && isWhitespace(line[i])) i++;
// Stage: [I|II|III|IV] number
if (
keyword === "i" ||
keyword === "ii" ||
keyword === "iii" ||
keyword === "iv"
) {
const numStart = i;
while (i < length && isDigitOrDot(line[i])) i++;
if (i > numStart) {
return {
type: "stage",
number: keyword,
value: parseFloat(line.substring(numStart, i)),
};
}
return null;
}
// 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 vertices = line
.substring(i)
.split(",")
.map(v => v.trim())
.filter(v => v);
return vertices.length > 0 ? { type: "group", vertices } : null;
}
// Inertia: [Inertia] label
if (keyword === "inertia") {
const vertex = line.substring(i).trim();
return vertex ? { type: "inertia", vertex } : 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 vertex = line.substring(i, indexOfSign).trim();
if (!vertex) return null;
// Read number after sign
let indexOfNumber = indexOfSign + 1;
while (indexOfNumber < length && isWhitespace(line[indexOfNumber])) indexOfNumber++;
const numStart = indexOfNumber;
while (indexOfNumber < length && isDigitOrDot(line[indexOfNumber])) indexOfNumber++;
if (indexOfNumber === numStart) return null;
return {
type: "evolution",
vertex,
isPositive: signCharacter === "+",
value: parseFloat(line.substring(numStart, indexOfNumber)),
};
}
return null;
}
/**
* Parse component or dependency
*/
function parseComponentOrDependency(line, length) {
// Use indexOf to quickly find potential dependency arrows and parentheses
const indexOfArrow = line.indexOf("->");
const indexOfDash = line.indexOf("--");
const indexOfParenthesis = line.indexOf("(");
// Check for 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;
}
// Check for 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;
}
// Check for component (opening parenthesis)
if (indexOfParenthesis > 0) {
return parseComponent(line, indexOfParenthesis, length);
}
return null;
}
/**
* Parse component starting from the opening parenthesis
*/
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 = null;
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,
};
}
|