@cldmv/slothlet 2.5.5 → 2.5.6
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/lib/helpers/api_builder.mjs +15 -13
- package/dist/lib/helpers/multidefault.mjs +12 -2
- package/dist/lib/modes/slothlet_eager.mjs +1 -1
- package/dist/lib/modes/slothlet_lazy.mjs +1 -1
- package/dist/lib/runtime/runtime.mjs +12 -1
- package/dist/slothlet.mjs +10 -2
- package/package.json +1 -1
- package/types/dist/lib/helpers/api_builder.d.mts.map +1 -1
- package/types/dist/lib/helpers/multidefault.d.mts +8 -3
- package/types/dist/lib/helpers/multidefault.d.mts.map +1 -1
- package/types/dist/lib/runtime/runtime.d.mts.map +1 -1
- package/types/dist/slothlet.d.mts.map +1 -1
|
@@ -22,6 +22,7 @@ import fs from "node:fs/promises";
|
|
|
22
22
|
import path from "node:path";
|
|
23
23
|
import { types as utilTypes } from "node:util";
|
|
24
24
|
import { pathToFileURL } from "node:url";
|
|
25
|
+
import { multidefault_analyzeModules } from "@cldmv/slothlet/helpers/multidefault";
|
|
25
26
|
|
|
26
27
|
|
|
27
28
|
|
|
@@ -48,10 +49,18 @@ function isLikelySerializable(val) {
|
|
|
48
49
|
|
|
49
50
|
|
|
50
51
|
export async function analyzeModule(modulePath, options = {}) {
|
|
51
|
-
const { debug = false } = options;
|
|
52
|
+
const { debug = false, instance = null } = options;
|
|
52
53
|
|
|
53
54
|
const moduleUrl = pathToFileURL(modulePath).href;
|
|
54
|
-
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
let importUrl = moduleUrl;
|
|
58
|
+
if (instance && instance.instanceId) {
|
|
59
|
+
const separator = moduleUrl.includes("?") ? "&" : "?";
|
|
60
|
+
importUrl = `${moduleUrl}${separator}slothlet_instance=${instance.instanceId}`;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
const rawModule = await import(importUrl);
|
|
55
64
|
|
|
56
65
|
|
|
57
66
|
let processedModule = rawModule;
|
|
@@ -361,8 +370,7 @@ export async function analyzeDirectoryStructure(categoryPath, options = {}) {
|
|
|
361
370
|
|
|
362
371
|
let multiDefaultAnalysis = null;
|
|
363
372
|
if (processingStrategy === "multi-file") {
|
|
364
|
-
|
|
365
|
-
multiDefaultAnalysis = await multidefault_analyzeModules(moduleFiles, categoryPath, debug);
|
|
373
|
+
multiDefaultAnalysis = await multidefault_analyzeModules(moduleFiles, categoryPath, { debug, instance });
|
|
366
374
|
}
|
|
367
375
|
|
|
368
376
|
|
|
@@ -949,8 +957,7 @@ export async function buildCategoryStructure(categoryPath, options = {}) {
|
|
|
949
957
|
const categoryModules = {};
|
|
950
958
|
|
|
951
959
|
|
|
952
|
-
const
|
|
953
|
-
const analysis = await multidefault_analyzeModules(moduleFiles, categoryPath, debug);
|
|
960
|
+
const analysis = await multidefault_analyzeModules(moduleFiles, categoryPath, { debug, instance });
|
|
954
961
|
const { totalDefaultExports, hasMultipleDefaultExports, selfReferentialFiles, defaultExportFiles: analysisDefaults } = analysis;
|
|
955
962
|
|
|
956
963
|
|
|
@@ -1090,8 +1097,7 @@ export async function buildRootAPI(dir, options = {}) {
|
|
|
1090
1097
|
|
|
1091
1098
|
if (moduleFiles.length > 0) {
|
|
1092
1099
|
|
|
1093
|
-
const
|
|
1094
|
-
const analysis = await multidefault_analyzeModules(moduleFiles, dir, debug);
|
|
1100
|
+
const analysis = await multidefault_analyzeModules(moduleFiles, dir, { debug, instance });
|
|
1095
1101
|
const { hasMultipleDefaultExports, selfReferentialFiles } = analysis;
|
|
1096
1102
|
|
|
1097
1103
|
|
|
@@ -1193,9 +1199,6 @@ export async function buildCategoryDecisions(categoryPath, options = {}) {
|
|
|
1193
1199
|
console.log(`[DEBUG] buildCategoryDecisions called with path: ${categoryPath}, mode: ${mode}`);
|
|
1194
1200
|
}
|
|
1195
1201
|
|
|
1196
|
-
const fs = await import("fs/promises");
|
|
1197
|
-
const path = await import("path");
|
|
1198
|
-
|
|
1199
1202
|
const files = await fs.readdir(categoryPath, { withFileTypes: true });
|
|
1200
1203
|
const moduleFiles = files.filter((f) => instance._shouldIncludeFile(f));
|
|
1201
1204
|
const categoryName = instance._toapiPathKey(path.basename(categoryPath));
|
|
@@ -1390,8 +1393,7 @@ export async function buildCategoryDecisions(categoryPath, options = {}) {
|
|
|
1390
1393
|
}
|
|
1391
1394
|
|
|
1392
1395
|
|
|
1393
|
-
const
|
|
1394
|
-
const analysis = await multidefault_analyzeModules(moduleFiles, categoryPath, debug);
|
|
1396
|
+
const analysis = await multidefault_analyzeModules(moduleFiles, categoryPath, { debug, instance });
|
|
1395
1397
|
|
|
1396
1398
|
decisions.multifileAnalysis = analysis;
|
|
1397
1399
|
|
|
@@ -16,10 +16,13 @@
|
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
|
|
19
|
+
|
|
20
|
+
|
|
19
21
|
import path from "path";
|
|
20
22
|
|
|
21
23
|
|
|
22
|
-
async function multidefault_analyzeModules(moduleFiles, baseDir,
|
|
24
|
+
async function multidefault_analyzeModules(moduleFiles, baseDir, options = {}) {
|
|
25
|
+
const { debug = false, instance = null } = options;
|
|
23
26
|
const selfReferentialFiles = new Set();
|
|
24
27
|
const rawModuleCache = new Map();
|
|
25
28
|
const defaultExportFiles = [];
|
|
@@ -36,7 +39,14 @@ async function multidefault_analyzeModules(moduleFiles, baseDir, debug = false)
|
|
|
36
39
|
const moduleFilePath = path.resolve(baseDir, file.name);
|
|
37
40
|
|
|
38
41
|
|
|
39
|
-
|
|
42
|
+
let importUrl = `file://${moduleFilePath.replace(/\\/g, "/")}`;
|
|
43
|
+
if (instance && instance.instanceId) {
|
|
44
|
+
const separator = importUrl.includes("?") ? "&" : "?";
|
|
45
|
+
importUrl = `${importUrl}${separator}slothlet_instance=${instance.instanceId}`;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
const rawImport = await import(importUrl);
|
|
40
50
|
|
|
41
51
|
|
|
42
52
|
const isCjsFile = moduleExt === ".cjs";
|
|
@@ -38,7 +38,7 @@ export async function create(dir, maxDepth = Infinity, currentDepth = 0) {
|
|
|
38
38
|
const moduleFiles = entries.filter((e) => this._shouldIncludeFile(e));
|
|
39
39
|
const defaultExportFiles = [];
|
|
40
40
|
|
|
41
|
-
const analysis = await multidefault_analyzeModules(moduleFiles, dir, this.config.debug);
|
|
41
|
+
const analysis = await multidefault_analyzeModules(moduleFiles, dir, { debug: this.config.debug, instance: this });
|
|
42
42
|
|
|
43
43
|
const { totalDefaultExports, hasMultipleDefaultExports, selfReferentialFiles, defaultExportFiles: analysisDefaults } = analysis;
|
|
44
44
|
|
|
@@ -38,7 +38,7 @@ export async function create(dir, maxDepth = Infinity, currentDepth = 0) {
|
|
|
38
38
|
const defaultExportFiles = [];
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
const analysis = await multidefault_analyzeModules(moduleFiles, dir, instance.config.debug);
|
|
41
|
+
const analysis = await multidefault_analyzeModules(moduleFiles, dir, { debug: instance.config.debug, instance });
|
|
42
42
|
|
|
43
43
|
const { totalDefaultExports, hasMultipleDefaultExports, selfReferentialFiles, defaultExportFiles: analysisDefaults } = analysis;
|
|
44
44
|
|
|
@@ -286,7 +286,18 @@ function runtime_mutateLiveBinding(target, contextKey) {
|
|
|
286
286
|
if (key !== "_impl") delete target[key];
|
|
287
287
|
}
|
|
288
288
|
for (const [key, value] of Object.entries(source)) {
|
|
289
|
-
|
|
289
|
+
try {
|
|
290
|
+
target[key] = value;
|
|
291
|
+
} catch (error) {
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
if (error instanceof TypeError && error.message.includes("read only")) {
|
|
296
|
+
continue;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
throw error;
|
|
300
|
+
}
|
|
290
301
|
}
|
|
291
302
|
if (typeof source._impl === "function") {
|
|
292
303
|
target._impl = source._impl;
|
package/dist/slothlet.mjs
CHANGED
|
@@ -24,7 +24,12 @@ import { fileURLToPath, pathToFileURL } from "node:url";
|
|
|
24
24
|
|
|
25
25
|
import { resolvePathFromCaller } from "@cldmv/slothlet/helpers/resolve-from-caller";
|
|
26
26
|
import { sanitizePathName } from "@cldmv/slothlet/helpers/sanitize";
|
|
27
|
-
import {
|
|
27
|
+
import {
|
|
28
|
+
analyzeModule,
|
|
29
|
+
processModuleFromAnalysis,
|
|
30
|
+
getCategoryBuildingDecisions,
|
|
31
|
+
buildCategoryDecisions
|
|
32
|
+
} from "@cldmv/slothlet/helpers/api_builder";
|
|
28
33
|
|
|
29
34
|
|
|
30
35
|
|
|
@@ -113,6 +118,7 @@ const slothletObject = {
|
|
|
113
118
|
config: { lazy: false, apiDepth: Infinity, debug: DEBUG, dir: null, sanitize: null },
|
|
114
119
|
_dispose: null,
|
|
115
120
|
_boundAPIShutdown: null,
|
|
121
|
+
instanceId: null,
|
|
116
122
|
|
|
117
123
|
|
|
118
124
|
async create(options = {}) {
|
|
@@ -122,6 +128,9 @@ const slothletObject = {
|
|
|
122
128
|
}
|
|
123
129
|
|
|
124
130
|
|
|
131
|
+
this.instanceId = `slothlet_${Date.now()}_${Math.random().toString(36).slice(2, 11).padEnd(9, "0")}`;
|
|
132
|
+
|
|
133
|
+
|
|
125
134
|
if (!this.modes) {
|
|
126
135
|
this.modes = {};
|
|
127
136
|
const modesDir = path.join(__dirname, "lib", "modes");
|
|
@@ -339,7 +348,6 @@ const slothletObject = {
|
|
|
339
348
|
const { currentDepth = 0, maxDepth = Infinity, mode = "eager", subdirHandler } = options;
|
|
340
349
|
|
|
341
350
|
|
|
342
|
-
const { buildCategoryDecisions } = await import("@cldmv/slothlet/helpers/api_builder");
|
|
343
351
|
const decisions = await buildCategoryDecisions(categoryPath, {
|
|
344
352
|
currentDepth,
|
|
345
353
|
maxDepth,
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api_builder.d.mts","sourceRoot":"","sources":["../../../../dist/lib/helpers/api_builder.mjs"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"api_builder.d.mts","sourceRoot":"","sources":["../../../../dist/lib/helpers/api_builder.mjs"],"names":[],"mappings":"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"}
|
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
* @private
|
|
5
5
|
* @param {Array<{name: string}>} moduleFiles - Array of module file objects with name property
|
|
6
6
|
* @param {string} baseDir - Base directory path containing the modules
|
|
7
|
-
* @param {
|
|
7
|
+
* @param {object} [options={}] - Configuration options
|
|
8
|
+
* @param {boolean} [options.debug=false] - Enable debug logging
|
|
9
|
+
* @param {object|null} [options.instance=null] - Slothlet instance for cache isolation
|
|
8
10
|
* @returns {Promise<{
|
|
9
11
|
* totalDefaultExports: number,
|
|
10
12
|
* hasMultipleDefaultExports: boolean,
|
|
@@ -13,14 +15,17 @@
|
|
|
13
15
|
* defaultExportFiles: Array<{fileName: string, rawModule: object}>
|
|
14
16
|
* }>} Analysis results
|
|
15
17
|
* @example // Internal usage in slothlet modes
|
|
16
|
-
* const analysis = await multidefault_analyzeModules(moduleFiles, categoryPath, config.debug);
|
|
18
|
+
* const analysis = await multidefault_analyzeModules(moduleFiles, categoryPath, { debug: config.debug, instance });
|
|
17
19
|
* if (analysis.hasMultipleDefaultExports) {
|
|
18
20
|
* // Handle multi-default context
|
|
19
21
|
* }
|
|
20
22
|
*/
|
|
21
23
|
export function multidefault_analyzeModules(moduleFiles: Array<{
|
|
22
24
|
name: string;
|
|
23
|
-
}>, baseDir: string,
|
|
25
|
+
}>, baseDir: string, options?: {
|
|
26
|
+
debug?: boolean;
|
|
27
|
+
instance?: object | null;
|
|
28
|
+
}): Promise<{
|
|
24
29
|
totalDefaultExports: number;
|
|
25
30
|
hasMultipleDefaultExports: boolean;
|
|
26
31
|
selfReferentialFiles: Set<string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"multidefault.d.mts","sourceRoot":"","sources":["../../../../dist/lib/helpers/multidefault.mjs"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"multidefault.d.mts","sourceRoot":"","sources":["../../../../dist/lib/helpers/multidefault.mjs"],"names":[],"mappings":"AAoBA;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,yDAlBW,KAAK,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAC,CAAC,WACrB,MAAM,YAEd;IAA0B,KAAK,GAAvB,OAAO;IACe,QAAQ,GAA9B,MAAM,GAAC,IAAI;CACnB,GAAU,OAAO,CAAC;IAChB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,yBAAyB,EAAE,OAAO,CAAC;IACnC,oBAAoB,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IAClC,cAAc,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACpC,kBAAkB,EAAE,KAAK,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAA;KAAC,CAAC,CAAA;CACjE,CAAC,CA8FJ;AAED;;;;;;;;GAQG;AACH,0DALW,MAAM,GACJ,OAAO,CAWnB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,4DAvBG;IAAyB,yBAAyB,EAA1C,OAAO;IACU,gBAAgB,EAAjC,OAAO;IACU,iBAAiB,EAAlC,OAAO;IACgB,UAAU,EAAjC,KAAK,CAAC,MAAM,CAAC;IACG,UAAU,EAA1B,MAAM;IACU,gBAAgB,EAAhC,MAAM;IACY,KAAK,GAAvB,OAAO;CACf,GAAU;IACR,aAAa,EAAE,OAAO,CAAC;IACvB,aAAa,EAAE,OAAO,CAAC;IACvB,mBAAmB,EAAE,OAAO,CAAC;IAC7B,MAAM,EAAE,MAAM,CAAA;CACf,CA4FH"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtime.d.mts","sourceRoot":"","sources":["../../../../dist/lib/runtime/runtime.mjs"],"names":[],"mappings":"AAuCA;;;;;GAKG;AACH,wBAHU,qBAAqB,CAGkB;AAsB1C,gCAdI,MAAM,yBAEN,GAAG,gBAED,GAAG,CA6Bf;AAiBM,0BAZM,MAAM,GAAC,IAAI,CAY0B;AAiL3C,iCAjBI,MAAM,YAgIhB;
|
|
1
|
+
{"version":3,"file":"runtime.d.mts","sourceRoot":"","sources":["../../../../dist/lib/runtime/runtime.mjs"],"names":[],"mappings":"AAuCA;;;;;GAKG;AACH,wBAHU,qBAAqB,CAGkB;AAsB1C,gCAdI,MAAM,yBAEN,GAAG,gBAED,GAAG,CA6Bf;AAiBM,0BAZM,MAAM,GAAC,IAAI,CAY0B;AAiL3C,iCAjBI,MAAM,YAgIhB;AAuSD;;;;;;;;;;;;;GAaG;AACH,mBATU,WAAS,MAAM,CAS6B;AAEtD;;;;;;;;;;;;;GAaG;AACH,sBATU,MAAM,CAS4C;AAE5D;;;;;;;;;;;;;GAaG;AACH,wBATU,MAAM,CASgD;;kCA3rB9B,kBAAkB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"slothlet.d.mts","sourceRoot":"","sources":["../../dist/slothlet.mjs"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"slothlet.d.mts","sourceRoot":"","sources":["../../dist/slothlet.mjs"],"names":[],"mappings":"AA05CA;;;;;;;;;GASG;AACH,kDARW,WAAS,MAAM,UACf,WAAS,MAAM,QAwCzB;AA9yCD;;;;;;;GAOG;AACH,mBAJU,MAAM,CAIO;AAEvB;;;;;GAKG;AACH,sBAJU,MAAM,CAIU;AAE1B;;;;;GAKG;AACH,wBAJU,MAAM,CAIY;;;;;;;;;UAiyCd,MAAM;;;;;;WAIN,OAAO;;;;;;;eAGP,MAAM;;;;;;;;YAIN,OAAO;;;;;;;;WAKP,MAAM;;;;;;;eAKN,MAAM;;;;;;cAIN,MAAM;;;;;;gBAGN,MAAM;;;;;;eAMjB;QAA8B,UAAU,GAA7B,OAAO;QACY,gBAAgB,GAAnC,OAAO;QACY,gBAAgB,GAAnC,OAAO;QACW,KAAK,GAClC;YAAqC,KAAK,GAA/B,MAAM,EAAE;YACkB,gBAAgB,GAA1C,MAAM,EAAE;YACkB,KAAK,GAA/B,MAAM,EAAE;YACkB,KAAK,GAA/B,MAAM,EAAE;SACrB;KAAA;;AAz0CD;;;;;;;;GAQG;AACH,mCAJW,eAAe,GACb,OAAO,CAAC,WAAS,MAAM,CAAC,CAiCpC"}
|