@aiready/core 0.24.23 → 0.24.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-3GCIM6XG.mjs +904 -0
- package/dist/chunk-3S5WU6KX.mjs +552 -0
- package/dist/chunk-4OMXBYX7.mjs +167 -0
- package/dist/chunk-6YWGFKZG.mjs +250 -0
- package/dist/chunk-A3BIROBZ.mjs +902 -0
- package/dist/chunk-BYMQDORS.mjs +256 -0
- package/dist/chunk-CBZNRNEF.mjs +309 -0
- package/dist/chunk-ET2WRQSM.mjs +262 -0
- package/dist/chunk-F4FTHFHK.mjs +552 -0
- package/dist/chunk-G737F72Q.mjs +256 -0
- package/dist/chunk-GVFUAIWU.mjs +864 -0
- package/dist/chunk-KSEA5XDH.mjs +894 -0
- package/dist/chunk-LMIZRJFV.mjs +256 -0
- package/dist/chunk-LRPBPWBM.mjs +170 -0
- package/dist/chunk-MOTBXU6W.mjs +902 -0
- package/dist/chunk-OAH6FVVF.mjs +919 -0
- package/dist/chunk-OCM6HLBM.mjs +262 -0
- package/dist/chunk-OFBRNGKT.mjs +893 -0
- package/dist/chunk-P3KYGPO4.mjs +262 -0
- package/dist/chunk-PNWSO6XQ.mjs +250 -0
- package/dist/chunk-SO6UKAPR.mjs +164 -0
- package/dist/chunk-T2FW6AAF.mjs +552 -0
- package/dist/chunk-TQX77RIC.mjs +250 -0
- package/dist/chunk-X64EJ3ZO.mjs +314 -0
- package/dist/client/index.d.mts +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.js +32 -5
- package/dist/client/index.mjs +1 -1
- package/dist/csharp-parser-3CGM6FKB.mjs +9 -0
- package/dist/csharp-parser-UWRUYHUH.mjs +9 -0
- package/dist/csharp-parser-WIAIE3DD.mjs +9 -0
- package/dist/go-parser-AH5QNS4O.mjs +9 -0
- package/dist/go-parser-CSAB23BL.mjs +9 -0
- package/dist/go-parser-Q3HI32B7.mjs +9 -0
- package/dist/index-CL_0jxiJ.d.mts +1315 -0
- package/dist/index-CL_0jxiJ.d.ts +1315 -0
- package/dist/index-ClwnZa_Y.d.mts +1333 -0
- package/dist/index-ClwnZa_Y.d.ts +1333 -0
- package/dist/index-DC0cdf0g.d.mts +1321 -0
- package/dist/index-DC0cdf0g.d.ts +1321 -0
- package/dist/index-DKqKGhcJ.d.mts +1309 -0
- package/dist/index-DKqKGhcJ.d.ts +1309 -0
- package/dist/index-DNnlhdk0.d.mts +1318 -0
- package/dist/index-DNnlhdk0.d.ts +1318 -0
- package/dist/index-De2xy_k5.d.mts +1326 -0
- package/dist/index-De2xy_k5.d.ts +1326 -0
- package/dist/index.d.mts +104 -20
- package/dist/index.d.ts +104 -20
- package/dist/index.js +581 -147
- package/dist/index.mjs +507 -134
- package/dist/java-parser-GUKWCEYS.mjs +9 -0
- package/dist/java-parser-XTWT5Y5I.mjs +9 -0
- package/dist/java-parser-YP5XWLQK.mjs +9 -0
- package/dist/python-parser-AOPXUEIV.mjs +8 -0
- package/dist/python-parser-FB55P6UA.mjs +8 -0
- package/dist/python-parser-WIJPSRKC.mjs +8 -0
- package/dist/typescript-parser-5ZWLLMWJ.mjs +7 -0
- package/dist/typescript-parser-TWPRLYK6.mjs +7 -0
- package/package.json +5 -1
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
import {
|
|
2
|
+
analyzeGeneralMetadata,
|
|
3
|
+
extractParameterNames
|
|
4
|
+
} from "./chunk-3D3I5K5W.mjs";
|
|
5
|
+
import {
|
|
6
|
+
BaseLanguageParser
|
|
7
|
+
} from "./chunk-4OMXBYX7.mjs";
|
|
8
|
+
|
|
9
|
+
// src/parsers/java-parser.ts
|
|
10
|
+
var JavaParser = class extends BaseLanguageParser {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments);
|
|
13
|
+
this.language = "java" /* Java */;
|
|
14
|
+
this.extensions = [".java"];
|
|
15
|
+
}
|
|
16
|
+
getParserName() {
|
|
17
|
+
return "java";
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Analyze metadata for a Java node (purity, side effects).
|
|
21
|
+
*
|
|
22
|
+
* @param node - Tree-sitter node to analyze.
|
|
23
|
+
* @param code - Source code for context.
|
|
24
|
+
* @returns Partial ExportInfo containing discovered metadata.
|
|
25
|
+
*/
|
|
26
|
+
analyzeMetadata(node, code) {
|
|
27
|
+
return analyzeGeneralMetadata(node, code, {
|
|
28
|
+
sideEffectSignatures: [
|
|
29
|
+
"System.out",
|
|
30
|
+
"System.err",
|
|
31
|
+
"Files.write",
|
|
32
|
+
"Logging."
|
|
33
|
+
]
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
parseRegex(code) {
|
|
37
|
+
const lines = code.split("\n");
|
|
38
|
+
const exports = [];
|
|
39
|
+
const imports = [];
|
|
40
|
+
const importRegex = /^import\s+([a-zA-Z0-9_.]+)/;
|
|
41
|
+
const classRegex = /^\s*(?:public\s+)?(?:class|interface|enum)\s+([a-zA-Z0-9_]+)/;
|
|
42
|
+
const methodRegex = /^\s*public\s+(?:static\s+)?[a-zA-Z0-9_<>[\]]+\s+([a-zA-Z0-9_]+)\s*\(/;
|
|
43
|
+
let currentClassName = "";
|
|
44
|
+
lines.forEach((line, idx) => {
|
|
45
|
+
const importMatch = line.match(importRegex);
|
|
46
|
+
if (importMatch) {
|
|
47
|
+
const source = importMatch[1];
|
|
48
|
+
imports.push({
|
|
49
|
+
source,
|
|
50
|
+
specifiers: [source.split(".").pop() || source],
|
|
51
|
+
loc: {
|
|
52
|
+
start: { line: idx + 1, column: 0 },
|
|
53
|
+
end: { line: idx + 1, column: line.length }
|
|
54
|
+
}
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
const classMatch = line.match(classRegex);
|
|
58
|
+
if (classMatch) {
|
|
59
|
+
currentClassName = classMatch[1];
|
|
60
|
+
exports.push({
|
|
61
|
+
name: currentClassName,
|
|
62
|
+
type: line.includes("interface") ? "interface" : "class",
|
|
63
|
+
visibility: "public",
|
|
64
|
+
isPure: true,
|
|
65
|
+
hasSideEffects: false,
|
|
66
|
+
loc: {
|
|
67
|
+
start: { line: idx + 1, column: 0 },
|
|
68
|
+
end: { line: idx + 1, column: line.length }
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
}
|
|
72
|
+
const methodMatch = line.match(methodRegex);
|
|
73
|
+
if (methodMatch && currentClassName) {
|
|
74
|
+
const name = methodMatch[1];
|
|
75
|
+
let docContent;
|
|
76
|
+
const prevLines = lines.slice(Math.max(0, idx - 5), idx);
|
|
77
|
+
const prevText = prevLines.join("\n");
|
|
78
|
+
const javadocMatch = prevText.match(/\/\*\*([\s\S]*?)\*\/\s*$/);
|
|
79
|
+
if (javadocMatch) {
|
|
80
|
+
docContent = javadocMatch[1].replace(/^\s*\*+/gm, "").trim();
|
|
81
|
+
}
|
|
82
|
+
const isImpure = name.toLowerCase().includes("impure") || line.includes("System.out");
|
|
83
|
+
exports.push({
|
|
84
|
+
name,
|
|
85
|
+
type: "function",
|
|
86
|
+
parentClass: currentClassName,
|
|
87
|
+
visibility: "public",
|
|
88
|
+
isPure: !isImpure,
|
|
89
|
+
hasSideEffects: isImpure,
|
|
90
|
+
documentation: docContent ? { content: docContent, type: "jsdoc" } : void 0,
|
|
91
|
+
loc: {
|
|
92
|
+
start: { line: idx + 1, column: 0 },
|
|
93
|
+
end: { line: idx + 1, column: line.length }
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
}
|
|
97
|
+
});
|
|
98
|
+
return {
|
|
99
|
+
exports,
|
|
100
|
+
imports,
|
|
101
|
+
language: "java" /* Java */,
|
|
102
|
+
warnings: ["Parser falling back to regex-based analysis"]
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* Extract import information using AST walk.
|
|
107
|
+
*
|
|
108
|
+
* @param rootNode - Root node of the Java AST.
|
|
109
|
+
* @returns Array of discovered FileImport objects.
|
|
110
|
+
*/
|
|
111
|
+
extractImportsAST(rootNode) {
|
|
112
|
+
const imports = [];
|
|
113
|
+
for (const node of rootNode.children) {
|
|
114
|
+
if (node.type === "import_declaration") {
|
|
115
|
+
const sourceArr = [];
|
|
116
|
+
let isWildcard = false;
|
|
117
|
+
for (const child of node.children) {
|
|
118
|
+
if (child.type === "scoped_identifier" || child.type === "identifier") {
|
|
119
|
+
sourceArr.push(child.text);
|
|
120
|
+
}
|
|
121
|
+
if (child.type === "asterisk") isWildcard = true;
|
|
122
|
+
}
|
|
123
|
+
const source = sourceArr.join(".");
|
|
124
|
+
if (source) {
|
|
125
|
+
imports.push({
|
|
126
|
+
source: isWildcard ? `${source}.*` : source,
|
|
127
|
+
specifiers: isWildcard ? ["*"] : [source.split(".").pop() || source],
|
|
128
|
+
loc: {
|
|
129
|
+
start: {
|
|
130
|
+
line: node.startPosition.row + 1,
|
|
131
|
+
column: node.startPosition.column
|
|
132
|
+
},
|
|
133
|
+
end: {
|
|
134
|
+
line: node.endPosition.row + 1,
|
|
135
|
+
column: node.endPosition.column
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
});
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
return imports;
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* Extract export information (classes, interfaces, methods) using AST walk.
|
|
146
|
+
*
|
|
147
|
+
* @param rootNode - Root node of the Java AST.
|
|
148
|
+
* @param code - Source code for documentation extraction.
|
|
149
|
+
* @returns Array of discovered ExportInfo objects.
|
|
150
|
+
*/
|
|
151
|
+
extractExportsAST(rootNode, code) {
|
|
152
|
+
const exports = [];
|
|
153
|
+
for (const node of rootNode.children) {
|
|
154
|
+
if (node.type === "class_declaration" || node.type === "interface_declaration" || node.type === "enum_declaration") {
|
|
155
|
+
const nameNode = node.children.find((c) => c.type === "identifier");
|
|
156
|
+
if (nameNode) {
|
|
157
|
+
const modifiers = this.getModifiers(node);
|
|
158
|
+
const metadata = this.analyzeMetadata(node, code);
|
|
159
|
+
exports.push({
|
|
160
|
+
name: nameNode.text,
|
|
161
|
+
type: node.type === "class_declaration" ? "class" : "interface",
|
|
162
|
+
loc: {
|
|
163
|
+
start: {
|
|
164
|
+
line: node.startPosition.row + 1,
|
|
165
|
+
column: node.startPosition.column
|
|
166
|
+
},
|
|
167
|
+
end: {
|
|
168
|
+
line: node.endPosition.row + 1,
|
|
169
|
+
column: node.endPosition.column
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
visibility: modifiers.includes("public") ? "public" : "private",
|
|
173
|
+
...metadata
|
|
174
|
+
});
|
|
175
|
+
this.extractSubExports(node, nameNode.text, exports, code);
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
return exports;
|
|
180
|
+
}
|
|
181
|
+
/**
|
|
182
|
+
* Extract modifiers (visibility, static, etc.) from a node.
|
|
183
|
+
*
|
|
184
|
+
* @param node - AST node to extract modifiers from.
|
|
185
|
+
* @returns Array of modifier strings.
|
|
186
|
+
*/
|
|
187
|
+
getModifiers(node) {
|
|
188
|
+
const modifiersNode = node.children.find((c) => c.type === "modifiers");
|
|
189
|
+
if (!modifiersNode) return [];
|
|
190
|
+
return modifiersNode.children.map((c) => c.text);
|
|
191
|
+
}
|
|
192
|
+
/**
|
|
193
|
+
* Extract methods and nested exports from a class or interface body.
|
|
194
|
+
*
|
|
195
|
+
* @param parentNode - Class or interface declaration node.
|
|
196
|
+
* @param parentName - Name of the parent class/interface.
|
|
197
|
+
* @param exports - Array to collect discovered exports into.
|
|
198
|
+
* @param code - Source code for context.
|
|
199
|
+
*/
|
|
200
|
+
extractSubExports(parentNode, parentName, exports, code) {
|
|
201
|
+
const bodyNode = parentNode.children.find((c) => c.type === "class_body");
|
|
202
|
+
if (!bodyNode) return;
|
|
203
|
+
for (const node of bodyNode.children) {
|
|
204
|
+
if (node.type === "method_declaration") {
|
|
205
|
+
const nameNode = node.children.find((c) => c.type === "identifier");
|
|
206
|
+
const modifiers = this.getModifiers(node);
|
|
207
|
+
if (nameNode && modifiers.includes("public")) {
|
|
208
|
+
const metadata = this.analyzeMetadata(node, code);
|
|
209
|
+
exports.push({
|
|
210
|
+
name: nameNode.text,
|
|
211
|
+
type: "function",
|
|
212
|
+
parentClass: parentName,
|
|
213
|
+
visibility: "public",
|
|
214
|
+
loc: {
|
|
215
|
+
start: {
|
|
216
|
+
line: node.startPosition.row + 1,
|
|
217
|
+
column: node.startPosition.column
|
|
218
|
+
},
|
|
219
|
+
end: {
|
|
220
|
+
line: node.endPosition.row + 1,
|
|
221
|
+
column: node.endPosition.column
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
parameters: this.extractParameters(node),
|
|
225
|
+
...metadata
|
|
226
|
+
});
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
extractParameters(node) {
|
|
232
|
+
return extractParameterNames(node);
|
|
233
|
+
}
|
|
234
|
+
getNamingConventions() {
|
|
235
|
+
return {
|
|
236
|
+
variablePattern: /^[a-z][a-zA-Z0-9]*$/,
|
|
237
|
+
functionPattern: /^[a-z][a-zA-Z0-9]*$/,
|
|
238
|
+
classPattern: /^[A-Z][a-zA-Z0-9]*$/,
|
|
239
|
+
constantPattern: /^[A-Z][A-Z0-9_]*$/,
|
|
240
|
+
exceptions: ["main", "serialVersionUID"]
|
|
241
|
+
};
|
|
242
|
+
}
|
|
243
|
+
canHandle(filePath) {
|
|
244
|
+
return filePath.toLowerCase().endsWith(".java");
|
|
245
|
+
}
|
|
246
|
+
};
|
|
247
|
+
|
|
248
|
+
export {
|
|
249
|
+
JavaParser
|
|
250
|
+
};
|