-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader_parser.js
executable file
·1543 lines (1235 loc) · 43.2 KB
/
header_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
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env node
const path = require('node:path');
const child_process = require('node:child_process');
const fs = require('node:fs').promises;
const util = require('node:util');
const process = require('node:process');
const { program } = require('commander');
const includePath = (p) => `${p}/include`;
const ancientIncludePath = (p) => `${p}/src/git`;
const legacyIncludePath = (p) => `${p}/src/git2`;
const standardIncludePath = (p) => `${includePath(p)}/git2`;
const systemIncludePath = (p) => `${includePath(p)}/git2/sys`;
const fileIgnoreList = [ 'stdint.h', 'inttypes.h' ];
const apiIgnoreList = [ 'GIT_BEGIN_DECL', 'GIT_END_DECL', 'GIT_WIN32' ];
// Some older versions of libgit2 need some help with includes
const defaultIncludes = [
'checkout.h', 'common.h', 'diff.h', 'email.h', 'oidarray.h', 'merge.h', 'remote.h', 'types.h'
];
// We're unable to fully map `types.h` defined types into groups;
// provide some help.
const groupMap = {
'filemode': 'tree',
'treebuilder': 'tree',
'note': 'notes',
'packbuilder': 'pack',
'reference': 'refs',
'push': 'remote' };
async function headerPaths(p) {
const possibleIncludePaths = [
ancientIncludePath(p),
legacyIncludePath(p),
standardIncludePath(p),
systemIncludePath(p)
];
const includePaths = [ ];
const paths = [ ];
for (const possibleIncludePath of possibleIncludePaths) {
try {
await fs.stat(possibleIncludePath);
includePaths.push(possibleIncludePath);
}
catch (e) {
if (e?.code !== 'ENOENT') {
throw e;
}
}
}
if (!includePaths.length) {
throw new Error(`no include paths for ${p}`);
}
for (const fullPath of includePaths) {
paths.push(...(await fs.readdir(fullPath)).
filter((filename) => filename.endsWith('.h')).
filter((filename) => !fileIgnoreList.includes(filename)).
map((filename) => `${fullPath}/${filename}`));
}
return paths;
}
function trimPath(basePath, headerPath) {
const possibleIncludePaths = [
ancientIncludePath(basePath),
legacyIncludePath(basePath),
standardIncludePath(basePath),
systemIncludePath(basePath)
];
for (const possibleIncludePath of possibleIncludePaths) {
if (headerPath.startsWith(possibleIncludePath + '/')) {
return headerPath.substr(possibleIncludePath.length + 1);
}
}
throw new Error("header path is not beneath include root");
}
function parseFileAst(path, ast) {
let currentFile = undefined;
const fileData = [ ];
for (const node of ast.inner) {
if (node.loc?.file && currentFile != node.loc.file) {
currentFile = node.loc.file;
} else if (node.loc?.spellingLoc?.file && currentFile != node.loc.spellingLoc.file) {
currentFile = node.loc.spellingLoc.file;
}
if (currentFile != path) {
continue;
}
fileData.push(node);
}
return fileData;
}
function includeBase(path) {
const segments = path.split('/');
while (segments.length > 1) {
if (segments[segments.length - 1] === 'git2' ||
segments[segments.length - 1] === 'git') {
segments.pop();
return segments.join('/');
}
segments.pop();
}
throw new Error(`could not resolve include base for ${path}`);
}
function readAst(path, options) {
return new Promise((resolve, reject) => {
let errorMessage = '';
const chunks = [ ];
const processArgs = [ path, '-Xclang', '-ast-dump=json', `-I${includeBase(path)}` ];
if (options?.deprecateHard) {
processArgs.push(`-DGIT_DEPRECATE_HARD`);
}
if (options?.includeFiles) {
for (const file of options.includeFiles) {
processArgs.push(`-include`);
processArgs.push(file)
}
}
const process = child_process.spawn('clang', processArgs);
process.stderr.on('data', (message) => {
errorMessage += message;
});
process.stdout.on('data', (chunk) => {
chunks.push(chunk);
});
process.on('close', (code) => {
if (code != 0 && options.strict) {
reject(new Error(`clang exit code ${code}: ${errorMessage}`));
}
else if (code != 0) {
resolve([ ]);
}
else {
const ast = JSON.parse(Buffer.concat(chunks).toString());
resolve(parseFileAst(path, ast));
}
});
process.on('error', function (err) {
reject(err);
});
});
}
async function readFile(path) {
const buf = await fs.readFile(path);
return buf.toString();
}
function ensure(message, test) {
if (!test) {
throw new Error(message);
}
}
function ensureDefined(name, value) {
if (!value) {
throw new Error(`could not find ${name} for declaration`);
}
return value;
}
function groupifyId(location, id) {
if (!id) {
throw new Error(`could not find id in declaration`);
}
if (!location || !location.file) {
throw new Error(`unspecified location`);
}
return `${location.file}-${id}`;
}
function blockCommentText(block) {
ensure('block does not have a single paragraph element', block.inner.length === 1 && block.inner[0].kind === 'ParagraphComment');
return commentText(block.inner[0]);
}
function richBlockCommentText(block) {
ensure('block does not have a single paragraph element', block.inner.length === 1 && block.inner[0].kind === 'ParagraphComment');
return richCommentText(block.inner[0]);
}
function paramCommentText(param) {
ensure('param does not have a single paragraph element', param.inner.length === 1 && param.inner[0].kind === 'ParagraphComment');
return richCommentText(param.inner[0]);
}
function appendCommentText(chunk) {
return chunk.startsWith(' ') ? "\n" + chunk : chunk;
}
function commentText(para) {
let text = '';
for (const comment of para.inner) {
// docbook allows backslash escaped text, and reports it differently.
// we restore the literal `\`.
if (comment.kind === 'InlineCommandComment') {
text += `\\${comment.name}`;
}
else if (comment.kind === 'TextComment') {
text += text ? "\n" + comment.text : comment.text;
} else {
throw new Error(`unknown paragraph comment element: ${comment.kind}`);
}
}
return text.trim();
}
function nextText(para, idx) {
if (!para.inner[idx + 1] || para.inner[idx + 1].kind !== 'TextComment') {
throw new Error("expected text comment");
}
return para.inner[idx + 1].text;
}
function inlineCommandData(data, command) {
ensure(`${command} information does not follow @${command}`, data?.kind === 'TextComment');
const result = data.text.match(/^(?:\[([^\]]+)\])? ((?:[a-zA-Z0-9\_]+)|`[a-zA-Z0-9\_\* ]+`)(.*)/);
ensure(`${command} data does not follow @${command}`, result);
const [ , attr, spec, remain ] = result;
return [ attr, spec.replace(/^`(.*)`$/, "$1"), remain ]
}
function richCommentText(para) {
let text = '';
let extendedType = undefined;
let subkind = undefined;
let versionMacro = undefined;
let initMacro = undefined;
let initFunction = undefined;
let lastComment = undefined;
for (let i = 0; i < para.inner?.length; i++) {
const comment = para.inner[i];
if (comment.kind === 'InlineCommandComment' &&
comment.name === 'type') {
const [ attr, data, remain ] = inlineCommandData(para.inner[++i], "type");
extendedType = { kind: attr, type: data };
text += remain;
}
else if (comment.kind === 'InlineCommandComment' &&
comment.name === 'flags') {
subkind = 'flags';
}
else if (comment.kind === 'InlineCommandComment' &&
comment.name === 'options') {
const [ attr, data, remain ] = inlineCommandData(para.inner[++i], "options");
if (attr === 'version') {
versionMacro = data;
}
else if (attr === 'init_macro') {
initMacro = data;
}
else if (attr === 'init_function') {
initFunction = data;
}
subkind = 'options';
text += remain;
}
// docbook allows backslash escaped text, and reports it differently.
// we restore the literal `\`.
else if (comment.kind === 'InlineCommandComment') {
text += `\\${comment.name}`;
}
else if (comment.kind === 'TextComment') {
// clang oddity: it breaks <things in brackets> into two
// comment blocks, assuming that the trailing > should be a
// blockquote newline sort of thing. unbreak them.
if (comment.text.startsWith('>') &&
lastComment &&
lastComment.loc.offset + lastComment.text.length === comment.loc.offset) {
text += comment.text;
} else {
text += text ? "\n" + comment.text : comment.text;
}
}
else if (comment.kind === 'HTMLStartTagComment' && comment.name === 'p') {
text += "\n";
}
else {
throw new Error(`unknown paragraph comment element: ${comment.kind}`);
}
lastComment = comment;
}
return {
text: text.trim(),
extendedType: extendedType,
subkind: subkind,
versionMacro: versionMacro,
initMacro: initMacro,
initFunction: initFunction
}
}
function join(arr, elem) {
if (arr) {
return [ ...arr, elem ];
}
return [ elem ];
}
function joinIfNotEmpty(arr, elem) {
if (!elem || elem === '') {
return arr;
}
if (arr) {
return [ ...arr, elem ];
}
return [ elem ];
}
function pushIfNotEmpty(arr, elem) {
if (elem && elem !== '') {
arr.push(elem);
}
}
function single(arr, fn, message) {
let result = undefined;
if (!arr) {
return undefined;
}
for (const match of arr.filter(fn)) {
if (result) {
throw new Error(`multiple matches in array for ${fn}${message ? ' (' + message + ')': ''}`);
}
result = match;
}
return result;
}
function updateLocation(location, decl) {
location.file = trimBase(decl.loc?.spellingLoc?.file || decl.loc?.file) || location.file;
location.line = decl.loc?.spellingLoc?.line || decl.loc?.line || location.line;
location.column = decl.loc?.spellingLoc?.col || decl.loc?.col || location.column;
return location;
}
async function readFileLocation(startLocation, endLocation) {
if (startLocation.file != endLocation.file) {
throw new Error("cannot read across files");
}
const data = await fs.readFile(startLocation.file, "utf8");
const lines = data.split(/\r?\n/).slice(startLocation.line - 1, endLocation.line);
lines[lines.length - 1] = lines[lines.length - 1].slice(0, endLocation.column);
lines[0] = lines[0].slice(startLocation.column - 1);
return lines
}
function formatLines(lines) {
let result = "";
let continuation = false;
for (const i in lines) {
if (!continuation) {
lines[i] = lines[i].trimStart();
}
continuation = lines[i].endsWith("\\");
if (continuation) {
lines[i] = lines[i].slice(0, -1);
} else {
lines[i] = lines[i].trimEnd();
}
result += lines[i];
}
if (continuation) {
throw new Error("unterminated literal continuation");
}
return result;
}
async function parseExternalRange(location, range) {
const startLocation = {...location};
startLocation.file = trimBase(range.begin.spellingLoc.file || startLocation.file);
startLocation.line = range.begin.spellingLoc.line || startLocation.line;
startLocation.column = range.begin.spellingLoc.col || startLocation.column;
const endLocation = {...startLocation};
endLocation.file = trimBase(range.end.spellingLoc.file || endLocation.file);
endLocation.line = range.end.spellingLoc.line || endLocation.line;
endLocation.column = range.end.spellingLoc.col || endLocation.column;
const lines = await readFileLocation(startLocation, endLocation);
return formatLines(lines);
}
async function parseLiteralRange(location, range) {
const startLocation = updateLocation({...location}, { loc: range.begin });
const endLocation = updateLocation({...location}, { loc: range.end });
const lines = await readFileLocation(startLocation, endLocation);
return formatLines(lines);
}
async function parseRange(location, range) {
return range.begin.spellingLoc ? parseExternalRange(location, range) : parseLiteralRange(location, range);
}
class ParserError extends Error {
constructor(message, location) {
if (!location) {
super(`${message} at (unknown)`);
}
else {
super(`${message} at ${location.file}:${location.line}`);
}
this.name = 'ParserError';
}
}
function validateParsing(test, message, location) {
if (!test) {
throw new ParserError(message, location);
}
}
function parseComment(spec, location, comment, options) {
let result = { };
let last = undefined;
for (const c of comment.inner.filter(c => c.kind === 'ParagraphComment' || c.kind === 'VerbatimLineComment')) {
if (c.kind === 'ParagraphComment') {
const commentData = richCommentText(c);
result.comment = joinIfNotEmpty(result.comment, commentData.text);
delete commentData.text;
result = { ...result, ...commentData };
}
else if (c.kind === 'VerbatimLineComment') {
result.comment = joinIfNotEmpty(result.comment, c.text.trim());
}
else {
throw new Error(`unknown comment ${c.kind}`);
}
}
for (const c of comment.inner.filter(c => c.kind !== 'ParagraphComment' && c.kind !== 'VerbatimLineComment')) {
if (c.kind === 'BlockCommandComment' && c.name === 'see') {
result.see = joinIfNotEmpty(result.see, blockCommentText(c));
}
else if (c.kind === 'BlockCommandComment' && c.name === 'note') {
result.notes = joinIfNotEmpty(result.notes, blockCommentText(c));
}
else if (c.kind === 'BlockCommandComment' && c.name === 'deprecated') {
result.deprecations = joinIfNotEmpty(result.deprecations, blockCommentText(c));
}
else if (c.kind === 'BlockCommandComment' && c.name === 'warning') {
result.warnings = joinIfNotEmpty(result.warnings, blockCommentText(c));
}
else if (c.kind === 'BlockCommandComment' &&
(c.name === 'return' || (c.name === 'returns' && !options.strict))) {
const returnData = richBlockCommentText(c);
result.returns = {
extendedType: returnData.extendedType,
comment: returnData.text
};
}
else if (c.kind === 'ParamCommandComment') {
ensure('param has a name', c.param);
const paramDetails = paramCommentText(c);
result.params = join(result.params, {
name: c.param,
direction: c.direction,
values: paramDetails.type,
extendedType: paramDetails.extendedType,
comment: paramDetails.text
});
}
else if (options.strict) {
if (c.kind === 'BlockCommandComment') {
throw new ParserError(`unknown block command comment ${c.name}`, location);
}
else if (c.kind === 'VerbatimBlockComment') {
throw new Error(`unknown verbatim command comment ${c.name}`, location);
}
else {
throw new Error(`unknown comment ${c.kind} in ${kind}`);
}
}
}
return result;
}
async function parseFunction(location, decl, options) {
let result = {
kind: 'function',
id: groupifyId(location, decl.id),
name: ensureDefined('name', decl.name),
location: {...location}
};
// prototype
const [ , returnType, ] = decl.type.qualType.match(/(.*?)(?: )?\((.*)\)$/) || [ ];
ensureDefined('return type declaration', returnType);
result.returns = { type: returnType };
for (const paramDecl of decl.inner.filter(attr => attr.kind === 'ParmVarDecl')) {
updateLocation(location, paramDecl);
const inner = paramDecl.inner || [];
const innerLocation = {...location};
let paramAnnotations = undefined;
for (const annotateDecl of inner.filter(attr => attr.kind === 'AnnotateAttr')) {
updateLocation(innerLocation, annotateDecl);
paramAnnotations = join(paramAnnotations, await parseRange(innerLocation, annotateDecl.range));
}
result.params = join(result.params, {
name: paramDecl.name,
type: paramDecl.type.qualType,
annotations: paramAnnotations
});
}
// doc comment
const commentText = single(decl.inner, (attr => attr.kind === 'FullComment'));
if (commentText) {
const commentData = parseComment(`function:${decl.name}`, location, commentText, options);
if (result.params) {
if (options.strict && (!commentData.params || result.params.length > commentData.params.length)) {
throw new ParserError(`not all params are documented`, location);
}
if (options.strict && result.params.length < commentData.params.length) {
throw new ParserError(`additional params are documented`, location);
}
}
if (commentData.params) {
for (const i in result.params) {
let match;
for (const j in commentData.params) {
if (result.params[i].name === commentData.params[j].name) {
match = j;
break;
}
}
if (options.strict && (!match || match != i)) {
throw new ParserError(
`param documentation does not match param name '${result.params[i].name}'`,
location);
}
if (match) {
result.params[i] = { ...result.params[i], ...commentData.params[match] };
}
}
} else if (options.strict && result.params) {
throw new ParserError(`no params documented for ${decl.name}`, location);
}
if (options.strict && !commentData.returns && result.returns.type != 'void') {
throw new ParserError(`return information is not documented for ${decl.name}`, location);
}
result.returns = { ...result.returns, ...commentData.returns };
delete commentData.params;
delete commentData.returns;
result = { ...result, ...commentData };
}
else if (options.strict) {
throw new ParserError(`no documentation for function ${decl.name}`, location);
}
return result;
}
function parseEnum(location, decl, options) {
let result = {
kind: 'enum',
id: groupifyId(location, decl.id),
name: decl.name,
referenceName: decl.name ? `enum ${decl.name}` : undefined,
members: [ ],
comment: undefined,
location: {...location}
};
for (const member of decl.inner.filter(attr => attr.kind === 'EnumConstantDecl')) {
ensure('enum constant has a name', member.name);
const explicitValue = single(member.inner, (attr => attr.kind === 'ConstantExpr'));
const commentText = single(member.inner, (attr => attr.kind === 'FullComment'));
const commentData = commentText ? parseComment(`enum:${decl.name}:member:${member.name}`, location, commentText, options) : undefined;
result.members.push({
name: member.name,
value: explicitValue ? explicitValue.value : undefined,
...commentData
});
}
const commentText = single(decl.inner, (attr => attr.kind === 'FullComment'));
if (commentText) {
result = { ...result, ...parseComment(`enum:${decl.name}`, location, commentText, options) };
}
return result;
}
function resolveFunctionPointerTypedef(location, typedef) {
const signature = typedef.type.match(/^((?:const )?[^\s]+(?:\s+\*+)?)\s*\(\*\)\((.*)\)$/);
const [ , returnType, paramData ] = signature;
const params = paramData.split(/,\s+/);
if (options.strict && (!typedef.params || params.length != typedef.params.length)) {
throw new ParserError(`not all params are documented for function pointer typedef ${typedef.name}`, typedef.location);
}
if (!typedef.params) {
typedef.params = [ ];
}
for (const i in params) {
if (!typedef.params[i]) {
typedef.params[i] = { };
}
typedef.params[i].type = params[i];
}
if (typedef.returns === undefined && returnType === 'void') {
typedef.returns = { type: 'void' };
}
else if (typedef.returns !== undefined) {
typedef.returns.type = returnType;
}
else if (options.strict) {
throw new ParserError(`return type is not documented for function pointer typedef ${typedef.name}`, typedef.location);
}
}
function parseTypedef(location, decl, options) {
updateLocation(location, decl);
let result = {
kind: 'typedef',
id: groupifyId(location, decl.id),
name: ensureDefined('name', decl.name),
type: ensureDefined('type.qualType', decl.type.qualType),
targetId: undefined,
comment: undefined,
location: {...location}
};
const elaborated = single(decl.inner, (attr => attr.kind === 'ElaboratedType'));
if (elaborated !== undefined && elaborated.ownedTagDecl?.id) {
result.targetId = groupifyId(location, elaborated.ownedTagDecl?.id);
}
const commentText = single(decl.inner, (attr => attr.kind === 'FullComment'));
if (commentText) {
const commentData = parseComment(`typedef:${decl.name}`, location, commentText, options);
result = { ...result, ...commentData };
}
if (isFunctionPointer(result.type)) {
resolveFunctionPointerTypedef(location, result);
}
return result;
}
function parseStruct(location, decl, options) {
let result = {
kind: 'struct',
id: groupifyId(location, decl.id),
name: decl.name,
referenceName: decl.name ? `struct ${decl.name}` : undefined,
comment: undefined,
members: [ ],
location: {...location}
};
for (const member of decl.inner.filter(attr => attr.kind === 'FieldDecl')) {
let memberData = {
'name': member.name,
'type': member.type.qualType
};
const commentText = single(member.inner, (attr => attr.kind === 'FullComment'));
if (commentText) {
memberData = {...memberData, ...parseComment(`struct:${decl.name}:member:${member.name}`, location, commentText, options)};
}
result.members.push(memberData);
}
const commentText = single(decl.inner, (attr => attr.kind === 'FullComment'));
if (commentText) {
const commentData = parseComment(`struct:${decl.name}`, location, commentText, options);
result = { ...result, ...commentData };
}
return result;
}
function newResults() {
return {
all: [ ],
functions: [ ],
enums: [ ],
typedefs: [ ],
structs: [ ],
macros: [ ]
};
};
const returnMap = { };
const paramMap = { };
function simplifyType(givenType) {
let type = givenType;
if (type.startsWith('const ')) {
type = type.substring(6);
}
while (type.endsWith('*') && type !== 'void *' && type !== 'char *') {
type = type.substring(0, type.length - 1).trim();
}
if (!type.length) {
throw new Error(`invalid type: ${result.returns.extendedType || result.returns.type}`);
}
return type;
}
function createAndPush(arr, name, value) {
if (!arr[name]) {
arr[name] = [ ];
}
if (arr[name].length && arr[name][arr[name].length - 1] === value) {
return;
}
arr[name].push(value);
}
function addReturn(result) {
if (!result.returns) {
return;
}
let type = simplifyType(result.returns.extendedType?.type || result.returns.type);
createAndPush(returnMap, type, result.name);
}
function addParameters(result) {
if (!result.params) {
return;
}
for (const param of result.params) {
let type = param.extendedType?.type || param.type;
if (!type && options.strict) {
throw new Error(`parameter ${result.name} erroneously documented when not specified`);
} else if (!type) {
continue;
}
type = simplifyType(type);
if (param.direction === 'out') {
createAndPush(returnMap, type, result.name);
}
else {
createAndPush(paramMap, type, result.name);
}
}
}
function addResult(results, result) {
results[`${result.kind}s`].push(result);
results.all.push(result);
addReturn(result);
addParameters(result);
}
function mergeResults(one, two) {
const results = newResults();
for (const inst of Object.keys(results)) {
results[inst].push(...one[inst]);
results[inst].push(...two[inst]);
}
return results;
}
function getById(results, id) {
ensure("id is set", id !== undefined);
return single(results.all.all, (item => item.id === id), id);
}
function getByKindAndName(results, kind, name) {
ensure("kind is set", kind !== undefined);
ensure("name is set", name !== undefined);
return single(results.all[`${kind}s`], (item => item.name === name), name);
}
function getByName(results, name) {
ensure("name is set", name !== undefined);
return single(results.all.all, (item => item.name === name), name);
}
function isFunctionPointer(type) {
return type.match(/^(?:const )?[A-Za-z0-9_]+\s+\**\(\*/);
}
function resolveCallbacks(results) {
// expand callback types
for (const fn of results.all.functions) {
for (const param of fn.params || [ ]) {
const typedef = getByName(results, param.type);
if (typedef === undefined) {
continue;
}
param.referenceType = typedef.type;
}
}
for (const struct of results.all.structs) {
for (const member of struct.members) {
const typedef = getByKindAndName(results, 'typedef', member.type);
if (typedef === undefined) {
continue;
}
member.referenceType = typedef.type;
}
}
}
function trimBase(path) {
if (!path) {
return path;
}
for (const segment of [ 'git2', 'git' ]) {
const base = [ includeBase(path), segment ].join('/');
if (path.startsWith(base + '/')) {
return path.substr(base.length + 1);
}
}
throw new Error(`header path ${path} is not beneath standard root`);
}
function resolveTypedefs(results) {
for (const typedef of results.all.typedefs) {
let target = typedef.targetId ? getById(results, typedef.targetId) : undefined;
if (target) {
// update the target's preferred name with the short name
target.referenceName = typedef.name;
if (target.name === undefined) {
target.name = typedef.name;
}
}
else if (typedef.type.startsWith('struct ')) {
const path = typedef.location.file;
/*
* See if this is actually a typedef to a declared struct,
* then it is not actually opaque.
*/
if (results.all.structs.filter(fn => fn.name === typedef.name).length > 0) {
typedef.opaque = false;
continue;
}
opaque = {
kind: 'struct',
id: groupifyId(typedef.location, typedef.id),
name: typedef.name,
referenceName: typedef.type,
opaque: true,
comment: typedef.comment,
location: typedef.location,
group: typedef.group
};
addResult(results.files[path], opaque);
addResult(results.all, opaque);
}
else if (isFunctionPointer(typedef.type) ||
typedef.type === 'int64_t' ||
typedef.type === 'uint64_t') {
// standard types
// TODO : make these a list
}
else {
typedef.kind = 'alias';
typedef.typedef = true;
}
}
}
function lastCommentIsGroupDelimiter(decls) {
if (decls[decls.length - 1].inner &&
decls[decls.length - 1].inner.length > 0) {
return lastCommentIsGroupDelimiter(decls[decls.length - 1].inner);
}
if (decls.length >= 2 &&
decls[decls.length - 1].kind.endsWith('Comment') &&
decls[decls.length - 2].kind.endsWith('Comment') &&
decls[decls.length - 2].text === '@' &&
decls[decls.length - 1].text === '{') {
return true;
}
return false;
}