This repository was archived by the owner on Feb 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgenerate_ts_enums.js
108 lines (98 loc) · 2.6 KB
/
generate_ts_enums.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
import { createInterface } from 'readline';
import { stdin } from 'process';
const includeList = [
'DocumentType',
'SelectionType',
'CallbackType',
'SetTextSelectionType',
'SetGraphicSelectionType',
];
function stripLokPrefix(value) {
const enumNameMatch = value.match(/\s*LOK_[^_]+_(\w+)/);
if (enumNameMatch) {
return enumNameMatch[1];
}
}
function stripEnumNamePrefix(name) {
return name.replace('LibreOfficeKit', '');
}
function processEnum(enumName, enumValues) {
if (!includeList.includes(enumName)) {
return;
}
console.log(`export enum ${enumName} {`);
for (const value of enumValues) {
if (value.comment) {
console.log(value.comment);
}
if ('value' in value) {
console.log(` ${stripLokPrefix(value.name)} = ${value.value},`);
} else {
console.log(` ${stripLokPrefix(value.name)},`);
}
}
console.log('};');
}
const rl = createInterface({
input: stdin,
});
let insideEnum = false;
let nextLineIsName = false;
let insideBlockComment = false;
let comment = null;
let enumValues = [];
let enumName = null;
rl.on('line', (line) => {
line = line.trim();
// Handle block comments
if (line.includes('/*')) {
insideBlockComment = true;
}
if (insideBlockComment) {
if (line.includes('*/')) {
insideBlockComment = false;
}
if (!comment) comment = '';
comment += ` ${line}\n`;
return; // Skip processing lines inside block comments
}
// Skip single-line comments
if (line.startsWith('//')) {
return;
}
// Detect the start of an enum
if (/typedef enum/.test(line)) {
insideEnum = true;
return;
}
if (insideEnum) {
if (line.startsWith('}')) {
nextLineIsName = true;
return;
} else if (nextLineIsName) {
// Extract the enum name and process the collected enum values
const enumNameMatch = line.match(/\s*(\w+)[^;]*;/);
if (enumNameMatch) {
enumName = stripEnumNamePrefix(enumNameMatch[1]);
processEnum(enumName, enumValues);
insideEnum = false; // Reset for the next enum
enumValues = []; // Clear values for the next enum
}
nextLineIsName = false;
} else {
// Collect enum values, accounting for multiple values per line
const nameMatch = line.match(/([^\s=;,{}]+)/);
const valueMatch = line.match(/=\s*([^;,{}]+)/);
if (valueMatch && nameMatch) {
enumValues.push({
name: nameMatch[1],
value: valueMatch[1],
comment,
});
} else if (nameMatch) {
enumValues.push({ name: nameMatch[1], comment });
}
}
comment = null;
}
});