code-gauge 3.0.0 → 4.0.0
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/README.md +83 -21
- package/dist/cli.cjs +3 -3
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +3 -3
- package/dist/cli.js.map +1 -1
- package/dist/cliConfig.cjs +1 -1
- package/dist/cliConfig.cjs.map +1 -1
- package/dist/cliConfig.d.ts +11 -0
- package/dist/cliConfig.js +1 -1
- package/dist/cliConfig.js.map +1 -1
- package/dist/crossFileDuplication.cjs +1 -1
- package/dist/crossFileDuplication.cjs.map +1 -1
- package/dist/crossFileDuplication.js +1 -1
- package/dist/crossFileDuplication.js.map +1 -1
- package/dist/diffCommand.cjs +5 -0
- package/dist/diffCommand.cjs.map +1 -0
- package/dist/diffCommand.d.ts +17 -0
- package/dist/diffCommand.js +5 -0
- package/dist/diffCommand.js.map +1 -0
- package/dist/duplication.cjs +1 -1
- package/dist/duplication.cjs.map +1 -1
- package/dist/duplication.d.ts +20 -24
- package/dist/duplication.js +1 -1
- package/dist/duplication.js.map +1 -1
- package/dist/git.cjs +2 -0
- package/dist/git.cjs.map +1 -0
- package/dist/git.d.ts +27 -0
- package/dist/git.js +2 -0
- package/dist/git.js.map +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1 -1
- package/dist/languages.cjs +1 -1
- package/dist/languages.cjs.map +1 -1
- package/dist/languages.d.ts +5 -0
- package/dist/languages.js +1 -1
- package/dist/languages.js.map +1 -1
- package/dist/metrics.cjs +1 -1
- package/dist/metrics.cjs.map +1 -1
- package/dist/metrics.d.ts +18 -5
- package/dist/metrics.js +1 -1
- package/dist/metrics.js.map +1 -1
- package/dist/nativeMetrics.cjs +3 -1
- package/dist/nativeMetrics.cjs.map +1 -1
- package/dist/nativeMetrics.d.ts +29 -10
- package/dist/nativeMetrics.js +3 -1
- package/dist/nativeMetrics.js.map +1 -1
- package/dist/regressionGate.cjs +2 -0
- package/dist/regressionGate.cjs.map +1 -0
- package/dist/regressionGate.d.ts +106 -0
- package/dist/regressionGate.js +2 -0
- package/dist/regressionGate.js.map +1 -0
- package/dist/scan.cjs +2 -0
- package/dist/scan.cjs.map +1 -0
- package/dist/scan.d.ts +55 -0
- package/dist/scan.js +2 -0
- package/dist/scan.js.map +1 -0
- package/dist/types.d.ts +18 -13
- package/native/Cargo.lock +523 -0
- package/native/Cargo.toml +45 -0
- package/native/build.rs +3 -0
- package/native/src/complexity.rs +627 -0
- package/native/src/dep_degree.rs +253 -0
- package/native/src/duplication.rs +2007 -0
- package/native/src/functions.rs +345 -0
- package/native/src/languages.rs +647 -0
- package/native/src/lib.rs +101 -0
- package/native/src/measure.rs +590 -0
- package/native/src/ncss.rs +263 -0
- package/native/src/types.rs +135 -0
- package/native/src/util.rs +139 -0
- package/package.json +16 -19
- package/scripts/buildNative.mjs +25 -0
- package/scripts/installNative.mjs +96 -0
- package/dist/ncss.cjs +0 -2
- package/dist/ncss.cjs.map +0 -1
- package/dist/ncss.d.ts +0 -17
- package/dist/ncss.js +0 -2
- package/dist/ncss.js.map +0 -1
package/dist/nativeMetrics.cjs
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
"use strict";
|
|
1
|
+
"use strict";let e=require("node:module");function t(e,t,n,r){return JSON.parse(l().measureCodeNative(i(e),t,n,a(r?.minTokens),a(r?.maxGapTokens),a(r?.minSimilarityPercent)))}function n(e,t,n){return JSON.parse(l().collectCrossFileDataNative(i(e),t,a(n)))}function r(e,t){return JSON.parse(l().collectFunctionTokenSequencesNative(i(e),t)).map(e=>Int32Array.from(e))}function i(e){return e.isWellFormed()?e:e.toWellFormed()}function a(e){return e===void 0||Number.isNaN(e)?void 0:Math.min(Math.max(Math.trunc(e),0),4294967295)}var o=class extends Error{};let s,c;function l(){if(s)return s;if(c)throw c;let t=(0,e.createRequire)(require("url").pathToFileURL(__filename).href),n=[`code-gauge-${u()}`,`../native/code-gauge.node`],r=[];for(let e of n){let n;try{n=t(e)}catch(t){r.push(` ${e}: ${t instanceof Error?t.message.split(`
|
|
2
|
+
`)[0]:String(t)}`);continue}let i=n.payloadVersion?.();if(i!==4){r.push(` ${e}: payload version ${i??`unknown`} does not match the expected 4; rebuild the addon with \`bun run build-native\``);continue}return s=n,n}throw c=new o(`The code-gauge native addon is not available for ${u()}. Build it with \`node scripts/buildNative.mjs\` in the code-gauge package directory (requires a Rust toolchain); when installing with npm, also allow install scripts for code-gauge so its postinstall build can run.\n${r.join(`
|
|
3
|
+
`)}`),c}function u(){let e=`${process.platform}-${process.arch}`;return process.platform===`win32`?`${e}-msvc`:process.platform===`linux`?(process.report?.getReport())?.header?.glibcVersionRuntime?`${e}-gnu`:`${e}-musl`:e}exports.NativeAddonError=o,exports.collectCrossFileDataNative=n,exports.collectFunctionTokenSequencesNative=r,exports.measureCodeNative=t;
|
|
2
4
|
//# sourceMappingURL=nativeMetrics.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nativeMetrics.cjs","names":["
|
|
1
|
+
{"version":3,"file":"nativeMetrics.cjs","names":["createRequire"],"sources":["../src/nativeMetrics.ts"],"sourcesContent":["import { createRequire } from 'node:module';\nimport type { CrossFileDuplicateCandidate, Token, TokenRange } from './duplication.js';\nimport type { CodeMetrics, DuplicationOptions, FunctionMetrics } from './types.js';\n\n/**\n * Halstead counts measured natively; the derived float metrics (volume, effort, ...) are\n * computed in TypeScript because they involve transcendental functions (log2) whose last-bit\n * results can differ between V8 and Rust's libm, and results must not depend on the Rust side's\n * libm build.\n */\nexport interface NativeHalsteadCounts {\n distinctOperators: number;\n distinctOperands: number;\n totalOperators: number;\n totalOperands: number;\n}\n\nexport interface NativeFunctionMetricsPayload extends Omit<FunctionMetrics, 'halstead'> {\n halsteadCounts: NativeHalsteadCounts;\n}\n\nexport interface NativeMetricsPayload extends Omit<CodeMetrics, 'halstead' | 'functions' | 'syntaxTree'> {\n functions: NativeFunctionMetricsPayload[];\n halsteadCounts: NativeHalsteadCounts;\n syntaxTree?: string;\n}\n\n/** One file's cross-file clone-detection contribution as serialized by the native addon. */\nexport interface NativeCrossFileDataPayload {\n candidates: CrossFileDuplicateCandidate[];\n tokens: Token[];\n containerStatements: TokenRange[][];\n /** 1-based lines that are neither blank nor comment-only, sorted ascending. */\n codeLineNumbers: number[];\n}\n\ninterface NativeBinding {\n measureCodeNative(\n code: string,\n language: string,\n includeSyntaxTree: boolean,\n minTokens?: number,\n maxGapTokens?: number,\n minSimilarityPercent?: number\n ): string;\n collectCrossFileDataNative(code: string, language: string, minTokens?: number): string;\n collectFunctionTokenSequencesNative(code: string, language: string): string;\n payloadVersion?(): number;\n}\n\n/**\n * Must equal `payload_version` in native/src/lib.rs. A previously built addon survives a\n * `git pull` untouched, so without this handshake it would silently return payloads missing\n * newer fields instead of failing with a clear rebuild message.\n */\nconst expectedPayloadVersion = 4;\n\n/** Measures one file via the native addon, returning the raw payload for assembly in metrics.ts. */\nexport function measureCodeNative(\n code: string,\n language: string,\n includeSyntaxTree: boolean,\n duplication?: DuplicationOptions\n): NativeMetricsPayload {\n return JSON.parse(\n loadBinding().measureCodeNative(\n toWellFormed(code),\n language,\n includeSyntaxTree,\n clampToU32(duplication?.minTokens),\n clampToU32(duplication?.maxGapTokens),\n clampToU32(duplication?.minSimilarityPercent)\n )\n ) as NativeMetricsPayload;\n}\n\n/** Collects one file's cross-file clone-detection contribution via the native addon. */\nexport function collectCrossFileDataNative(\n code: string,\n language: string,\n minTokens?: number\n): NativeCrossFileDataPayload {\n return JSON.parse(\n loadBinding().collectCrossFileDataNative(toWellFormed(code), language, clampToU32(minTokens))\n ) as NativeCrossFileDataPayload;\n}\n\n/** Collects normalized token hash sequences of every function via the native addon. */\nexport function collectFunctionTokenSequencesNative(code: string, language: string): Int32Array[] {\n const sequences = JSON.parse(\n loadBinding().collectFunctionTokenSequencesNative(toWellFormed(code), language)\n ) as number[][];\n return sequences.map((sequence) => Int32Array.from(sequence));\n}\n\n/**\n * Lone surrogates cannot cross the N-API boundary losslessly, so ill-formed strings (invalid\n * UTF-16 occasionally present in real-world files) are measured with U+FFFD replacements — the\n * same code units V8's own UTF-8 conversion would substitute.\n */\nfunction toWellFormed(code: string): string {\n return code.isWellFormed() ? code : code.toWellFormed();\n}\n\n/**\n * The duplication settings cross the boundary as u32, whose JavaScript conversion wraps modulo\n * 2^32 (2 ** 32 would become 0 and match everything). The public API accepts any safe integer, so\n * out-of-range values clamp to [0, u32::MAX] — no source can hold 2^32 tokens, so a clamped\n * threshold behaves identically to the requested one. NaN (e.g. `Number(unsetEnvVariable)`)\n * survives clamping arithmetic and would also convert to 0, so it is treated as an absent setting\n * instead.\n */\nfunction clampToU32(value: number | undefined): number | undefined {\n return value === undefined || Number.isNaN(value)\n ? undefined\n : Math.min(Math.max(Math.trunc(value), 0), 0xFF_FF_FF_FF);\n}\n\n/**\n * Raised when no usable native addon can be loaded. Every measurement fails identically until the\n * addon is built, so callers measuring many files (the CLI scan) treat it as fatal for the whole\n * run instead of recording one \"skipped\" entry per file.\n */\nexport class NativeAddonError extends Error {}\n\nlet cachedBinding: NativeBinding | undefined;\nlet cachedFailure: NativeAddonError | undefined;\n\nfunction loadBinding(): NativeBinding {\n if (cachedBinding) {\n return cachedBinding;\n }\n // The failure is memoized too: resolution (including platformTriplet's diagnostic-report call\n // on Linux) would otherwise repeat for every measured file of an already-failing run.\n if (cachedFailure) {\n throw cachedFailure;\n }\n // Resolved relative to this file, so both src/ (tests) and dist/ (build) find the addon.\n const requireNative = createRequire(import.meta.url);\n const specifiers = [\n // A prebuilt platform package, when published for this platform.\n `code-gauge-${platformTriplet()}`,\n // A locally built addon (`bun run build-native`).\n '../native/code-gauge.node',\n ];\n const failures: string[] = [];\n for (const specifier of specifiers) {\n let binding: NativeBinding;\n try {\n binding = requireNative(specifier) as NativeBinding;\n } catch (error) {\n failures.push(` ${specifier}: ${error instanceof Error ? error.message.split('\\n')[0] : String(error)}`);\n continue;\n }\n const version = binding.payloadVersion?.();\n if (version !== expectedPayloadVersion) {\n failures.push(\n ` ${specifier}: payload version ${version ?? 'unknown'} does not match the expected ` +\n `${expectedPayloadVersion}; rebuild the addon with \\`bun run build-native\\``\n );\n continue;\n }\n cachedBinding = binding;\n return binding;\n }\n cachedFailure = new NativeAddonError(\n `The code-gauge native addon is not available for ${platformTriplet()}. Build it with ` +\n '`node scripts/buildNative.mjs` in the code-gauge package directory (requires a Rust ' +\n 'toolchain); when installing with npm, also allow install scripts for code-gauge so its ' +\n `postinstall build can run.\\n${failures.join('\\n')}`\n );\n throw cachedFailure;\n}\n\n/**\n * The platform-package suffix in the napi-rs naming convention: Linux targets are qualified by\n * libc ABI (`linux-x64-gnu` / `linux-x64-musl`) because a glibc-linked addon cannot load on\n * Alpine/musl, and Windows by toolchain ABI (`win32-x64-msvc`), matching what napi-rs tooling\n * generates. Must match scripts/installNative.mjs and the build-native workflow's target list.\n */\nfunction platformTriplet(): string {\n const base = `${process.platform}-${process.arch}`;\n if (process.platform === 'win32') {\n return `${base}-msvc`;\n }\n if (process.platform !== 'linux') {\n return base;\n }\n // Musl builds of Node report no glibc runtime version; see napi-rs's isMusl detection.\n const report = process.report?.getReport() as { header?: { glibcVersionRuntime?: string } } | undefined;\n return report?.header?.glibcVersionRuntime ? `${base}-gnu` : `${base}-musl`;\n}\n"],"mappings":"0CA0DA,SAAgB,EACd,EACA,EACA,EACA,EACsB,CACtB,OAAO,KAAK,MACV,EAAY,CAAC,CAAC,kBACZ,EAAa,CAAI,EACjB,EACA,EACA,EAAW,GAAa,SAAS,EACjC,EAAW,GAAa,YAAY,EACpC,EAAW,GAAa,oBAAoB,CAC9C,CACF,CACF,CAGA,SAAgB,EACd,EACA,EACA,EAC4B,CAC5B,OAAO,KAAK,MACV,EAAY,CAAC,CAAC,2BAA2B,EAAa,CAAI,EAAG,EAAU,EAAW,CAAS,CAAC,CAC9F,CACF,CAGA,SAAgB,EAAoC,EAAc,EAAgC,CAIhG,OAHkB,KAAK,MACrB,EAAY,CAAC,CAAC,oCAAoC,EAAa,CAAI,EAAG,CAAQ,CAEjE,CAAC,CAAC,IAAK,GAAa,WAAW,KAAK,CAAQ,CAAC,CAC9D,CAOA,SAAS,EAAa,EAAsB,CAC1C,OAAO,EAAK,aAAa,EAAI,EAAO,EAAK,aAAa,CACxD,CAUA,SAAS,EAAW,EAA+C,CACjE,OAAO,IAAU,IAAA,IAAa,OAAO,MAAM,CAAK,EAC5C,IAAA,GACA,KAAK,IAAI,KAAK,IAAI,KAAK,MAAM,CAAK,EAAG,CAAC,EAAG,UAAa,CAC5D,CAOA,IAAa,EAAb,cAAsC,KAAM,CAAC,EAE7C,IAAI,EACA,EAEJ,SAAS,GAA6B,CACpC,GAAI,EACF,OAAO,EAIT,GAAI,EACF,MAAM,EAGR,IAAM,GAAA,EAAgBA,EAAAA,cAAAA,CAAAA,QAAAA,KAAAA,CAAAA,CAAAA,cAAAA,UAAAA,CAAAA,CAAAA,IAA6B,EAC7C,EAAa,CAEjB,cAAc,EAAgB,IAE9B,2BACF,EACM,EAAqB,CAAC,EAC5B,IAAK,IAAM,KAAa,EAAY,CAClC,IAAI,EACJ,GAAI,CACF,EAAU,EAAc,CAAS,CACnC,OAAS,EAAO,CACd,EAAS,KAAK,KAAK,EAAU,IAAI,aAAiB,MAAQ,EAAM,QAAQ,MAAM;CAAI,CAAC,CAAC,GAAK,OAAO,CAAK,GAAG,EACxG,QACF,CACA,IAAM,EAAU,EAAQ,iBAAiB,EACzC,GAAI,IAAY,EAAwB,CACtC,EAAS,KACP,KAAK,EAAU,oBAAoB,GAAW,UAAU,gFAE1D,EACA,QACF,CAEA,MADA,GAAgB,EACT,CACT,CAOA,KANA,GAAgB,IAAI,EAClB,oDAAoD,EAAgB,EAAE,2NAGrC,EAAS,KAAK;CAAI,GACrD,EACM,CACR,CAQA,SAAS,GAA0B,CACjC,IAAM,EAAO,GAAG,QAAQ,SAAS,GAAG,QAAQ,OAS5C,OARI,QAAQ,WAAa,QAChB,GAAG,EAAK,OAEb,QAAQ,WAAa,SAIV,QAAQ,QAAQ,UAAU,EAAA,EAC1B,QAAQ,oBAAsB,GAAG,EAAK,MAAQ,GAAG,EAAK,OAJ5D,CAKX"}
|
package/dist/nativeMetrics.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { CrossFileDuplicateCandidate, Token, TokenRange } from './duplication.js';
|
|
2
|
+
import type { CodeMetrics, DuplicationOptions, FunctionMetrics } from './types.js';
|
|
2
3
|
/**
|
|
3
4
|
* Halstead counts measured natively; the derived float metrics (volume, effort, ...) are
|
|
4
|
-
* computed in TypeScript because
|
|
5
|
-
*
|
|
5
|
+
* computed in TypeScript because they involve transcendental functions (log2) whose last-bit
|
|
6
|
+
* results can differ between V8 and Rust's libm, and results must not depend on the Rust side's
|
|
7
|
+
* libm build.
|
|
6
8
|
*/
|
|
7
9
|
export interface NativeHalsteadCounts {
|
|
8
10
|
distinctOperators: number;
|
|
@@ -10,15 +12,32 @@ export interface NativeHalsteadCounts {
|
|
|
10
12
|
totalOperators: number;
|
|
11
13
|
totalOperands: number;
|
|
12
14
|
}
|
|
13
|
-
export interface
|
|
15
|
+
export interface NativeFunctionMetricsPayload extends Omit<FunctionMetrics, 'halstead'> {
|
|
16
|
+
halsteadCounts: NativeHalsteadCounts;
|
|
17
|
+
}
|
|
18
|
+
export interface NativeMetricsPayload extends Omit<CodeMetrics, 'halstead' | 'functions' | 'syntaxTree'> {
|
|
19
|
+
functions: NativeFunctionMetricsPayload[];
|
|
14
20
|
halsteadCounts: NativeHalsteadCounts;
|
|
15
21
|
syntaxTree?: string;
|
|
16
22
|
}
|
|
23
|
+
/** One file's cross-file clone-detection contribution as serialized by the native addon. */
|
|
24
|
+
export interface NativeCrossFileDataPayload {
|
|
25
|
+
candidates: CrossFileDuplicateCandidate[];
|
|
26
|
+
tokens: Token[];
|
|
27
|
+
containerStatements: TokenRange[][];
|
|
28
|
+
/** 1-based lines that are neither blank nor comment-only, sorted ascending. */
|
|
29
|
+
codeLineNumbers: number[];
|
|
30
|
+
}
|
|
31
|
+
/** Measures one file via the native addon, returning the raw payload for assembly in metrics.ts. */
|
|
32
|
+
export declare function measureCodeNative(code: string, language: string, includeSyntaxTree: boolean, duplication?: DuplicationOptions): NativeMetricsPayload;
|
|
33
|
+
/** Collects one file's cross-file clone-detection contribution via the native addon. */
|
|
34
|
+
export declare function collectCrossFileDataNative(code: string, language: string, minTokens?: number): NativeCrossFileDataPayload;
|
|
35
|
+
/** Collects normalized token hash sequences of every function via the native addon. */
|
|
36
|
+
export declare function collectFunctionTokenSequencesNative(code: string, language: string): Int32Array[];
|
|
17
37
|
/**
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
38
|
+
* Raised when no usable native addon can be loaded. Every measurement fails identically until the
|
|
39
|
+
* addon is built, so callers measuring many files (the CLI scan) treat it as fatal for the whole
|
|
40
|
+
* run instead of recording one "skipped" entry per file.
|
|
21
41
|
*/
|
|
22
|
-
export declare
|
|
23
|
-
|
|
24
|
-
export declare function isNativeBackendAvailable(): boolean;
|
|
42
|
+
export declare class NativeAddonError extends Error {
|
|
43
|
+
}
|
package/dist/nativeMetrics.js
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
import{
|
|
1
|
+
import{createRequire as e}from"node:module";function t(e,t,n,r){return JSON.parse(l().measureCodeNative(i(e),t,n,a(r?.minTokens),a(r?.maxGapTokens),a(r?.minSimilarityPercent)))}function n(e,t,n){return JSON.parse(l().collectCrossFileDataNative(i(e),t,a(n)))}function r(e,t){return JSON.parse(l().collectFunctionTokenSequencesNative(i(e),t)).map(e=>Int32Array.from(e))}function i(e){return e.isWellFormed()?e:e.toWellFormed()}function a(e){return e===void 0||Number.isNaN(e)?void 0:Math.min(Math.max(Math.trunc(e),0),4294967295)}var o=class extends Error{};let s,c;function l(){if(s)return s;if(c)throw c;let t=e(import.meta.url),n=[`code-gauge-${u()}`,`../native/code-gauge.node`],r=[];for(let e of n){let n;try{n=t(e)}catch(t){r.push(` ${e}: ${t instanceof Error?t.message.split(`
|
|
2
|
+
`)[0]:String(t)}`);continue}let i=n.payloadVersion?.();if(i!==4){r.push(` ${e}: payload version ${i??`unknown`} does not match the expected 4; rebuild the addon with \`bun run build-native\``);continue}return s=n,n}throw c=new o(`The code-gauge native addon is not available for ${u()}. Build it with \`node scripts/buildNative.mjs\` in the code-gauge package directory (requires a Rust toolchain); when installing with npm, also allow install scripts for code-gauge so its postinstall build can run.\n${r.join(`
|
|
3
|
+
`)}`),c}function u(){let e=`${process.platform}-${process.arch}`;return process.platform===`win32`?`${e}-msvc`:process.platform===`linux`?(process.report?.getReport())?.header?.glibcVersionRuntime?`${e}-gnu`:`${e}-musl`:e}export{o as NativeAddonError,n as collectCrossFileDataNative,r as collectFunctionTokenSequencesNative,t as measureCodeNative};
|
|
2
4
|
//# sourceMappingURL=nativeMetrics.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nativeMetrics.js","names":[],"sources":["../src/nativeMetrics.ts"],"sourcesContent":["import { createRequire } from 'node:module';\nimport {
|
|
1
|
+
{"version":3,"file":"nativeMetrics.js","names":[],"sources":["../src/nativeMetrics.ts"],"sourcesContent":["import { createRequire } from 'node:module';\nimport type { CrossFileDuplicateCandidate, Token, TokenRange } from './duplication.js';\nimport type { CodeMetrics, DuplicationOptions, FunctionMetrics } from './types.js';\n\n/**\n * Halstead counts measured natively; the derived float metrics (volume, effort, ...) are\n * computed in TypeScript because they involve transcendental functions (log2) whose last-bit\n * results can differ between V8 and Rust's libm, and results must not depend on the Rust side's\n * libm build.\n */\nexport interface NativeHalsteadCounts {\n distinctOperators: number;\n distinctOperands: number;\n totalOperators: number;\n totalOperands: number;\n}\n\nexport interface NativeFunctionMetricsPayload extends Omit<FunctionMetrics, 'halstead'> {\n halsteadCounts: NativeHalsteadCounts;\n}\n\nexport interface NativeMetricsPayload extends Omit<CodeMetrics, 'halstead' | 'functions' | 'syntaxTree'> {\n functions: NativeFunctionMetricsPayload[];\n halsteadCounts: NativeHalsteadCounts;\n syntaxTree?: string;\n}\n\n/** One file's cross-file clone-detection contribution as serialized by the native addon. */\nexport interface NativeCrossFileDataPayload {\n candidates: CrossFileDuplicateCandidate[];\n tokens: Token[];\n containerStatements: TokenRange[][];\n /** 1-based lines that are neither blank nor comment-only, sorted ascending. */\n codeLineNumbers: number[];\n}\n\ninterface NativeBinding {\n measureCodeNative(\n code: string,\n language: string,\n includeSyntaxTree: boolean,\n minTokens?: number,\n maxGapTokens?: number,\n minSimilarityPercent?: number\n ): string;\n collectCrossFileDataNative(code: string, language: string, minTokens?: number): string;\n collectFunctionTokenSequencesNative(code: string, language: string): string;\n payloadVersion?(): number;\n}\n\n/**\n * Must equal `payload_version` in native/src/lib.rs. A previously built addon survives a\n * `git pull` untouched, so without this handshake it would silently return payloads missing\n * newer fields instead of failing with a clear rebuild message.\n */\nconst expectedPayloadVersion = 4;\n\n/** Measures one file via the native addon, returning the raw payload for assembly in metrics.ts. */\nexport function measureCodeNative(\n code: string,\n language: string,\n includeSyntaxTree: boolean,\n duplication?: DuplicationOptions\n): NativeMetricsPayload {\n return JSON.parse(\n loadBinding().measureCodeNative(\n toWellFormed(code),\n language,\n includeSyntaxTree,\n clampToU32(duplication?.minTokens),\n clampToU32(duplication?.maxGapTokens),\n clampToU32(duplication?.minSimilarityPercent)\n )\n ) as NativeMetricsPayload;\n}\n\n/** Collects one file's cross-file clone-detection contribution via the native addon. */\nexport function collectCrossFileDataNative(\n code: string,\n language: string,\n minTokens?: number\n): NativeCrossFileDataPayload {\n return JSON.parse(\n loadBinding().collectCrossFileDataNative(toWellFormed(code), language, clampToU32(minTokens))\n ) as NativeCrossFileDataPayload;\n}\n\n/** Collects normalized token hash sequences of every function via the native addon. */\nexport function collectFunctionTokenSequencesNative(code: string, language: string): Int32Array[] {\n const sequences = JSON.parse(\n loadBinding().collectFunctionTokenSequencesNative(toWellFormed(code), language)\n ) as number[][];\n return sequences.map((sequence) => Int32Array.from(sequence));\n}\n\n/**\n * Lone surrogates cannot cross the N-API boundary losslessly, so ill-formed strings (invalid\n * UTF-16 occasionally present in real-world files) are measured with U+FFFD replacements — the\n * same code units V8's own UTF-8 conversion would substitute.\n */\nfunction toWellFormed(code: string): string {\n return code.isWellFormed() ? code : code.toWellFormed();\n}\n\n/**\n * The duplication settings cross the boundary as u32, whose JavaScript conversion wraps modulo\n * 2^32 (2 ** 32 would become 0 and match everything). The public API accepts any safe integer, so\n * out-of-range values clamp to [0, u32::MAX] — no source can hold 2^32 tokens, so a clamped\n * threshold behaves identically to the requested one. NaN (e.g. `Number(unsetEnvVariable)`)\n * survives clamping arithmetic and would also convert to 0, so it is treated as an absent setting\n * instead.\n */\nfunction clampToU32(value: number | undefined): number | undefined {\n return value === undefined || Number.isNaN(value)\n ? undefined\n : Math.min(Math.max(Math.trunc(value), 0), 0xFF_FF_FF_FF);\n}\n\n/**\n * Raised when no usable native addon can be loaded. Every measurement fails identically until the\n * addon is built, so callers measuring many files (the CLI scan) treat it as fatal for the whole\n * run instead of recording one \"skipped\" entry per file.\n */\nexport class NativeAddonError extends Error {}\n\nlet cachedBinding: NativeBinding | undefined;\nlet cachedFailure: NativeAddonError | undefined;\n\nfunction loadBinding(): NativeBinding {\n if (cachedBinding) {\n return cachedBinding;\n }\n // The failure is memoized too: resolution (including platformTriplet's diagnostic-report call\n // on Linux) would otherwise repeat for every measured file of an already-failing run.\n if (cachedFailure) {\n throw cachedFailure;\n }\n // Resolved relative to this file, so both src/ (tests) and dist/ (build) find the addon.\n const requireNative = createRequire(import.meta.url);\n const specifiers = [\n // A prebuilt platform package, when published for this platform.\n `code-gauge-${platformTriplet()}`,\n // A locally built addon (`bun run build-native`).\n '../native/code-gauge.node',\n ];\n const failures: string[] = [];\n for (const specifier of specifiers) {\n let binding: NativeBinding;\n try {\n binding = requireNative(specifier) as NativeBinding;\n } catch (error) {\n failures.push(` ${specifier}: ${error instanceof Error ? error.message.split('\\n')[0] : String(error)}`);\n continue;\n }\n const version = binding.payloadVersion?.();\n if (version !== expectedPayloadVersion) {\n failures.push(\n ` ${specifier}: payload version ${version ?? 'unknown'} does not match the expected ` +\n `${expectedPayloadVersion}; rebuild the addon with \\`bun run build-native\\``\n );\n continue;\n }\n cachedBinding = binding;\n return binding;\n }\n cachedFailure = new NativeAddonError(\n `The code-gauge native addon is not available for ${platformTriplet()}. Build it with ` +\n '`node scripts/buildNative.mjs` in the code-gauge package directory (requires a Rust ' +\n 'toolchain); when installing with npm, also allow install scripts for code-gauge so its ' +\n `postinstall build can run.\\n${failures.join('\\n')}`\n );\n throw cachedFailure;\n}\n\n/**\n * The platform-package suffix in the napi-rs naming convention: Linux targets are qualified by\n * libc ABI (`linux-x64-gnu` / `linux-x64-musl`) because a glibc-linked addon cannot load on\n * Alpine/musl, and Windows by toolchain ABI (`win32-x64-msvc`), matching what napi-rs tooling\n * generates. Must match scripts/installNative.mjs and the build-native workflow's target list.\n */\nfunction platformTriplet(): string {\n const base = `${process.platform}-${process.arch}`;\n if (process.platform === 'win32') {\n return `${base}-msvc`;\n }\n if (process.platform !== 'linux') {\n return base;\n }\n // Musl builds of Node report no glibc runtime version; see napi-rs's isMusl detection.\n const report = process.report?.getReport() as { header?: { glibcVersionRuntime?: string } } | undefined;\n return report?.header?.glibcVersionRuntime ? `${base}-gnu` : `${base}-musl`;\n}\n"],"mappings":"4CA0DA,SAAgB,EACd,EACA,EACA,EACA,EACsB,CACtB,OAAO,KAAK,MACV,EAAY,CAAC,CAAC,kBACZ,EAAa,CAAI,EACjB,EACA,EACA,EAAW,GAAa,SAAS,EACjC,EAAW,GAAa,YAAY,EACpC,EAAW,GAAa,oBAAoB,CAC9C,CACF,CACF,CAGA,SAAgB,EACd,EACA,EACA,EAC4B,CAC5B,OAAO,KAAK,MACV,EAAY,CAAC,CAAC,2BAA2B,EAAa,CAAI,EAAG,EAAU,EAAW,CAAS,CAAC,CAC9F,CACF,CAGA,SAAgB,EAAoC,EAAc,EAAgC,CAIhG,OAHkB,KAAK,MACrB,EAAY,CAAC,CAAC,oCAAoC,EAAa,CAAI,EAAG,CAAQ,CAEjE,CAAC,CAAC,IAAK,GAAa,WAAW,KAAK,CAAQ,CAAC,CAC9D,CAOA,SAAS,EAAa,EAAsB,CAC1C,OAAO,EAAK,aAAa,EAAI,EAAO,EAAK,aAAa,CACxD,CAUA,SAAS,EAAW,EAA+C,CACjE,OAAO,IAAU,IAAA,IAAa,OAAO,MAAM,CAAK,EAC5C,IAAA,GACA,KAAK,IAAI,KAAK,IAAI,KAAK,MAAM,CAAK,EAAG,CAAC,EAAG,UAAa,CAC5D,CAOA,IAAa,EAAb,cAAsC,KAAM,CAAC,EAE7C,IAAI,EACA,EAEJ,SAAS,GAA6B,CACpC,GAAI,EACF,OAAO,EAIT,GAAI,EACF,MAAM,EAGR,IAAM,EAAgB,EAAc,YAAY,GAAG,EAC7C,EAAa,CAEjB,cAAc,EAAgB,IAE9B,2BACF,EACM,EAAqB,CAAC,EAC5B,IAAK,IAAM,KAAa,EAAY,CAClC,IAAI,EACJ,GAAI,CACF,EAAU,EAAc,CAAS,CACnC,OAAS,EAAO,CACd,EAAS,KAAK,KAAK,EAAU,IAAI,aAAiB,MAAQ,EAAM,QAAQ,MAAM;CAAI,CAAC,CAAC,GAAK,OAAO,CAAK,GAAG,EACxG,QACF,CACA,IAAM,EAAU,EAAQ,iBAAiB,EACzC,GAAI,IAAY,EAAwB,CACtC,EAAS,KACP,KAAK,EAAU,oBAAoB,GAAW,UAAU,gFAE1D,EACA,QACF,CAEA,MADA,GAAgB,EACT,CACT,CAOA,KANA,GAAgB,IAAI,EAClB,oDAAoD,EAAgB,EAAE,2NAGrC,EAAS,KAAK;CAAI,GACrD,EACM,CACR,CAQA,SAAS,GAA0B,CACjC,IAAM,EAAO,GAAG,QAAQ,SAAS,GAAG,QAAQ,OAS5C,OARI,QAAQ,WAAa,QAChB,GAAG,EAAK,OAEb,QAAQ,WAAa,SAIV,QAAQ,QAAQ,UAAU,EAAA,EAC1B,QAAQ,oBAAsB,GAAG,EAAK,MAAQ,GAAG,EAAK,OAJ5D,CAKX"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";const e=require("./duplication.cjs"),t={newFunction:{maxCognitiveComplexity:15,maxNcss:60,maxNestingDepth:4},tolerance:{cognitiveComplexity:2,ncss:5,nestingDepth:1,depDegree:10,halsteadVolume:150,fileNcss:20,duplicateLines:0},matchSimilarityPercent:70},n=String,r=[{metric:`cognitive complexity`,value:e=>e.cognitiveComplexity,allowance:e=>e.cognitiveComplexity,remediation:`Simplify the added branching or split the function.`,format:n},{metric:`NCSS`,value:e=>e.ncss,allowance:e=>e.ncss,remediation:`Extract the added statements into helper functions or remove them.`,format:n},{metric:`max nesting depth`,value:e=>e.nestingDepth,allowance:e=>e.nestingDepth,remediation:`Flatten the added nesting with early returns or extracted helpers.`,format:n},{metric:`DepDegree`,value:e=>e.depDegree,allowance:e=>e.depDegree,remediation:`Reduce how many earlier definitions the code reads, e.g. by splitting the data flow.`,format:n},{metric:`Halstead volume`,value:e=>e.halstead.volume,allowance:(e,t)=>Math.max(e.halsteadVolume,t*.25),remediation:`Shrink the function: fewer distinct names and operations.`,format:e=>e.toFixed(1)}],i=[{metric:`cognitive complexity`,value:e=>e.cognitiveComplexity,limit:e=>e.maxCognitiveComplexity,remediation:`Split the new function or simplify its branching.`},{metric:`NCSS`,value:e=>e.ncss,limit:e=>e.maxNcss,remediation:`Split the new function into smaller ones.`},{metric:`max nesting depth`,value:e=>e.nestingDepth,limit:e=>e.maxNestingDepth,remediation:`Flatten the new function with early returns or extracted helpers.`}];function a(e,t){let n=l(e,t.matchSimilarityPercent),r=[],i=[],a=0,c=0;for(let o of n.pairs){let n=e[o.headFileIndex];n.gated!==!1&&(a+=1,r.push(...y(n.file,o.base,o.head,t.tolerance)),i.push(s(n.file,o.head,o.base)))}let u=0;for(let[a,l]of e.entries()){if(l.gated===!1)continue;u+=1;let e=l.headMetrics?.functions??[],d=n.headMatched[a];for(let[n,a]of e.entries())d[n]||(c+=1,r.push(...b(l.file,a,t.newFunction)),i.push(s(l.file,a)));r.push(...x(l,o(l,a,n),r,t)),r.push(...C(l,t.tolerance))}return r.sort((e,t)=>e.file.localeCompare(t.file)||e.startLine-t.startLine),i.sort((e,t)=>e.file.localeCompare(t.file)||e.startLine-t.startLine),{violations:r,checkedFileCount:u,checkedFunctionCount:a+c,newFunctionCount:c,checkedFunctions:i}}function o(e,t,n){let r=e.baseMetrics?.functions??[],i=n.baseMatched[t],a=n.headMatched[t],o=r.flatMap((e,t)=>!i[t]&&e.name!==void 0?[t]:[]);if(o.length===0)return!1;let s=(e.headMetrics?.functions??[]).flatMap((e,t)=>a[t]?[]:[t]);return o.length*s.length>f?!1:o.some(t=>s.some(n=>v(e.baseFunctionTokens?.[t],e.headFunctionTokens?.[n],30)>=30))}function s(e,t,n){return{file:e,name:t.name??`<anonymous>`,startLine:t.startLine,endLine:t.endLine,base:n?c(n):void 0,head:c(t)}}function c(e){return{cognitiveComplexity:e.cognitiveComplexity,ncss:e.ncss,nestingDepth:e.nestingDepth,depDegree:e.depDegree,halsteadVolume:e.halstead.volume}}function l(e,t){let n=e.map(e=>(e.baseMetrics?.functions??[]).map(()=>!1)),r=e.map(e=>(e.headMetrics?.functions??[]).map(()=>!1)),i=[];for(let t of e.keys()){let a=a=>{let o=d(u(e,n,`base`,t),a),s=d(u(e,r,`head`,t),a);for(let[e,t]of o)p(t,s.get(e)??[],n,r,i)};a(e=>e.name===void 0?void 0:`${e.name}\u0000${e.parameterCount}`),a(e=>e.name)}return m(e,n,r,i,t),{pairs:i,baseMatched:n,headMatched:r}}function u(e,t,n,r){let i=[];for(let[a,o]of e.entries()){if(r!==void 0&&a!==r)continue;let e=t[a],s=n===`base`?o.baseMetrics:o.headMetrics,c=n===`base`?o.baseFunctionTokens:o.headFunctionTokens;for(let[t,n]of(s?.functions??[]).entries())e[t]||i.push({fileIndex:a,functionIndex:t,fn:n,tokens:c?.[t]})}return i}function d(e,t){let n=new Map;for(let r of e){let e=t(r.fn);if(e===void 0)continue;let i=n.get(e)??[];i.push(r),n.set(e,i)}return n}const f=1e4;function p(e,t,n,r,i){let a=e.length+t.length>2&&e.length*t.length<=f,o=[];for(let[n,r]of e.entries())for(let[e,i]of t.entries())o.push({similarity:a?v(r.tokens,i.tokens,0):0,basePosition:n,headPosition:e});h(o,e,t,n,r,i)}function m(e,t,n,r,i){let a=u(e,t,`base`),o=u(e,n,`head`);if(a.length*o.length>f)return;let s=[];for(let[e,t]of a.entries())for(let[n,r]of o.entries()){let a=v(t.tokens,r.tokens,i);a>=i&&s.push({similarity:a,basePosition:e,headPosition:n})}h(s,a,o,t,n,r)}function h(e,t,n,r,i,a){e.sort((e,t)=>t.similarity-e.similarity||e.basePosition-t.basePosition||e.headPosition-t.headPosition);let o=new Map,s=new Map,c=new Set,l=g(e,o,s,c);for(let e of[...o.keys()].toSorted((e,t)=>e-t))l.has(e)||_(e,o,s,c,new Set);for(let[e,o]of[...s.entries()].toSorted((e,t)=>e[0]-t[0])){let s=t[o],c=n[e];r[s.fileIndex][s.functionIndex]=!0,i[c.fileIndex][c.functionIndex]=!0,a.push({base:s.fn,head:c.fn,headFileIndex:c.fileIndex})}}function g(e,t,n,r){let i=new Set;for(let a of e){let e=t.get(a.basePosition)??[];e.push(a.headPosition),t.set(a.basePosition,e),!i.has(a.basePosition)&&!n.has(a.headPosition)&&(n.set(a.headPosition,a.basePosition),i.add(a.basePosition),a.similarity===100&&r.add(a.headPosition))}return i}function _(e,t,n,r,i){for(let a of t.get(e)??[]){if(i.has(a)||r.has(a))continue;i.add(a);let o=n.get(a);if(o===void 0||_(o,t,n,r,i))return n.set(a,e),!0}return!1}function v(t,n,r){if(!t||!n||t.length===0||n.length===0)return 0;let i=Math.max(t.length,n.length);return Math.min(t.length,n.length)*100<r*i?0:e.lcsLength(t,n)*100/i}function y(e,t,n,i){let a=[];for(let o of r){let r=o.value(t),s=o.value(n),c=r+o.allowance(i,r);if(s>c){let t=n.name??`<anonymous>`;a.push({gate:`function-regression`,metric:o.metric,file:e,functionName:t,startLine:n.startLine,endLine:n.endLine,baseValue:r,headValue:s,allowedValue:c,message:`${e}:${n.startLine}-${n.endLine} ${t}: ${o.metric} worsened ${o.format(r)} -> ${o.format(s)} (allowed <= ${o.format(c)}). `+o.remediation})}}return a}function b(e,t,n){let r=[];for(let a of i){let i=a.value(t),o=a.limit(n);if(i>o){let n=t.name??`<anonymous>`;r.push({gate:`new-function`,metric:a.metric,file:e,functionName:n,startLine:t.startLine,endLine:t.endLine,headValue:i,allowedValue:o,message:`${e}:${t.startLine}-${t.endLine} new function ${n}: ${a.metric} ${i} exceeds the new-code limit ${o}. ${a.remediation}`})}}return r}function x(e,t,n,r){let{baseMetrics:i,headMetrics:a}=e;if(!i||!a||!t)return[];let o=[],s=r.tolerance,c=n.some(t=>t.file===e.file&&t.metric===`cognitive complexity`&&(t.gate===`function-regression`||t.gate===`new-function`)&&t.headValue===a.maxCognitiveComplexity),l=i.maxCognitiveComplexity+s.cognitiveComplexity;if(!c&&a.maxCognitiveComplexity>l){let t=S(a.functions),n=t?.startLine??1,r=t?.endLine??a.lines.total;o.push({gate:`file-regression`,metric:`file max cognitive complexity`,file:e.file,functionName:t?.name??void 0,startLine:n,endLine:r,baseValue:i.maxCognitiveComplexity,headValue:a.maxCognitiveComplexity,allowedValue:l,message:`${e.file}:${n}-${r}: the file's max cognitive complexity worsened ${i.maxCognitiveComplexity} -> ${a.maxCognitiveComplexity} (allowed <= ${l}). Simplify or split the most complex function${t?` (${t.name??`<anonymous>`})`:``}.`})}let u=i.ncssCount+s.fileNcss;return a.ncssCount>u&&o.push({gate:`file-regression`,metric:`file NCSS`,file:e.file,startLine:1,endLine:a.lines.total,baseValue:i.ncssCount,headValue:a.ncssCount,allowedValue:u,message:`${e.file}:1-${a.lines.total}: functions were removed or split while the file grew from NCSS ${i.ncssCount} to ${a.ncssCount} (allowed <= ${u}). Remove the added statements or move genuinely new code into its own module.`}),o}function S(e){let t;for(let n of e)(!t||n.cognitiveComplexity>t.cognitiveComplexity)&&(t=n);return t}function C(e,t){let n=e.baseDuplicatedLineCount+t.duplicateLines;if(e.headDuplicatedLineCount<=n)return[];let r=e.duplicationPartners.slice(0,3).join(`, `),i=e.headMetrics?.lines.total??1;return[{gate:`duplication`,metric:`duplicated lines`,file:e.file,startLine:1,endLine:i,baseValue:e.baseDuplicatedLineCount,headValue:e.headDuplicatedLineCount,allowedValue:n,message:`${e.file}:1-${i}: duplicated lines increased ${e.baseDuplicatedLineCount} -> ${e.headDuplicatedLineCount} (allowed <= ${n}). Deduplicate${r?` against ${r}`:` the repeated code`} by extracting a shared helper.`}]}exports.defaultGateOptions=t,exports.evaluateRegressionGate=a;
|
|
2
|
+
//# sourceMappingURL=regressionGate.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"regressionGate.cjs","names":["lcsLength"],"sources":["../src/regressionGate.ts"],"sourcesContent":["import { lcsLength } from './duplication.js';\nimport type { CodeMetrics, FunctionMetrics } from './types.js';\n\n/**\n * Absolute limits applied only to functions with no base counterpart (SonarQube-style \"Clean as\n * You Code\"): new code is the one place absolute thresholds are required, since there is nothing\n * to ratchet against.\n */\nexport interface NewFunctionThresholds {\n maxCognitiveComplexity: number;\n maxNcss: number;\n maxNestingDepth: number;\n}\n\n/**\n * Allowances added on top of each base value before a ratchet fires, so legitimate refactorings\n * that transiently worsen one number (e.g. an extraction adding a few NCSS lines) don't trap the\n * agent in a loop.\n */\nexport interface GateTolerances {\n cognitiveComplexity: number;\n ncss: number;\n nestingDepth: number;\n depDegree: number;\n halsteadVolume: number;\n /** File-total NCSS growth allowed when base functions disappeared (the anti-gaming backstop). */\n fileNcss: number;\n /** Duplicated-line growth allowed per changed file. */\n duplicateLines: number;\n}\n\nexport interface GateOptions {\n newFunction: NewFunctionThresholds;\n tolerance: GateTolerances;\n /**\n * Minimum token-LCS similarity percent for re-matching a renamed/moved function to its base\n * counterpart, so renames don't appear as delete+add and hit the new-code thresholds.\n */\n matchSimilarityPercent: number;\n}\n\nexport const defaultGateOptions: GateOptions = {\n // 15 is SonarSource's conventional default; 4 is where the measured cognitive-load response to\n // nesting saturates (Peitek et al. 2021); 60 matches PMD's NcssCount method default.\n newFunction: { maxCognitiveComplexity: 15, maxNcss: 60, maxNestingDepth: 4 },\n // The per-metric allowances are calibrated to admit roughly the same edit: ~5 added statements\n // or one added branch (cognitive 2 ~ nesting 1 ~ ncss 5 ~ depDegree 10 ~ Halstead volume 150;\n // the volume allowance additionally scales with the base value, see ratchetMetrics), so one\n // ratchet cannot block an addition the others deliberately allow.\n tolerance: {\n cognitiveComplexity: 2,\n ncss: 5,\n nestingDepth: 1,\n depDegree: 10,\n halsteadVolume: 150,\n fileNcss: 20,\n duplicateLines: 0,\n },\n matchSimilarityPercent: 70,\n};\n\n/** One changed file with both revisions measured; the caller resolves git and duplication data. */\nexport interface GateFileInput {\n /** Display path (repository-relative head path; base path for deleted files). */\n file: string;\n /** Absent for added files. */\n baseMetrics?: CodeMetrics;\n /** Absent for deleted files. */\n headMetrics?: CodeMetrics;\n /** Token sequences index-parallel to baseMetrics.functions, for similarity re-matching. */\n baseFunctionTokens?: Int32Array[];\n headFunctionTokens?: Int32Array[];\n /** Distinct duplicated lines of this file at the base revision (within-file and cross-file). */\n baseDuplicatedLineCount: number;\n headDuplicatedLineCount: number;\n /** Other files sharing cross-file duplicates with this file at head, as remediation evidence. */\n duplicationPartners: string[];\n /**\n * false: the file only feeds function matching and the duplication universes (it lies outside\n * the gated target directory); no violations are evaluated or reported for it. Default true.\n */\n gated?: boolean;\n}\n\nexport interface GateViolation {\n gate: 'function-regression' | 'new-function' | 'file-regression' | 'duplication';\n metric: string;\n file: string;\n functionName?: string;\n startLine: number;\n endLine: number;\n /** Absent for new-function violations, which have no base value. */\n baseValue?: number;\n headValue: number;\n /** The largest value that would have passed. */\n allowedValue: number;\n /** One-line human/agent-readable statement with the remediation direction. */\n message: string;\n}\n\n/** The gated per-function values of one checked (matched or new) function, for `--full` output. */\nexport interface CheckedFunctionReport {\n /** The head file (a cross-file move is reported where the function now lives). */\n file: string;\n name: string;\n startLine: number;\n endLine: number;\n /** Absent for new functions. */\n base?: GateFunctionValues;\n head: GateFunctionValues;\n}\n\nexport interface GateFunctionValues {\n cognitiveComplexity: number;\n ncss: number;\n nestingDepth: number;\n depDegree: number;\n halsteadVolume: number;\n}\n\nexport interface GateResult {\n violations: GateViolation[];\n checkedFileCount: number;\n checkedFunctionCount: number;\n newFunctionCount: number;\n /** Every checked function with its gated values, ordered by file and line. */\n checkedFunctions: CheckedFunctionReport[];\n}\n\ninterface RatchetMetric {\n metric: string;\n value: (fn: FunctionMetrics) => number;\n /** The growth allowed on top of the base value before the ratchet fires. */\n allowance: (tolerances: GateTolerances, baseValue: number) => number;\n remediation: string;\n format: (value: number) => string;\n}\n\nconst formatInteger = String;\nconst formatFloat = (value: number): string => value.toFixed(1);\n\n/**\n * Gate-eligible per-function metrics (monotone, stable, actionable): a matched function must not\n * worsen any of them beyond its tolerance. \"Your change made this function worse\" is defensible\n * regardless of metric calibration, so no absolute threshold is involved.\n */\nconst ratchetMetrics: RatchetMetric[] = [\n {\n metric: 'cognitive complexity',\n value: (fn) => fn.cognitiveComplexity,\n allowance: (tolerances) => tolerances.cognitiveComplexity,\n remediation: 'Simplify the added branching or split the function.',\n format: formatInteger,\n },\n {\n metric: 'NCSS',\n value: (fn) => fn.ncss,\n allowance: (tolerances) => tolerances.ncss,\n remediation: 'Extract the added statements into helper functions or remove them.',\n format: formatInteger,\n },\n {\n metric: 'max nesting depth',\n value: (fn) => fn.nestingDepth,\n allowance: (tolerances) => tolerances.nestingDepth,\n remediation: 'Flatten the added nesting with early returns or extracted helpers.',\n format: formatInteger,\n },\n {\n metric: 'DepDegree',\n value: (fn) => fn.depDegree,\n allowance: (tolerances) => tolerances.depDegree,\n remediation: 'Reduce how many earlier definitions the code reads, e.g. by splitting the data flow.',\n format: formatInteger,\n },\n {\n metric: 'Halstead volume',\n value: (fn) => fn.halstead.volume,\n // Volume grows as length * log2(vocabulary), so a flat allowance that admits ~5 statements in\n // a small function admits barely one in a large-vocabulary function; the relative term keeps\n // the ~5-statement calibration at every function size.\n allowance: (tolerances, baseValue) => Math.max(tolerances.halsteadVolume, baseValue * 0.25),\n remediation: 'Shrink the function: fewer distinct names and operations.',\n format: formatFloat,\n },\n];\n\ninterface NewFunctionMetric {\n metric: string;\n value: (fn: FunctionMetrics) => number;\n limit: (thresholds: NewFunctionThresholds) => number;\n remediation: string;\n}\n\nconst newFunctionMetrics: NewFunctionMetric[] = [\n {\n metric: 'cognitive complexity',\n value: (fn) => fn.cognitiveComplexity,\n limit: (thresholds) => thresholds.maxCognitiveComplexity,\n remediation: 'Split the new function or simplify its branching.',\n },\n {\n metric: 'NCSS',\n value: (fn) => fn.ncss,\n limit: (thresholds) => thresholds.maxNcss,\n remediation: 'Split the new function into smaller ones.',\n },\n {\n metric: 'max nesting depth',\n value: (fn) => fn.nestingDepth,\n limit: (thresholds) => thresholds.maxNestingDepth,\n remediation: 'Flatten the new function with early returns or extracted helpers.',\n },\n];\n\n/**\n * Evaluates the regression gate over changed files measured at both revisions. Violations are the\n * whole output contract: everything that passes stays silent, so a clean change costs the\n * consuming agent almost no tokens.\n */\nexport function evaluateRegressionGate(files: GateFileInput[], options: GateOptions): GateResult {\n const matching = matchAllFunctions(files, options.matchSimilarityPercent);\n const violations: GateViolation[] = [];\n const checkedFunctions: CheckedFunctionReport[] = [];\n let checkedPairCount = 0;\n let newFunctionCount = 0;\n\n for (const pair of matching.pairs) {\n const file = files[pair.headFileIndex] as GateFileInput;\n if (file.gated === false) {\n continue;\n }\n checkedPairCount += 1;\n violations.push(...checkRatchets(file.file, pair.base, pair.head, options.tolerance));\n checkedFunctions.push(toFunctionReport(file.file, pair.head, pair.base));\n }\n\n let gatedFileCount = 0;\n for (const [fileIndex, file] of files.entries()) {\n if (file.gated === false) {\n continue;\n }\n gatedFileCount += 1;\n const headFunctions = file.headMetrics?.functions ?? [];\n const headMatched = matching.headMatched[fileIndex] as boolean[];\n for (const [functionIndex, fn] of headFunctions.entries()) {\n if (headMatched[functionIndex]) {\n continue;\n }\n newFunctionCount += 1;\n violations.push(...checkNewFunction(file.file, fn, options.newFunction));\n checkedFunctions.push(toFunctionReport(file.file, fn));\n }\n violations.push(...checkFileBackstops(file, hasSplitEvidence(file, fileIndex, matching), violations, options));\n violations.push(...checkDuplication(file, options.tolerance));\n }\n\n violations.sort((left, right) => left.file.localeCompare(right.file) || left.startLine - right.startLine);\n checkedFunctions.sort((left, right) => left.file.localeCompare(right.file) || left.startLine - right.startLine);\n return {\n violations,\n checkedFileCount: gatedFileCount,\n checkedFunctionCount: checkedPairCount + newFunctionCount,\n newFunctionCount,\n checkedFunctions,\n };\n}\n\n/**\n * Similarity below the match threshold but above this marks a removed function's content as\n * reappearing inside unmatched new code — the signature of a split or evasive rewrite.\n */\nconst splitEvidenceSimilarityPercent = 30;\n\n/**\n * Whether a removed NAMED base function's content partially reappears in an unmatched head\n * function of the same file. This is what arms the file-level backstops: splitting a function to\n * hide a worsening behind the (laxer) new-code thresholds leaves its fragments partially similar\n * to the removed original, while an ordinary \"delete a helper, add an unrelated function\" change\n * shares nothing and must not have its brand-new code re-judged against the file's old aggregates.\n */\nfunction hasSplitEvidence(file: GateFileInput, fileIndex: number, matching: FunctionMatching): boolean {\n const baseFunctions = file.baseMetrics?.functions ?? [];\n const baseMatchedFlags = matching.baseMatched[fileIndex] as boolean[];\n const headMatchedFlags = matching.headMatched[fileIndex] as boolean[];\n const removedNamed = baseFunctions.flatMap((fn, index) =>\n !baseMatchedFlags[index] && fn.name !== undefined ? [index] : []\n );\n if (removedNamed.length === 0) {\n return false;\n }\n const unmatchedHead = (file.headMetrics?.functions ?? []).flatMap((_, index) =>\n headMatchedFlags[index] ? [] : [index]\n );\n if (removedNamed.length * unmatchedHead.length > maxSimilarityComparisons) {\n return false;\n }\n return removedNamed.some((baseIndex) =>\n unmatchedHead.some(\n (headIndex) =>\n tokenSimilarityPercent(\n file.baseFunctionTokens?.[baseIndex],\n file.headFunctionTokens?.[headIndex],\n splitEvidenceSimilarityPercent\n ) >= splitEvidenceSimilarityPercent\n )\n );\n}\n\nfunction toFunctionReport(file: string, head: FunctionMetrics, base?: FunctionMetrics): CheckedFunctionReport {\n return {\n file,\n name: head.name ?? '<anonymous>',\n startLine: head.startLine,\n endLine: head.endLine,\n base: base ? toFunctionValues(base) : undefined,\n head: toFunctionValues(head),\n };\n}\n\nfunction toFunctionValues(fn: FunctionMetrics): GateFunctionValues {\n return {\n cognitiveComplexity: fn.cognitiveComplexity,\n ncss: fn.ncss,\n nestingDepth: fn.nestingDepth,\n depDegree: fn.depDegree,\n halsteadVolume: fn.halstead.volume,\n };\n}\n\n/** One side of a match candidate: a function of one changed file plus its token sequence. */\ninterface IndexedFunction {\n fileIndex: number;\n functionIndex: number;\n fn: FunctionMetrics;\n tokens: Int32Array | undefined;\n}\n\ninterface MatchedPair {\n base: FunctionMetrics;\n head: FunctionMetrics;\n headFileIndex: number;\n}\n\ninterface FunctionMatching {\n pairs: MatchedPair[];\n /** Per file, per function index: whether it found a counterpart (anywhere in the change set). */\n baseMatched: boolean[][];\n headMatched: boolean[][];\n}\n\ninterface SimilarityCandidate {\n similarity: number;\n basePosition: number;\n headPosition: number;\n}\n\n/**\n * Matches head functions to base functions: within each file first by name + arity, then by name\n * alone (signature changes) — resolving ambiguous same-name groups by token similarity instead of\n * list position, so an inserted overload cannot shift the pairing — and finally by\n * normalized-token LCS similarity across ALL changed files (renames and moves between files,\n * reusing the near-miss clone machinery), so refactorings don't appear as delete+add and hit the\n * new-code thresholds.\n */\nfunction matchAllFunctions(files: GateFileInput[], matchSimilarityPercent: number): FunctionMatching {\n const baseMatched = files.map((file) => (file.baseMetrics?.functions ?? []).map(() => false));\n const headMatched = files.map((file) => (file.headMetrics?.functions ?? []).map(() => false));\n const pairs: MatchedPair[] = [];\n\n for (const fileIndex of files.keys()) {\n const pairByKey = (key: (fn: FunctionMetrics) => string | undefined): void => {\n const baseByKey = groupByKey(collectUnmatched(files, baseMatched, 'base', fileIndex), key);\n const headByKey = groupByKey(collectUnmatched(files, headMatched, 'head', fileIndex), key);\n for (const [groupKey, baseGroup] of baseByKey) {\n pairGroup(baseGroup, headByKey.get(groupKey) ?? [], baseMatched, headMatched, pairs);\n }\n };\n pairByKey((fn) => (fn.name === undefined ? undefined : `${fn.name}\\u0000${fn.parameterCount}`));\n pairByKey((fn) => fn.name);\n }\n\n pairAcrossChangeSet(files, baseMatched, headMatched, pairs, matchSimilarityPercent);\n return { pairs, baseMatched, headMatched };\n}\n\n/** Unmatched functions of one file (or of every file when onlyFileIndex is undefined). */\nfunction collectUnmatched(\n files: GateFileInput[],\n matchedByFile: boolean[][],\n side: 'base' | 'head',\n onlyFileIndex?: number\n): IndexedFunction[] {\n const unmatched: IndexedFunction[] = [];\n for (const [fileIndex, file] of files.entries()) {\n if (onlyFileIndex !== undefined && fileIndex !== onlyFileIndex) {\n continue;\n }\n const matched = matchedByFile[fileIndex] as boolean[];\n const metrics = side === 'base' ? file.baseMetrics : file.headMetrics;\n const tokens = side === 'base' ? file.baseFunctionTokens : file.headFunctionTokens;\n for (const [functionIndex, fn] of (metrics?.functions ?? []).entries()) {\n if (!matched[functionIndex]) {\n unmatched.push({ fileIndex, functionIndex, fn, tokens: tokens?.[functionIndex] });\n }\n }\n }\n return unmatched;\n}\n\nfunction groupByKey(\n functions: IndexedFunction[],\n key: (fn: FunctionMetrics) => string | undefined\n): Map<string, IndexedFunction[]> {\n const groups = new Map<string, IndexedFunction[]>();\n for (const indexed of functions) {\n const groupKey = key(indexed.fn);\n if (groupKey === undefined) {\n continue;\n }\n const group = groups.get(groupKey) ?? [];\n group.push(indexed);\n groups.set(groupKey, group);\n }\n return groups;\n}\n\n/** Bounds the quadratic similarity passes; beyond this, leftovers gate as new/removed functions. */\nconst maxSimilarityComparisons = 10_000;\n\n/**\n * Pairs one key group. An unambiguous 1x1 group matches directly; a larger group (same-name\n * methods of different classes, overload sets) is assigned best-similarity-first so an inserted\n * function cannot shift the pairing of the others. The names already match, so any pairing is\n * acceptable: similarity only ORDERS the assignment (no threshold), and without token sequences\n * (or in an oversized group) the stable tie-break reproduces positional order.\n */\nfunction pairGroup(\n baseGroup: IndexedFunction[],\n headGroup: IndexedFunction[],\n baseMatched: boolean[][],\n headMatched: boolean[][],\n pairs: MatchedPair[]\n): void {\n const ambiguous =\n baseGroup.length + headGroup.length > 2 && baseGroup.length * headGroup.length <= maxSimilarityComparisons;\n const candidates: SimilarityCandidate[] = [];\n for (const [basePosition, base] of baseGroup.entries()) {\n for (const [headPosition, head] of headGroup.entries()) {\n candidates.push({\n similarity: ambiguous ? tokenSimilarityPercent(base.tokens, head.tokens, 0) : 0,\n basePosition,\n headPosition,\n });\n }\n }\n takeMaximumMatches(candidates, baseGroup, headGroup, baseMatched, headMatched, pairs);\n}\n\n/** Cross-file (and remaining within-file) similarity matching over every unmatched function. */\nfunction pairAcrossChangeSet(\n files: GateFileInput[],\n baseMatched: boolean[][],\n headMatched: boolean[][],\n pairs: MatchedPair[],\n matchSimilarityPercent: number\n): void {\n const unmatchedBase = collectUnmatched(files, baseMatched, 'base');\n const unmatchedHead = collectUnmatched(files, headMatched, 'head');\n if (unmatchedBase.length * unmatchedHead.length > maxSimilarityComparisons) {\n return;\n }\n\n const candidates: SimilarityCandidate[] = [];\n for (const [basePosition, base] of unmatchedBase.entries()) {\n for (const [headPosition, head] of unmatchedHead.entries()) {\n const similarity = tokenSimilarityPercent(base.tokens, head.tokens, matchSimilarityPercent);\n if (similarity >= matchSimilarityPercent) {\n candidates.push({ similarity, basePosition, headPosition });\n }\n }\n }\n takeMaximumMatches(candidates, unmatchedBase, unmatchedHead, baseMatched, headMatched, pairs);\n}\n\n/**\n * Assignment over the candidate edges: a greedy best-similarity-first seed, then Kuhn's\n * augmenting paths for the bases the seed left unmatched, so a function whose only counterpart\n * was taken by a slightly better pair is re-matched by rewiring instead of being falsely gated as\n * new code. Augmentation runs only when it increases cardinality, and an exact (100%) seed pair —\n * certain identity — is locked and never rewired even then: trading it for two partial matches\n * would ratchet an untouched function against some other function's rewrite. Non-exact seed pairs\n * may be rewired, but only when that matches strictly more functions (which a maximum-weight\n * assignment would also prefer). Without token sequences every similarity ties at 0 and the seed\n * reproduces positional order.\n */\nfunction takeMaximumMatches(\n candidates: SimilarityCandidate[],\n baseGroup: IndexedFunction[],\n headGroup: IndexedFunction[],\n baseMatched: boolean[][],\n headMatched: boolean[][],\n pairs: MatchedPair[]\n): void {\n candidates.sort(\n (left, right) =>\n right.similarity - left.similarity ||\n left.basePosition - right.basePosition ||\n left.headPosition - right.headPosition\n );\n const adjacency = new Map<number, number[]>();\n const baseOfHead = new Map<number, number>();\n const lockedHeads = new Set<number>();\n const matchedBases = seedGreedyMatches(candidates, adjacency, baseOfHead, lockedHeads);\n for (const basePosition of [...adjacency.keys()].toSorted((left, right) => left - right)) {\n if (!matchedBases.has(basePosition)) {\n tryAugment(basePosition, adjacency, baseOfHead, lockedHeads, new Set());\n }\n }\n\n for (const [headPosition, basePosition] of [...baseOfHead.entries()].toSorted((left, right) => left[0] - right[0])) {\n const base = baseGroup[basePosition] as IndexedFunction;\n const head = headGroup[headPosition] as IndexedFunction;\n (baseMatched[base.fileIndex] as boolean[])[base.functionIndex] = true;\n (headMatched[head.fileIndex] as boolean[])[head.functionIndex] = true;\n pairs.push({ base: base.fn, head: head.fn, headFileIndex: head.fileIndex });\n }\n}\n\n/**\n * Fills the adjacency lists and takes each best edge whose endpoints are both still free; a taken\n * exact (100%) edge locks its head against later rewiring.\n */\nfunction seedGreedyMatches(\n candidates: SimilarityCandidate[],\n adjacency: Map<number, number[]>,\n baseOfHead: Map<number, number>,\n lockedHeads: Set<number>\n): Set<number> {\n const matchedBases = new Set<number>();\n for (const candidate of candidates) {\n const edges = adjacency.get(candidate.basePosition) ?? [];\n edges.push(candidate.headPosition);\n adjacency.set(candidate.basePosition, edges);\n if (!matchedBases.has(candidate.basePosition) && !baseOfHead.has(candidate.headPosition)) {\n baseOfHead.set(candidate.headPosition, candidate.basePosition);\n matchedBases.add(candidate.basePosition);\n if (candidate.similarity === 100) {\n lockedHeads.add(candidate.headPosition);\n }\n }\n }\n return matchedBases;\n}\n\n/** One Kuhn augmentation step: rewires existing (unlocked) matches only when that frees a head for `basePosition`. */\nfunction tryAugment(\n basePosition: number,\n adjacency: Map<number, number[]>,\n baseOfHead: Map<number, number>,\n lockedHeads: Set<number>,\n visitedHeads: Set<number>\n): boolean {\n for (const headPosition of adjacency.get(basePosition) ?? []) {\n if (visitedHeads.has(headPosition) || lockedHeads.has(headPosition)) {\n continue;\n }\n visitedHeads.add(headPosition);\n const currentBase = baseOfHead.get(headPosition);\n if (currentBase === undefined || tryAugment(currentBase, adjacency, baseOfHead, lockedHeads, visitedHeads)) {\n baseOfHead.set(headPosition, basePosition);\n return true;\n }\n }\n return false;\n}\n\n/** Token-LCS similarity of two sequences relative to the longer one, in percent (0 when unusable). */\nfunction tokenSimilarityPercent(\n base: Int32Array | undefined,\n head: Int32Array | undefined,\n minPercent: number\n): number {\n if (!base || !head || base.length === 0 || head.length === 0) {\n return 0;\n }\n // The LCS cannot exceed the shorter sequence, so mismatched lengths are pruned for free.\n const maxLength = Math.max(base.length, head.length);\n if (Math.min(base.length, head.length) * 100 < minPercent * maxLength) {\n return 0;\n }\n return (lcsLength(base, head) * 100) / maxLength;\n}\n\nfunction checkRatchets(\n file: string,\n base: FunctionMetrics,\n head: FunctionMetrics,\n tolerances: GateTolerances\n): GateViolation[] {\n const violations: GateViolation[] = [];\n for (const ratchet of ratchetMetrics) {\n const baseValue = ratchet.value(base);\n const headValue = ratchet.value(head);\n const allowedValue = baseValue + ratchet.allowance(tolerances, baseValue);\n if (headValue > allowedValue) {\n const name = head.name ?? '<anonymous>';\n violations.push({\n gate: 'function-regression',\n metric: ratchet.metric,\n file,\n functionName: name,\n startLine: head.startLine,\n endLine: head.endLine,\n baseValue,\n headValue,\n allowedValue,\n message:\n `${file}:${head.startLine}-${head.endLine} ${name}: ${ratchet.metric} worsened ` +\n `${ratchet.format(baseValue)} -> ${ratchet.format(headValue)} (allowed <= ${ratchet.format(allowedValue)}). ` +\n ratchet.remediation,\n });\n }\n }\n return violations;\n}\n\nfunction checkNewFunction(file: string, fn: FunctionMetrics, thresholds: NewFunctionThresholds): GateViolation[] {\n const violations: GateViolation[] = [];\n for (const check of newFunctionMetrics) {\n const headValue = check.value(fn);\n const allowedValue = check.limit(thresholds);\n if (headValue > allowedValue) {\n const name = fn.name ?? '<anonymous>';\n violations.push({\n gate: 'new-function',\n metric: check.metric,\n file,\n functionName: name,\n startLine: fn.startLine,\n endLine: fn.endLine,\n headValue,\n allowedValue,\n message:\n `${file}:${fn.startLine}-${fn.endLine} new function ${name}: ${check.metric} ${headValue} ` +\n `exceeds the new-code limit ${allowedValue}. ${check.remediation}`,\n });\n }\n }\n return violations;\n}\n\n/**\n * Anti-gaming backstops: splitting a function resets its entity identity and could hide a\n * worsening behind the (laxer) new-code thresholds, so when a removed named function's content\n * reappears in unmatched new code (see hasSplitEvidence) the file-level aggregates ratchet too —\n * the max cognitive complexity per file and the file's total NCSS. Purely additive changes and\n * unrelated remove-plus-add changes stay ungated. The max-cognitive backstop is also skipped when\n * a function-level cognitive violation already reports the file's maximum, since it would only\n * restate it.\n */\nfunction checkFileBackstops(\n file: GateFileInput,\n splitEvidence: boolean,\n reportedViolations: GateViolation[],\n options: GateOptions\n): GateViolation[] {\n const { baseMetrics, headMetrics } = file;\n if (!baseMetrics || !headMetrics || !splitEvidence) {\n return [];\n }\n const violations: GateViolation[] = [];\n const tolerances = options.tolerance;\n\n const maximumAlreadyReported = reportedViolations.some(\n (violation) =>\n violation.file === file.file &&\n violation.metric === 'cognitive complexity' &&\n (violation.gate === 'function-regression' || violation.gate === 'new-function') &&\n violation.headValue === headMetrics.maxCognitiveComplexity\n );\n const allowedMaxCognitive = baseMetrics.maxCognitiveComplexity + tolerances.cognitiveComplexity;\n if (!maximumAlreadyReported && headMetrics.maxCognitiveComplexity > allowedMaxCognitive) {\n const worst = findMostComplexFunction(headMetrics.functions);\n const startLine = worst?.startLine ?? 1;\n const endLine = worst?.endLine ?? headMetrics.lines.total;\n violations.push({\n gate: 'file-regression',\n metric: 'file max cognitive complexity',\n file: file.file,\n functionName: worst?.name ?? undefined,\n startLine,\n endLine,\n baseValue: baseMetrics.maxCognitiveComplexity,\n headValue: headMetrics.maxCognitiveComplexity,\n allowedValue: allowedMaxCognitive,\n message:\n `${file.file}:${startLine}-${endLine}: the file's max cognitive complexity worsened ` +\n `${baseMetrics.maxCognitiveComplexity} -> ${headMetrics.maxCognitiveComplexity} ` +\n `(allowed <= ${allowedMaxCognitive}). Simplify or split the most complex ` +\n `function${worst ? ` (${worst.name ?? '<anonymous>'})` : ''}.`,\n });\n }\n\n const allowedFileNcss = baseMetrics.ncssCount + tolerances.fileNcss;\n if (headMetrics.ncssCount > allowedFileNcss) {\n violations.push({\n gate: 'file-regression',\n metric: 'file NCSS',\n file: file.file,\n startLine: 1,\n endLine: headMetrics.lines.total,\n baseValue: baseMetrics.ncssCount,\n headValue: headMetrics.ncssCount,\n allowedValue: allowedFileNcss,\n message:\n `${file.file}:1-${headMetrics.lines.total}: functions were removed or split while the file grew from NCSS ` +\n `${baseMetrics.ncssCount} to ${headMetrics.ncssCount} (allowed <= ${allowedFileNcss}). ` +\n `Remove the added statements or move genuinely new code into its own module.`,\n });\n }\n\n return violations;\n}\n\nfunction findMostComplexFunction(functions: FunctionMetrics[]): FunctionMetrics | undefined {\n let worst: FunctionMetrics | undefined;\n for (const fn of functions) {\n if (!worst || fn.cognitiveComplexity > worst.cognitiveComplexity) {\n worst = fn;\n }\n }\n return worst;\n}\n\n/**\n * No new duplication: the distinct duplicated lines of a changed file (within-file plus\n * cross-file against the whole project, so copy-paste from existing code into new files is\n * caught) must not exceed the base revision's count.\n */\nfunction checkDuplication(file: GateFileInput, tolerances: GateTolerances): GateViolation[] {\n const allowedValue = file.baseDuplicatedLineCount + tolerances.duplicateLines;\n if (file.headDuplicatedLineCount <= allowedValue) {\n return [];\n }\n const partners = file.duplicationPartners.slice(0, 3).join(', ');\n const endLine = file.headMetrics?.lines.total ?? 1;\n return [\n {\n gate: 'duplication',\n metric: 'duplicated lines',\n file: file.file,\n startLine: 1,\n endLine,\n baseValue: file.baseDuplicatedLineCount,\n headValue: file.headDuplicatedLineCount,\n allowedValue,\n message:\n `${file.file}:1-${endLine}: duplicated lines increased ${file.baseDuplicatedLineCount} -> ` +\n `${file.headDuplicatedLineCount} (allowed <= ${allowedValue}). Deduplicate` +\n `${partners ? ` against ${partners}` : ' the repeated code'} by extracting a shared helper.`,\n },\n ];\n}\n"],"mappings":"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"}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import type { CodeMetrics } from './types.js';
|
|
2
|
+
/**
|
|
3
|
+
* Absolute limits applied only to functions with no base counterpart (SonarQube-style "Clean as
|
|
4
|
+
* You Code"): new code is the one place absolute thresholds are required, since there is nothing
|
|
5
|
+
* to ratchet against.
|
|
6
|
+
*/
|
|
7
|
+
export interface NewFunctionThresholds {
|
|
8
|
+
maxCognitiveComplexity: number;
|
|
9
|
+
maxNcss: number;
|
|
10
|
+
maxNestingDepth: number;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Allowances added on top of each base value before a ratchet fires, so legitimate refactorings
|
|
14
|
+
* that transiently worsen one number (e.g. an extraction adding a few NCSS lines) don't trap the
|
|
15
|
+
* agent in a loop.
|
|
16
|
+
*/
|
|
17
|
+
export interface GateTolerances {
|
|
18
|
+
cognitiveComplexity: number;
|
|
19
|
+
ncss: number;
|
|
20
|
+
nestingDepth: number;
|
|
21
|
+
depDegree: number;
|
|
22
|
+
halsteadVolume: number;
|
|
23
|
+
/** File-total NCSS growth allowed when base functions disappeared (the anti-gaming backstop). */
|
|
24
|
+
fileNcss: number;
|
|
25
|
+
/** Duplicated-line growth allowed per changed file. */
|
|
26
|
+
duplicateLines: number;
|
|
27
|
+
}
|
|
28
|
+
export interface GateOptions {
|
|
29
|
+
newFunction: NewFunctionThresholds;
|
|
30
|
+
tolerance: GateTolerances;
|
|
31
|
+
/**
|
|
32
|
+
* Minimum token-LCS similarity percent for re-matching a renamed/moved function to its base
|
|
33
|
+
* counterpart, so renames don't appear as delete+add and hit the new-code thresholds.
|
|
34
|
+
*/
|
|
35
|
+
matchSimilarityPercent: number;
|
|
36
|
+
}
|
|
37
|
+
export declare const defaultGateOptions: GateOptions;
|
|
38
|
+
/** One changed file with both revisions measured; the caller resolves git and duplication data. */
|
|
39
|
+
export interface GateFileInput {
|
|
40
|
+
/** Display path (repository-relative head path; base path for deleted files). */
|
|
41
|
+
file: string;
|
|
42
|
+
/** Absent for added files. */
|
|
43
|
+
baseMetrics?: CodeMetrics;
|
|
44
|
+
/** Absent for deleted files. */
|
|
45
|
+
headMetrics?: CodeMetrics;
|
|
46
|
+
/** Token sequences index-parallel to baseMetrics.functions, for similarity re-matching. */
|
|
47
|
+
baseFunctionTokens?: Int32Array[];
|
|
48
|
+
headFunctionTokens?: Int32Array[];
|
|
49
|
+
/** Distinct duplicated lines of this file at the base revision (within-file and cross-file). */
|
|
50
|
+
baseDuplicatedLineCount: number;
|
|
51
|
+
headDuplicatedLineCount: number;
|
|
52
|
+
/** Other files sharing cross-file duplicates with this file at head, as remediation evidence. */
|
|
53
|
+
duplicationPartners: string[];
|
|
54
|
+
/**
|
|
55
|
+
* false: the file only feeds function matching and the duplication universes (it lies outside
|
|
56
|
+
* the gated target directory); no violations are evaluated or reported for it. Default true.
|
|
57
|
+
*/
|
|
58
|
+
gated?: boolean;
|
|
59
|
+
}
|
|
60
|
+
export interface GateViolation {
|
|
61
|
+
gate: 'function-regression' | 'new-function' | 'file-regression' | 'duplication';
|
|
62
|
+
metric: string;
|
|
63
|
+
file: string;
|
|
64
|
+
functionName?: string;
|
|
65
|
+
startLine: number;
|
|
66
|
+
endLine: number;
|
|
67
|
+
/** Absent for new-function violations, which have no base value. */
|
|
68
|
+
baseValue?: number;
|
|
69
|
+
headValue: number;
|
|
70
|
+
/** The largest value that would have passed. */
|
|
71
|
+
allowedValue: number;
|
|
72
|
+
/** One-line human/agent-readable statement with the remediation direction. */
|
|
73
|
+
message: string;
|
|
74
|
+
}
|
|
75
|
+
/** The gated per-function values of one checked (matched or new) function, for `--full` output. */
|
|
76
|
+
export interface CheckedFunctionReport {
|
|
77
|
+
/** The head file (a cross-file move is reported where the function now lives). */
|
|
78
|
+
file: string;
|
|
79
|
+
name: string;
|
|
80
|
+
startLine: number;
|
|
81
|
+
endLine: number;
|
|
82
|
+
/** Absent for new functions. */
|
|
83
|
+
base?: GateFunctionValues;
|
|
84
|
+
head: GateFunctionValues;
|
|
85
|
+
}
|
|
86
|
+
export interface GateFunctionValues {
|
|
87
|
+
cognitiveComplexity: number;
|
|
88
|
+
ncss: number;
|
|
89
|
+
nestingDepth: number;
|
|
90
|
+
depDegree: number;
|
|
91
|
+
halsteadVolume: number;
|
|
92
|
+
}
|
|
93
|
+
export interface GateResult {
|
|
94
|
+
violations: GateViolation[];
|
|
95
|
+
checkedFileCount: number;
|
|
96
|
+
checkedFunctionCount: number;
|
|
97
|
+
newFunctionCount: number;
|
|
98
|
+
/** Every checked function with its gated values, ordered by file and line. */
|
|
99
|
+
checkedFunctions: CheckedFunctionReport[];
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* Evaluates the regression gate over changed files measured at both revisions. Violations are the
|
|
103
|
+
* whole output contract: everything that passes stays silent, so a clean change costs the
|
|
104
|
+
* consuming agent almost no tokens.
|
|
105
|
+
*/
|
|
106
|
+
export declare function evaluateRegressionGate(files: GateFileInput[], options: GateOptions): GateResult;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{lcsLength as e}from"./duplication.js";const t={newFunction:{maxCognitiveComplexity:15,maxNcss:60,maxNestingDepth:4},tolerance:{cognitiveComplexity:2,ncss:5,nestingDepth:1,depDegree:10,halsteadVolume:150,fileNcss:20,duplicateLines:0},matchSimilarityPercent:70},n=String,r=[{metric:`cognitive complexity`,value:e=>e.cognitiveComplexity,allowance:e=>e.cognitiveComplexity,remediation:`Simplify the added branching or split the function.`,format:n},{metric:`NCSS`,value:e=>e.ncss,allowance:e=>e.ncss,remediation:`Extract the added statements into helper functions or remove them.`,format:n},{metric:`max nesting depth`,value:e=>e.nestingDepth,allowance:e=>e.nestingDepth,remediation:`Flatten the added nesting with early returns or extracted helpers.`,format:n},{metric:`DepDegree`,value:e=>e.depDegree,allowance:e=>e.depDegree,remediation:`Reduce how many earlier definitions the code reads, e.g. by splitting the data flow.`,format:n},{metric:`Halstead volume`,value:e=>e.halstead.volume,allowance:(e,t)=>Math.max(e.halsteadVolume,t*.25),remediation:`Shrink the function: fewer distinct names and operations.`,format:e=>e.toFixed(1)}],i=[{metric:`cognitive complexity`,value:e=>e.cognitiveComplexity,limit:e=>e.maxCognitiveComplexity,remediation:`Split the new function or simplify its branching.`},{metric:`NCSS`,value:e=>e.ncss,limit:e=>e.maxNcss,remediation:`Split the new function into smaller ones.`},{metric:`max nesting depth`,value:e=>e.nestingDepth,limit:e=>e.maxNestingDepth,remediation:`Flatten the new function with early returns or extracted helpers.`}];function a(e,t){let n=l(e,t.matchSimilarityPercent),r=[],i=[],a=0,c=0;for(let o of n.pairs){let n=e[o.headFileIndex];n.gated!==!1&&(a+=1,r.push(...y(n.file,o.base,o.head,t.tolerance)),i.push(s(n.file,o.head,o.base)))}let u=0;for(let[a,l]of e.entries()){if(l.gated===!1)continue;u+=1;let e=l.headMetrics?.functions??[],d=n.headMatched[a];for(let[n,a]of e.entries())d[n]||(c+=1,r.push(...b(l.file,a,t.newFunction)),i.push(s(l.file,a)));r.push(...x(l,o(l,a,n),r,t)),r.push(...C(l,t.tolerance))}return r.sort((e,t)=>e.file.localeCompare(t.file)||e.startLine-t.startLine),i.sort((e,t)=>e.file.localeCompare(t.file)||e.startLine-t.startLine),{violations:r,checkedFileCount:u,checkedFunctionCount:a+c,newFunctionCount:c,checkedFunctions:i}}function o(e,t,n){let r=e.baseMetrics?.functions??[],i=n.baseMatched[t],a=n.headMatched[t],o=r.flatMap((e,t)=>!i[t]&&e.name!==void 0?[t]:[]);if(o.length===0)return!1;let s=(e.headMetrics?.functions??[]).flatMap((e,t)=>a[t]?[]:[t]);return o.length*s.length>f?!1:o.some(t=>s.some(n=>v(e.baseFunctionTokens?.[t],e.headFunctionTokens?.[n],30)>=30))}function s(e,t,n){return{file:e,name:t.name??`<anonymous>`,startLine:t.startLine,endLine:t.endLine,base:n?c(n):void 0,head:c(t)}}function c(e){return{cognitiveComplexity:e.cognitiveComplexity,ncss:e.ncss,nestingDepth:e.nestingDepth,depDegree:e.depDegree,halsteadVolume:e.halstead.volume}}function l(e,t){let n=e.map(e=>(e.baseMetrics?.functions??[]).map(()=>!1)),r=e.map(e=>(e.headMetrics?.functions??[]).map(()=>!1)),i=[];for(let t of e.keys()){let a=a=>{let o=d(u(e,n,`base`,t),a),s=d(u(e,r,`head`,t),a);for(let[e,t]of o)p(t,s.get(e)??[],n,r,i)};a(e=>e.name===void 0?void 0:`${e.name}\u0000${e.parameterCount}`),a(e=>e.name)}return m(e,n,r,i,t),{pairs:i,baseMatched:n,headMatched:r}}function u(e,t,n,r){let i=[];for(let[a,o]of e.entries()){if(r!==void 0&&a!==r)continue;let e=t[a],s=n===`base`?o.baseMetrics:o.headMetrics,c=n===`base`?o.baseFunctionTokens:o.headFunctionTokens;for(let[t,n]of(s?.functions??[]).entries())e[t]||i.push({fileIndex:a,functionIndex:t,fn:n,tokens:c?.[t]})}return i}function d(e,t){let n=new Map;for(let r of e){let e=t(r.fn);if(e===void 0)continue;let i=n.get(e)??[];i.push(r),n.set(e,i)}return n}const f=1e4;function p(e,t,n,r,i){let a=e.length+t.length>2&&e.length*t.length<=f,o=[];for(let[n,r]of e.entries())for(let[e,i]of t.entries())o.push({similarity:a?v(r.tokens,i.tokens,0):0,basePosition:n,headPosition:e});h(o,e,t,n,r,i)}function m(e,t,n,r,i){let a=u(e,t,`base`),o=u(e,n,`head`);if(a.length*o.length>f)return;let s=[];for(let[e,t]of a.entries())for(let[n,r]of o.entries()){let a=v(t.tokens,r.tokens,i);a>=i&&s.push({similarity:a,basePosition:e,headPosition:n})}h(s,a,o,t,n,r)}function h(e,t,n,r,i,a){e.sort((e,t)=>t.similarity-e.similarity||e.basePosition-t.basePosition||e.headPosition-t.headPosition);let o=new Map,s=new Map,c=new Set,l=g(e,o,s,c);for(let e of[...o.keys()].toSorted((e,t)=>e-t))l.has(e)||_(e,o,s,c,new Set);for(let[e,o]of[...s.entries()].toSorted((e,t)=>e[0]-t[0])){let s=t[o],c=n[e];r[s.fileIndex][s.functionIndex]=!0,i[c.fileIndex][c.functionIndex]=!0,a.push({base:s.fn,head:c.fn,headFileIndex:c.fileIndex})}}function g(e,t,n,r){let i=new Set;for(let a of e){let e=t.get(a.basePosition)??[];e.push(a.headPosition),t.set(a.basePosition,e),!i.has(a.basePosition)&&!n.has(a.headPosition)&&(n.set(a.headPosition,a.basePosition),i.add(a.basePosition),a.similarity===100&&r.add(a.headPosition))}return i}function _(e,t,n,r,i){for(let a of t.get(e)??[]){if(i.has(a)||r.has(a))continue;i.add(a);let o=n.get(a);if(o===void 0||_(o,t,n,r,i))return n.set(a,e),!0}return!1}function v(t,n,r){if(!t||!n||t.length===0||n.length===0)return 0;let i=Math.max(t.length,n.length);return Math.min(t.length,n.length)*100<r*i?0:e(t,n)*100/i}function y(e,t,n,i){let a=[];for(let o of r){let r=o.value(t),s=o.value(n),c=r+o.allowance(i,r);if(s>c){let t=n.name??`<anonymous>`;a.push({gate:`function-regression`,metric:o.metric,file:e,functionName:t,startLine:n.startLine,endLine:n.endLine,baseValue:r,headValue:s,allowedValue:c,message:`${e}:${n.startLine}-${n.endLine} ${t}: ${o.metric} worsened ${o.format(r)} -> ${o.format(s)} (allowed <= ${o.format(c)}). `+o.remediation})}}return a}function b(e,t,n){let r=[];for(let a of i){let i=a.value(t),o=a.limit(n);if(i>o){let n=t.name??`<anonymous>`;r.push({gate:`new-function`,metric:a.metric,file:e,functionName:n,startLine:t.startLine,endLine:t.endLine,headValue:i,allowedValue:o,message:`${e}:${t.startLine}-${t.endLine} new function ${n}: ${a.metric} ${i} exceeds the new-code limit ${o}. ${a.remediation}`})}}return r}function x(e,t,n,r){let{baseMetrics:i,headMetrics:a}=e;if(!i||!a||!t)return[];let o=[],s=r.tolerance,c=n.some(t=>t.file===e.file&&t.metric===`cognitive complexity`&&(t.gate===`function-regression`||t.gate===`new-function`)&&t.headValue===a.maxCognitiveComplexity),l=i.maxCognitiveComplexity+s.cognitiveComplexity;if(!c&&a.maxCognitiveComplexity>l){let t=S(a.functions),n=t?.startLine??1,r=t?.endLine??a.lines.total;o.push({gate:`file-regression`,metric:`file max cognitive complexity`,file:e.file,functionName:t?.name??void 0,startLine:n,endLine:r,baseValue:i.maxCognitiveComplexity,headValue:a.maxCognitiveComplexity,allowedValue:l,message:`${e.file}:${n}-${r}: the file's max cognitive complexity worsened ${i.maxCognitiveComplexity} -> ${a.maxCognitiveComplexity} (allowed <= ${l}). Simplify or split the most complex function${t?` (${t.name??`<anonymous>`})`:``}.`})}let u=i.ncssCount+s.fileNcss;return a.ncssCount>u&&o.push({gate:`file-regression`,metric:`file NCSS`,file:e.file,startLine:1,endLine:a.lines.total,baseValue:i.ncssCount,headValue:a.ncssCount,allowedValue:u,message:`${e.file}:1-${a.lines.total}: functions were removed or split while the file grew from NCSS ${i.ncssCount} to ${a.ncssCount} (allowed <= ${u}). Remove the added statements or move genuinely new code into its own module.`}),o}function S(e){let t;for(let n of e)(!t||n.cognitiveComplexity>t.cognitiveComplexity)&&(t=n);return t}function C(e,t){let n=e.baseDuplicatedLineCount+t.duplicateLines;if(e.headDuplicatedLineCount<=n)return[];let r=e.duplicationPartners.slice(0,3).join(`, `),i=e.headMetrics?.lines.total??1;return[{gate:`duplication`,metric:`duplicated lines`,file:e.file,startLine:1,endLine:i,baseValue:e.baseDuplicatedLineCount,headValue:e.headDuplicatedLineCount,allowedValue:n,message:`${e.file}:1-${i}: duplicated lines increased ${e.baseDuplicatedLineCount} -> ${e.headDuplicatedLineCount} (allowed <= ${n}). Deduplicate${r?` against ${r}`:` the repeated code`} by extracting a shared helper.`}]}export{t as defaultGateOptions,a as evaluateRegressionGate};
|
|
2
|
+
//# sourceMappingURL=regressionGate.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"regressionGate.js","names":[],"sources":["../src/regressionGate.ts"],"sourcesContent":["import { lcsLength } from './duplication.js';\nimport type { CodeMetrics, FunctionMetrics } from './types.js';\n\n/**\n * Absolute limits applied only to functions with no base counterpart (SonarQube-style \"Clean as\n * You Code\"): new code is the one place absolute thresholds are required, since there is nothing\n * to ratchet against.\n */\nexport interface NewFunctionThresholds {\n maxCognitiveComplexity: number;\n maxNcss: number;\n maxNestingDepth: number;\n}\n\n/**\n * Allowances added on top of each base value before a ratchet fires, so legitimate refactorings\n * that transiently worsen one number (e.g. an extraction adding a few NCSS lines) don't trap the\n * agent in a loop.\n */\nexport interface GateTolerances {\n cognitiveComplexity: number;\n ncss: number;\n nestingDepth: number;\n depDegree: number;\n halsteadVolume: number;\n /** File-total NCSS growth allowed when base functions disappeared (the anti-gaming backstop). */\n fileNcss: number;\n /** Duplicated-line growth allowed per changed file. */\n duplicateLines: number;\n}\n\nexport interface GateOptions {\n newFunction: NewFunctionThresholds;\n tolerance: GateTolerances;\n /**\n * Minimum token-LCS similarity percent for re-matching a renamed/moved function to its base\n * counterpart, so renames don't appear as delete+add and hit the new-code thresholds.\n */\n matchSimilarityPercent: number;\n}\n\nexport const defaultGateOptions: GateOptions = {\n // 15 is SonarSource's conventional default; 4 is where the measured cognitive-load response to\n // nesting saturates (Peitek et al. 2021); 60 matches PMD's NcssCount method default.\n newFunction: { maxCognitiveComplexity: 15, maxNcss: 60, maxNestingDepth: 4 },\n // The per-metric allowances are calibrated to admit roughly the same edit: ~5 added statements\n // or one added branch (cognitive 2 ~ nesting 1 ~ ncss 5 ~ depDegree 10 ~ Halstead volume 150;\n // the volume allowance additionally scales with the base value, see ratchetMetrics), so one\n // ratchet cannot block an addition the others deliberately allow.\n tolerance: {\n cognitiveComplexity: 2,\n ncss: 5,\n nestingDepth: 1,\n depDegree: 10,\n halsteadVolume: 150,\n fileNcss: 20,\n duplicateLines: 0,\n },\n matchSimilarityPercent: 70,\n};\n\n/** One changed file with both revisions measured; the caller resolves git and duplication data. */\nexport interface GateFileInput {\n /** Display path (repository-relative head path; base path for deleted files). */\n file: string;\n /** Absent for added files. */\n baseMetrics?: CodeMetrics;\n /** Absent for deleted files. */\n headMetrics?: CodeMetrics;\n /** Token sequences index-parallel to baseMetrics.functions, for similarity re-matching. */\n baseFunctionTokens?: Int32Array[];\n headFunctionTokens?: Int32Array[];\n /** Distinct duplicated lines of this file at the base revision (within-file and cross-file). */\n baseDuplicatedLineCount: number;\n headDuplicatedLineCount: number;\n /** Other files sharing cross-file duplicates with this file at head, as remediation evidence. */\n duplicationPartners: string[];\n /**\n * false: the file only feeds function matching and the duplication universes (it lies outside\n * the gated target directory); no violations are evaluated or reported for it. Default true.\n */\n gated?: boolean;\n}\n\nexport interface GateViolation {\n gate: 'function-regression' | 'new-function' | 'file-regression' | 'duplication';\n metric: string;\n file: string;\n functionName?: string;\n startLine: number;\n endLine: number;\n /** Absent for new-function violations, which have no base value. */\n baseValue?: number;\n headValue: number;\n /** The largest value that would have passed. */\n allowedValue: number;\n /** One-line human/agent-readable statement with the remediation direction. */\n message: string;\n}\n\n/** The gated per-function values of one checked (matched or new) function, for `--full` output. */\nexport interface CheckedFunctionReport {\n /** The head file (a cross-file move is reported where the function now lives). */\n file: string;\n name: string;\n startLine: number;\n endLine: number;\n /** Absent for new functions. */\n base?: GateFunctionValues;\n head: GateFunctionValues;\n}\n\nexport interface GateFunctionValues {\n cognitiveComplexity: number;\n ncss: number;\n nestingDepth: number;\n depDegree: number;\n halsteadVolume: number;\n}\n\nexport interface GateResult {\n violations: GateViolation[];\n checkedFileCount: number;\n checkedFunctionCount: number;\n newFunctionCount: number;\n /** Every checked function with its gated values, ordered by file and line. */\n checkedFunctions: CheckedFunctionReport[];\n}\n\ninterface RatchetMetric {\n metric: string;\n value: (fn: FunctionMetrics) => number;\n /** The growth allowed on top of the base value before the ratchet fires. */\n allowance: (tolerances: GateTolerances, baseValue: number) => number;\n remediation: string;\n format: (value: number) => string;\n}\n\nconst formatInteger = String;\nconst formatFloat = (value: number): string => value.toFixed(1);\n\n/**\n * Gate-eligible per-function metrics (monotone, stable, actionable): a matched function must not\n * worsen any of them beyond its tolerance. \"Your change made this function worse\" is defensible\n * regardless of metric calibration, so no absolute threshold is involved.\n */\nconst ratchetMetrics: RatchetMetric[] = [\n {\n metric: 'cognitive complexity',\n value: (fn) => fn.cognitiveComplexity,\n allowance: (tolerances) => tolerances.cognitiveComplexity,\n remediation: 'Simplify the added branching or split the function.',\n format: formatInteger,\n },\n {\n metric: 'NCSS',\n value: (fn) => fn.ncss,\n allowance: (tolerances) => tolerances.ncss,\n remediation: 'Extract the added statements into helper functions or remove them.',\n format: formatInteger,\n },\n {\n metric: 'max nesting depth',\n value: (fn) => fn.nestingDepth,\n allowance: (tolerances) => tolerances.nestingDepth,\n remediation: 'Flatten the added nesting with early returns or extracted helpers.',\n format: formatInteger,\n },\n {\n metric: 'DepDegree',\n value: (fn) => fn.depDegree,\n allowance: (tolerances) => tolerances.depDegree,\n remediation: 'Reduce how many earlier definitions the code reads, e.g. by splitting the data flow.',\n format: formatInteger,\n },\n {\n metric: 'Halstead volume',\n value: (fn) => fn.halstead.volume,\n // Volume grows as length * log2(vocabulary), so a flat allowance that admits ~5 statements in\n // a small function admits barely one in a large-vocabulary function; the relative term keeps\n // the ~5-statement calibration at every function size.\n allowance: (tolerances, baseValue) => Math.max(tolerances.halsteadVolume, baseValue * 0.25),\n remediation: 'Shrink the function: fewer distinct names and operations.',\n format: formatFloat,\n },\n];\n\ninterface NewFunctionMetric {\n metric: string;\n value: (fn: FunctionMetrics) => number;\n limit: (thresholds: NewFunctionThresholds) => number;\n remediation: string;\n}\n\nconst newFunctionMetrics: NewFunctionMetric[] = [\n {\n metric: 'cognitive complexity',\n value: (fn) => fn.cognitiveComplexity,\n limit: (thresholds) => thresholds.maxCognitiveComplexity,\n remediation: 'Split the new function or simplify its branching.',\n },\n {\n metric: 'NCSS',\n value: (fn) => fn.ncss,\n limit: (thresholds) => thresholds.maxNcss,\n remediation: 'Split the new function into smaller ones.',\n },\n {\n metric: 'max nesting depth',\n value: (fn) => fn.nestingDepth,\n limit: (thresholds) => thresholds.maxNestingDepth,\n remediation: 'Flatten the new function with early returns or extracted helpers.',\n },\n];\n\n/**\n * Evaluates the regression gate over changed files measured at both revisions. Violations are the\n * whole output contract: everything that passes stays silent, so a clean change costs the\n * consuming agent almost no tokens.\n */\nexport function evaluateRegressionGate(files: GateFileInput[], options: GateOptions): GateResult {\n const matching = matchAllFunctions(files, options.matchSimilarityPercent);\n const violations: GateViolation[] = [];\n const checkedFunctions: CheckedFunctionReport[] = [];\n let checkedPairCount = 0;\n let newFunctionCount = 0;\n\n for (const pair of matching.pairs) {\n const file = files[pair.headFileIndex] as GateFileInput;\n if (file.gated === false) {\n continue;\n }\n checkedPairCount += 1;\n violations.push(...checkRatchets(file.file, pair.base, pair.head, options.tolerance));\n checkedFunctions.push(toFunctionReport(file.file, pair.head, pair.base));\n }\n\n let gatedFileCount = 0;\n for (const [fileIndex, file] of files.entries()) {\n if (file.gated === false) {\n continue;\n }\n gatedFileCount += 1;\n const headFunctions = file.headMetrics?.functions ?? [];\n const headMatched = matching.headMatched[fileIndex] as boolean[];\n for (const [functionIndex, fn] of headFunctions.entries()) {\n if (headMatched[functionIndex]) {\n continue;\n }\n newFunctionCount += 1;\n violations.push(...checkNewFunction(file.file, fn, options.newFunction));\n checkedFunctions.push(toFunctionReport(file.file, fn));\n }\n violations.push(...checkFileBackstops(file, hasSplitEvidence(file, fileIndex, matching), violations, options));\n violations.push(...checkDuplication(file, options.tolerance));\n }\n\n violations.sort((left, right) => left.file.localeCompare(right.file) || left.startLine - right.startLine);\n checkedFunctions.sort((left, right) => left.file.localeCompare(right.file) || left.startLine - right.startLine);\n return {\n violations,\n checkedFileCount: gatedFileCount,\n checkedFunctionCount: checkedPairCount + newFunctionCount,\n newFunctionCount,\n checkedFunctions,\n };\n}\n\n/**\n * Similarity below the match threshold but above this marks a removed function's content as\n * reappearing inside unmatched new code — the signature of a split or evasive rewrite.\n */\nconst splitEvidenceSimilarityPercent = 30;\n\n/**\n * Whether a removed NAMED base function's content partially reappears in an unmatched head\n * function of the same file. This is what arms the file-level backstops: splitting a function to\n * hide a worsening behind the (laxer) new-code thresholds leaves its fragments partially similar\n * to the removed original, while an ordinary \"delete a helper, add an unrelated function\" change\n * shares nothing and must not have its brand-new code re-judged against the file's old aggregates.\n */\nfunction hasSplitEvidence(file: GateFileInput, fileIndex: number, matching: FunctionMatching): boolean {\n const baseFunctions = file.baseMetrics?.functions ?? [];\n const baseMatchedFlags = matching.baseMatched[fileIndex] as boolean[];\n const headMatchedFlags = matching.headMatched[fileIndex] as boolean[];\n const removedNamed = baseFunctions.flatMap((fn, index) =>\n !baseMatchedFlags[index] && fn.name !== undefined ? [index] : []\n );\n if (removedNamed.length === 0) {\n return false;\n }\n const unmatchedHead = (file.headMetrics?.functions ?? []).flatMap((_, index) =>\n headMatchedFlags[index] ? [] : [index]\n );\n if (removedNamed.length * unmatchedHead.length > maxSimilarityComparisons) {\n return false;\n }\n return removedNamed.some((baseIndex) =>\n unmatchedHead.some(\n (headIndex) =>\n tokenSimilarityPercent(\n file.baseFunctionTokens?.[baseIndex],\n file.headFunctionTokens?.[headIndex],\n splitEvidenceSimilarityPercent\n ) >= splitEvidenceSimilarityPercent\n )\n );\n}\n\nfunction toFunctionReport(file: string, head: FunctionMetrics, base?: FunctionMetrics): CheckedFunctionReport {\n return {\n file,\n name: head.name ?? '<anonymous>',\n startLine: head.startLine,\n endLine: head.endLine,\n base: base ? toFunctionValues(base) : undefined,\n head: toFunctionValues(head),\n };\n}\n\nfunction toFunctionValues(fn: FunctionMetrics): GateFunctionValues {\n return {\n cognitiveComplexity: fn.cognitiveComplexity,\n ncss: fn.ncss,\n nestingDepth: fn.nestingDepth,\n depDegree: fn.depDegree,\n halsteadVolume: fn.halstead.volume,\n };\n}\n\n/** One side of a match candidate: a function of one changed file plus its token sequence. */\ninterface IndexedFunction {\n fileIndex: number;\n functionIndex: number;\n fn: FunctionMetrics;\n tokens: Int32Array | undefined;\n}\n\ninterface MatchedPair {\n base: FunctionMetrics;\n head: FunctionMetrics;\n headFileIndex: number;\n}\n\ninterface FunctionMatching {\n pairs: MatchedPair[];\n /** Per file, per function index: whether it found a counterpart (anywhere in the change set). */\n baseMatched: boolean[][];\n headMatched: boolean[][];\n}\n\ninterface SimilarityCandidate {\n similarity: number;\n basePosition: number;\n headPosition: number;\n}\n\n/**\n * Matches head functions to base functions: within each file first by name + arity, then by name\n * alone (signature changes) — resolving ambiguous same-name groups by token similarity instead of\n * list position, so an inserted overload cannot shift the pairing — and finally by\n * normalized-token LCS similarity across ALL changed files (renames and moves between files,\n * reusing the near-miss clone machinery), so refactorings don't appear as delete+add and hit the\n * new-code thresholds.\n */\nfunction matchAllFunctions(files: GateFileInput[], matchSimilarityPercent: number): FunctionMatching {\n const baseMatched = files.map((file) => (file.baseMetrics?.functions ?? []).map(() => false));\n const headMatched = files.map((file) => (file.headMetrics?.functions ?? []).map(() => false));\n const pairs: MatchedPair[] = [];\n\n for (const fileIndex of files.keys()) {\n const pairByKey = (key: (fn: FunctionMetrics) => string | undefined): void => {\n const baseByKey = groupByKey(collectUnmatched(files, baseMatched, 'base', fileIndex), key);\n const headByKey = groupByKey(collectUnmatched(files, headMatched, 'head', fileIndex), key);\n for (const [groupKey, baseGroup] of baseByKey) {\n pairGroup(baseGroup, headByKey.get(groupKey) ?? [], baseMatched, headMatched, pairs);\n }\n };\n pairByKey((fn) => (fn.name === undefined ? undefined : `${fn.name}\\u0000${fn.parameterCount}`));\n pairByKey((fn) => fn.name);\n }\n\n pairAcrossChangeSet(files, baseMatched, headMatched, pairs, matchSimilarityPercent);\n return { pairs, baseMatched, headMatched };\n}\n\n/** Unmatched functions of one file (or of every file when onlyFileIndex is undefined). */\nfunction collectUnmatched(\n files: GateFileInput[],\n matchedByFile: boolean[][],\n side: 'base' | 'head',\n onlyFileIndex?: number\n): IndexedFunction[] {\n const unmatched: IndexedFunction[] = [];\n for (const [fileIndex, file] of files.entries()) {\n if (onlyFileIndex !== undefined && fileIndex !== onlyFileIndex) {\n continue;\n }\n const matched = matchedByFile[fileIndex] as boolean[];\n const metrics = side === 'base' ? file.baseMetrics : file.headMetrics;\n const tokens = side === 'base' ? file.baseFunctionTokens : file.headFunctionTokens;\n for (const [functionIndex, fn] of (metrics?.functions ?? []).entries()) {\n if (!matched[functionIndex]) {\n unmatched.push({ fileIndex, functionIndex, fn, tokens: tokens?.[functionIndex] });\n }\n }\n }\n return unmatched;\n}\n\nfunction groupByKey(\n functions: IndexedFunction[],\n key: (fn: FunctionMetrics) => string | undefined\n): Map<string, IndexedFunction[]> {\n const groups = new Map<string, IndexedFunction[]>();\n for (const indexed of functions) {\n const groupKey = key(indexed.fn);\n if (groupKey === undefined) {\n continue;\n }\n const group = groups.get(groupKey) ?? [];\n group.push(indexed);\n groups.set(groupKey, group);\n }\n return groups;\n}\n\n/** Bounds the quadratic similarity passes; beyond this, leftovers gate as new/removed functions. */\nconst maxSimilarityComparisons = 10_000;\n\n/**\n * Pairs one key group. An unambiguous 1x1 group matches directly; a larger group (same-name\n * methods of different classes, overload sets) is assigned best-similarity-first so an inserted\n * function cannot shift the pairing of the others. The names already match, so any pairing is\n * acceptable: similarity only ORDERS the assignment (no threshold), and without token sequences\n * (or in an oversized group) the stable tie-break reproduces positional order.\n */\nfunction pairGroup(\n baseGroup: IndexedFunction[],\n headGroup: IndexedFunction[],\n baseMatched: boolean[][],\n headMatched: boolean[][],\n pairs: MatchedPair[]\n): void {\n const ambiguous =\n baseGroup.length + headGroup.length > 2 && baseGroup.length * headGroup.length <= maxSimilarityComparisons;\n const candidates: SimilarityCandidate[] = [];\n for (const [basePosition, base] of baseGroup.entries()) {\n for (const [headPosition, head] of headGroup.entries()) {\n candidates.push({\n similarity: ambiguous ? tokenSimilarityPercent(base.tokens, head.tokens, 0) : 0,\n basePosition,\n headPosition,\n });\n }\n }\n takeMaximumMatches(candidates, baseGroup, headGroup, baseMatched, headMatched, pairs);\n}\n\n/** Cross-file (and remaining within-file) similarity matching over every unmatched function. */\nfunction pairAcrossChangeSet(\n files: GateFileInput[],\n baseMatched: boolean[][],\n headMatched: boolean[][],\n pairs: MatchedPair[],\n matchSimilarityPercent: number\n): void {\n const unmatchedBase = collectUnmatched(files, baseMatched, 'base');\n const unmatchedHead = collectUnmatched(files, headMatched, 'head');\n if (unmatchedBase.length * unmatchedHead.length > maxSimilarityComparisons) {\n return;\n }\n\n const candidates: SimilarityCandidate[] = [];\n for (const [basePosition, base] of unmatchedBase.entries()) {\n for (const [headPosition, head] of unmatchedHead.entries()) {\n const similarity = tokenSimilarityPercent(base.tokens, head.tokens, matchSimilarityPercent);\n if (similarity >= matchSimilarityPercent) {\n candidates.push({ similarity, basePosition, headPosition });\n }\n }\n }\n takeMaximumMatches(candidates, unmatchedBase, unmatchedHead, baseMatched, headMatched, pairs);\n}\n\n/**\n * Assignment over the candidate edges: a greedy best-similarity-first seed, then Kuhn's\n * augmenting paths for the bases the seed left unmatched, so a function whose only counterpart\n * was taken by a slightly better pair is re-matched by rewiring instead of being falsely gated as\n * new code. Augmentation runs only when it increases cardinality, and an exact (100%) seed pair —\n * certain identity — is locked and never rewired even then: trading it for two partial matches\n * would ratchet an untouched function against some other function's rewrite. Non-exact seed pairs\n * may be rewired, but only when that matches strictly more functions (which a maximum-weight\n * assignment would also prefer). Without token sequences every similarity ties at 0 and the seed\n * reproduces positional order.\n */\nfunction takeMaximumMatches(\n candidates: SimilarityCandidate[],\n baseGroup: IndexedFunction[],\n headGroup: IndexedFunction[],\n baseMatched: boolean[][],\n headMatched: boolean[][],\n pairs: MatchedPair[]\n): void {\n candidates.sort(\n (left, right) =>\n right.similarity - left.similarity ||\n left.basePosition - right.basePosition ||\n left.headPosition - right.headPosition\n );\n const adjacency = new Map<number, number[]>();\n const baseOfHead = new Map<number, number>();\n const lockedHeads = new Set<number>();\n const matchedBases = seedGreedyMatches(candidates, adjacency, baseOfHead, lockedHeads);\n for (const basePosition of [...adjacency.keys()].toSorted((left, right) => left - right)) {\n if (!matchedBases.has(basePosition)) {\n tryAugment(basePosition, adjacency, baseOfHead, lockedHeads, new Set());\n }\n }\n\n for (const [headPosition, basePosition] of [...baseOfHead.entries()].toSorted((left, right) => left[0] - right[0])) {\n const base = baseGroup[basePosition] as IndexedFunction;\n const head = headGroup[headPosition] as IndexedFunction;\n (baseMatched[base.fileIndex] as boolean[])[base.functionIndex] = true;\n (headMatched[head.fileIndex] as boolean[])[head.functionIndex] = true;\n pairs.push({ base: base.fn, head: head.fn, headFileIndex: head.fileIndex });\n }\n}\n\n/**\n * Fills the adjacency lists and takes each best edge whose endpoints are both still free; a taken\n * exact (100%) edge locks its head against later rewiring.\n */\nfunction seedGreedyMatches(\n candidates: SimilarityCandidate[],\n adjacency: Map<number, number[]>,\n baseOfHead: Map<number, number>,\n lockedHeads: Set<number>\n): Set<number> {\n const matchedBases = new Set<number>();\n for (const candidate of candidates) {\n const edges = adjacency.get(candidate.basePosition) ?? [];\n edges.push(candidate.headPosition);\n adjacency.set(candidate.basePosition, edges);\n if (!matchedBases.has(candidate.basePosition) && !baseOfHead.has(candidate.headPosition)) {\n baseOfHead.set(candidate.headPosition, candidate.basePosition);\n matchedBases.add(candidate.basePosition);\n if (candidate.similarity === 100) {\n lockedHeads.add(candidate.headPosition);\n }\n }\n }\n return matchedBases;\n}\n\n/** One Kuhn augmentation step: rewires existing (unlocked) matches only when that frees a head for `basePosition`. */\nfunction tryAugment(\n basePosition: number,\n adjacency: Map<number, number[]>,\n baseOfHead: Map<number, number>,\n lockedHeads: Set<number>,\n visitedHeads: Set<number>\n): boolean {\n for (const headPosition of adjacency.get(basePosition) ?? []) {\n if (visitedHeads.has(headPosition) || lockedHeads.has(headPosition)) {\n continue;\n }\n visitedHeads.add(headPosition);\n const currentBase = baseOfHead.get(headPosition);\n if (currentBase === undefined || tryAugment(currentBase, adjacency, baseOfHead, lockedHeads, visitedHeads)) {\n baseOfHead.set(headPosition, basePosition);\n return true;\n }\n }\n return false;\n}\n\n/** Token-LCS similarity of two sequences relative to the longer one, in percent (0 when unusable). */\nfunction tokenSimilarityPercent(\n base: Int32Array | undefined,\n head: Int32Array | undefined,\n minPercent: number\n): number {\n if (!base || !head || base.length === 0 || head.length === 0) {\n return 0;\n }\n // The LCS cannot exceed the shorter sequence, so mismatched lengths are pruned for free.\n const maxLength = Math.max(base.length, head.length);\n if (Math.min(base.length, head.length) * 100 < minPercent * maxLength) {\n return 0;\n }\n return (lcsLength(base, head) * 100) / maxLength;\n}\n\nfunction checkRatchets(\n file: string,\n base: FunctionMetrics,\n head: FunctionMetrics,\n tolerances: GateTolerances\n): GateViolation[] {\n const violations: GateViolation[] = [];\n for (const ratchet of ratchetMetrics) {\n const baseValue = ratchet.value(base);\n const headValue = ratchet.value(head);\n const allowedValue = baseValue + ratchet.allowance(tolerances, baseValue);\n if (headValue > allowedValue) {\n const name = head.name ?? '<anonymous>';\n violations.push({\n gate: 'function-regression',\n metric: ratchet.metric,\n file,\n functionName: name,\n startLine: head.startLine,\n endLine: head.endLine,\n baseValue,\n headValue,\n allowedValue,\n message:\n `${file}:${head.startLine}-${head.endLine} ${name}: ${ratchet.metric} worsened ` +\n `${ratchet.format(baseValue)} -> ${ratchet.format(headValue)} (allowed <= ${ratchet.format(allowedValue)}). ` +\n ratchet.remediation,\n });\n }\n }\n return violations;\n}\n\nfunction checkNewFunction(file: string, fn: FunctionMetrics, thresholds: NewFunctionThresholds): GateViolation[] {\n const violations: GateViolation[] = [];\n for (const check of newFunctionMetrics) {\n const headValue = check.value(fn);\n const allowedValue = check.limit(thresholds);\n if (headValue > allowedValue) {\n const name = fn.name ?? '<anonymous>';\n violations.push({\n gate: 'new-function',\n metric: check.metric,\n file,\n functionName: name,\n startLine: fn.startLine,\n endLine: fn.endLine,\n headValue,\n allowedValue,\n message:\n `${file}:${fn.startLine}-${fn.endLine} new function ${name}: ${check.metric} ${headValue} ` +\n `exceeds the new-code limit ${allowedValue}. ${check.remediation}`,\n });\n }\n }\n return violations;\n}\n\n/**\n * Anti-gaming backstops: splitting a function resets its entity identity and could hide a\n * worsening behind the (laxer) new-code thresholds, so when a removed named function's content\n * reappears in unmatched new code (see hasSplitEvidence) the file-level aggregates ratchet too —\n * the max cognitive complexity per file and the file's total NCSS. Purely additive changes and\n * unrelated remove-plus-add changes stay ungated. The max-cognitive backstop is also skipped when\n * a function-level cognitive violation already reports the file's maximum, since it would only\n * restate it.\n */\nfunction checkFileBackstops(\n file: GateFileInput,\n splitEvidence: boolean,\n reportedViolations: GateViolation[],\n options: GateOptions\n): GateViolation[] {\n const { baseMetrics, headMetrics } = file;\n if (!baseMetrics || !headMetrics || !splitEvidence) {\n return [];\n }\n const violations: GateViolation[] = [];\n const tolerances = options.tolerance;\n\n const maximumAlreadyReported = reportedViolations.some(\n (violation) =>\n violation.file === file.file &&\n violation.metric === 'cognitive complexity' &&\n (violation.gate === 'function-regression' || violation.gate === 'new-function') &&\n violation.headValue === headMetrics.maxCognitiveComplexity\n );\n const allowedMaxCognitive = baseMetrics.maxCognitiveComplexity + tolerances.cognitiveComplexity;\n if (!maximumAlreadyReported && headMetrics.maxCognitiveComplexity > allowedMaxCognitive) {\n const worst = findMostComplexFunction(headMetrics.functions);\n const startLine = worst?.startLine ?? 1;\n const endLine = worst?.endLine ?? headMetrics.lines.total;\n violations.push({\n gate: 'file-regression',\n metric: 'file max cognitive complexity',\n file: file.file,\n functionName: worst?.name ?? undefined,\n startLine,\n endLine,\n baseValue: baseMetrics.maxCognitiveComplexity,\n headValue: headMetrics.maxCognitiveComplexity,\n allowedValue: allowedMaxCognitive,\n message:\n `${file.file}:${startLine}-${endLine}: the file's max cognitive complexity worsened ` +\n `${baseMetrics.maxCognitiveComplexity} -> ${headMetrics.maxCognitiveComplexity} ` +\n `(allowed <= ${allowedMaxCognitive}). Simplify or split the most complex ` +\n `function${worst ? ` (${worst.name ?? '<anonymous>'})` : ''}.`,\n });\n }\n\n const allowedFileNcss = baseMetrics.ncssCount + tolerances.fileNcss;\n if (headMetrics.ncssCount > allowedFileNcss) {\n violations.push({\n gate: 'file-regression',\n metric: 'file NCSS',\n file: file.file,\n startLine: 1,\n endLine: headMetrics.lines.total,\n baseValue: baseMetrics.ncssCount,\n headValue: headMetrics.ncssCount,\n allowedValue: allowedFileNcss,\n message:\n `${file.file}:1-${headMetrics.lines.total}: functions were removed or split while the file grew from NCSS ` +\n `${baseMetrics.ncssCount} to ${headMetrics.ncssCount} (allowed <= ${allowedFileNcss}). ` +\n `Remove the added statements or move genuinely new code into its own module.`,\n });\n }\n\n return violations;\n}\n\nfunction findMostComplexFunction(functions: FunctionMetrics[]): FunctionMetrics | undefined {\n let worst: FunctionMetrics | undefined;\n for (const fn of functions) {\n if (!worst || fn.cognitiveComplexity > worst.cognitiveComplexity) {\n worst = fn;\n }\n }\n return worst;\n}\n\n/**\n * No new duplication: the distinct duplicated lines of a changed file (within-file plus\n * cross-file against the whole project, so copy-paste from existing code into new files is\n * caught) must not exceed the base revision's count.\n */\nfunction checkDuplication(file: GateFileInput, tolerances: GateTolerances): GateViolation[] {\n const allowedValue = file.baseDuplicatedLineCount + tolerances.duplicateLines;\n if (file.headDuplicatedLineCount <= allowedValue) {\n return [];\n }\n const partners = file.duplicationPartners.slice(0, 3).join(', ');\n const endLine = file.headMetrics?.lines.total ?? 1;\n return [\n {\n gate: 'duplication',\n metric: 'duplicated lines',\n file: file.file,\n startLine: 1,\n endLine,\n baseValue: file.baseDuplicatedLineCount,\n headValue: file.headDuplicatedLineCount,\n allowedValue,\n message:\n `${file.file}:1-${endLine}: duplicated lines increased ${file.baseDuplicatedLineCount} -> ` +\n `${file.headDuplicatedLineCount} (allowed <= ${allowedValue}). Deduplicate` +\n `${partners ? ` against ${partners}` : ' the repeated code'} by extracting a shared helper.`,\n },\n ];\n}\n"],"mappings":"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"}
|
package/dist/scan.cjs
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";const e=require("./_virtual/_rolldown/runtime.cjs"),t=require("./crossFileDuplication.cjs"),n=require("./nativeMetrics.cjs"),r=require("./metrics.cjs");let i=require("node:fs/promises"),a=require("node:path");a=e.__toESM(a,1);let o=require("node:os");o=e.__toESM(o,1);const s=new Map([[`.c`,`c`],[`.c++`,`cpp`],[`.cc`,`cpp`],[`.cjs`,`javascript`],[`.cp`,`cpp`],[`.cpp`,`cpp`],[`.tcc`,`cpp`],[`.cts`,`typescript`],[`.cxx`,`cpp`],[`.go`,`go`],[`.h`,`cpp`],[`.hh`,`cpp`],[`.hpp`,`cpp`],[`.hxx`,`cpp`],[`.java`,`java`],[`.js`,`javascript`],[`.jsx`,`jsx`],[`.mjs`,`javascript`],[`.mts`,`typescript`],[`.py`,`python`],[`.rb`,`ruby`],[`.rs`,`rust`],[`.ts`,`typescript`],[`.tsx`,`tsx`]]),c=new Set([`.agents`,`.claude`,`.cursor`,`.git`,`.next`,`.playwright-cli`,`.tox`,`.tmp`,`.turbo`,`.venv`,`.yarn`,`__fixtures__`,`__generated__`,`__pycache__`,`coverage`,`dist`,`fixtures`,`generated`,`node_modules`,`target`,`test-fixtures`,`vendor`,`venv`]),l=new Set([`__tests__`,`test`,`tests`,`spec`]),u=/(?:^test(?:[_-].*)?|\.(?:spec|test)|[_-](?:test|spec))\.[^.]+$/iu,d=/Test\.java$/u;function f(e){return e===`~`?o.default.homedir():e.startsWith(`~/`)?a.default.join(o.default.homedir(),e.slice(2)):a.default.resolve(e)}async function p(e){try{return(await(0,i.stat)(e)).isDirectory()?e:a.default.dirname(e)}catch{return a.default.dirname(e)}}async function m(e,t){let n=[],r=[],o=[],s=e;try{s=await(0,i.realpath)(e)}catch{}let c=a.default.dirname(s),l;try{l=await(0,i.stat)(s)}catch(e){let t=`${A(s,c)}: ${N(e)}`;return{displayRoot:c,files:n,errors:[t],warnings:o,fatalError:t}}if(l.isFile()){let e=a.default.dirname(s),i=k(s,t,!0);if(!i){let t=`${A(s,e)}: unsupported file type`;return{displayRoot:e,files:n,errors:[t],warnings:o,fatalError:t}}let c=_(t,n,r,o,e);try{await C(s,i,`single-file`,c,s)}catch(t){return g(t,e,n,r,o)}return{displayRoot:e,files:n,errors:r,warnings:o}}try{await b(s,_(t,n,r,o,s))}catch(e){return g(e,s,n,r,o)}return{displayRoot:s,files:n,errors:r,warnings:o}}async function h(e,t,n){let r=[],o=[],s=[],c=_(n,r,o,s,e);for(let l of t){let t=O(l,n)?k(l,n):void 0;if(!t)continue;let u=a.default.join(e,l);if(!(await(0,i.lstat)(u).catch(()=>{}))?.isSymbolicLink())try{await C(u,t,`directory`,c)}catch(t){return g(t,e,r,o,s)}}return{displayRoot:e,files:r,errors:o,warnings:s}}function g(e,t,r,i,a){if(!(e instanceof n.NativeAddonError))throw e;let o=N(e);return{displayRoot:t,files:r,errors:[...i,o],warnings:a,fatalError:o}}function _(e,t,n,r,i){return{options:e,files:t,errors:n,warnings:r,visitedDirectories:new Set,visitedFiles:new Set,rootDirectory:i}}async function v(e,t,n){try{return await e()}catch(e){n.errors.push(`${A(t,n.rootDirectory)}: ${N(e)}`);return}}async function y(e,t){let n=await v(()=>(0,i.realpath)(e),e,t);return n!==void 0&&D(n,t.rootDirectory)?n:void 0}async function b(e,t){let n=await y(e,t);if(n===void 0||t.visitedDirectories.has(n))return;t.visitedDirectories.add(n);let r=await v(()=>(0,i.readdir)(e,{withFileTypes:!0}),e,t);if(r!==void 0)for(let n of r){let r=a.default.join(e,n.name);if(n.isSymbolicLink()){await x(n.name,r,t);continue}if(n.isDirectory()){if(E(n.name,t.options))continue;await b(r,t);continue}n.isFile()&&await S(r,t)}}async function x(e,t,n){let r=await y(t,n);if(r===void 0)return;let o=await v(()=>(0,i.stat)(t),t,n);if(o!==void 0){if(o.isDirectory()){if(E(e,n.options)||E(a.default.basename(r),n.options))return;await b(t,n);return}o.isFile()&&await S(t,n,r,r)}}async function S(e,t,n=e,r){let i=k(n,t.options);i&&await C(e,i,`directory`,t,r)}async function C(e,t,a,o,s){try{let n=s??await(0,i.realpath)(e);if(o.visitedFiles.has(n))return;o.visitedFiles.add(n);let c=await(0,i.readFile)(e,`utf8`),l={language:t,duplication:o.options.duplication},u={file:e,metrics:r.measureCode(c,l)};if(a===`directory`)try{u.duplicationCandidates=r.collectCrossFileDuplicationFileData(c,l)}catch(t){o.warnings.push(`${A(e,o.rootDirectory)}: cross-file duplication candidates unavailable: ${N(t)}`)}o.files.push(u)}catch(t){if(t instanceof n.NativeAddonError)throw t;o.errors.push(`${A(e,o.rootDirectory)}: ${N(t)}`)}}function w(e,n){if(e.fatalError||e.files.length<2)return;let r=e.files.flatMap(({file:t,duplicationCandidates:n})=>n?[{file:A(t,e.displayRoot),...n}]:[]);r.length<2||(e.crossFileDuplication=t.measureCrossFileDuplication(r,n.duplication))}function T(e,t,n){let r=new Set(e?.duplication.duplicateLineNumbers),i=t&&Object.hasOwn(t.duplicateLineNumbersByFile,n)?t.duplicateLineNumbersByFile[n]??[]:[];for(let e of i)r.add(e);return r}function E(e,t){return c.has(e)?!0:!t.includeTests&&l.has(e)}function D(e,t){let n=a.default.relative(t,e);return n===``||n!==`..`&&!n.startsWith(`..${a.default.sep}`)&&!a.default.isAbsolute(n)}function O(e,t){let n=e.split(`/`);for(let e of n.slice(0,-1))if(c.has(e)||!t.includeTests&&l.has(e))return!1;return k(e,t)!==void 0}function k(e,t,n=!1){let r=e.toLowerCase();if(!(!n&&(r.endsWith(`.d.ts`)||r.endsWith(`.d.mts`)||r.endsWith(`.d.cts`)||r.endsWith(`.min.js`)||r.endsWith(`.pnp.cjs`)))&&!(!n&&!t.includeTests&&(u.test(a.default.basename(e))||d.test(a.default.basename(e)))))return a.default.extname(e)===`.C`?`cpp`:s.get(a.default.extname(r))}function A(e,t){return a.default.relative(t,e)||a.default.basename(e)}function j(e){process.stdout.write(e)}function M(e){process.stderr.write(e)}function N(e){return e instanceof Error?e.message:String(e)}exports.addCrossFileDuplication=w,exports.collectDuplicatedLineNumbers=T,exports.configSearchDirectory=p,exports.formatError=N,exports.formatPath=A,exports.getLanguage=k,exports.isScannedPath=O,exports.resolveTarget=f,exports.scanListedFiles=h,exports.scanTarget=m,exports.writeStderr=M,exports.writeStdout=j;
|
|
2
|
+
//# sourceMappingURL=scan.cjs.map
|