diff --git a/gitgalaxy/core/detector.py b/gitgalaxy/core/detector.py index 17afaba86..fa9aeda2c 100644 --- a/gitgalaxy/core/detector.py +++ b/gitgalaxy/core/detector.py @@ -2018,11 +2018,12 @@ def _function_slice( # which only "succeeds" when a `{` happens to appear by # coincidence. This dropped ~97.4% of real matches (1 of 39 # raw matches reached the named list). Mode A's "greedy to - # the next func_start match" body heuristic is a correct fit. - "m4", ) or family in ("column_sensitive"): mode_name = "Mode_A_Labels" sats, impact = self._slice_by_labels(code, rules, offset, spatial_map) + elif lang_id == "m4": + mode_name = "Mode_F_M4_Brackets" + sats, impact = self._slice_by_m4_brackets(code, rules, offset, spatial_map) elif family in ("single_line_only", "multi_style_dash") or lang_id in ( "python", "yaml", @@ -4414,6 +4415,93 @@ def preserve_newlines(m): # SHARED FUNCTIONAL METRICS ENGINE # ============================================================================== + def _slice_by_m4_brackets( + self, + code: str, + rules: dict[str, Any], + offset: int, + spatial_map: dict[str, list[int]], + ) -> tuple[list[FunctionNode], float]: + """[INTEGRATION MODE F] - M4 Bracket-Aware Slicing""" + satellites: list[FunctionNode] = [] + sum_fxn_impact = 0.0 + func_start = rules.get("func_start") + + if not func_start: + return [], 0.0 + + matches = list(func_start.finditer(code)) + if not matches: + return [], 0.0 + + for match in matches: + start_idx = match.start() + + # Find the opening parenthesis for this macro invocation + paren_start = code.find("(", start_idx) + if paren_start == -1: + continue + + depth_paren = 0 + depth_bracket = 0 + pos = paren_start + + while pos < len(code): + ch = code[pos] + if ch == "[": + depth_bracket += 1 + elif ch == "]": + depth_bracket = max(0, depth_bracket - 1) + elif ch == "(": + # In M4, brackets quote everything inside them, including parens + if depth_bracket == 0: + depth_paren += 1 + elif ch == ")" and depth_bracket == 0: + depth_paren -= 1 + if depth_paren == 0: + break + pos += 1 + + end_idx = min(pos + 1, len(code)) + + block = code[start_idx:end_idx].strip() + if not block: + continue + + name = "unknown" + if match.group(1) is not None: + name = match.group(1).strip() + elif match.lastindex and match.group(match.lastindex) is not None: + name = match.group(match.lastindex).strip() + else: + # Fallback extraction if regex group failed + # The first argument in parentheses + args_text = code[paren_start + 1 : end_idx - 1] + # Regex will typically capture the name, but just in case: + m_name = re.search(r"^\s*(?:`([^']+)'|\[{1,2}([^\]]+)\]{0,2}|([A-Za-z_][A-Za-z0-9_]*))", args_text) + if m_name: + name = next(g for g in m_name.groups() if g is not None).strip() + + start_line = offset + code.count("\n", 0, start_idx) + 1 + loc = block.count("\n") + 1 + + sat, mag = self._calculate_block_metrics( + name, + block, + loc, + start_line, + start_line + loc - 1, + rules, + start_idx, + end_idx, + spatial_map, + ) + + satellites.append(sat) + sum_fxn_impact += mag + + return satellites, sum_fxn_impact + # galaxyscope:ignore sec_high_risk_execution def _matching_paren_end(self, text: str, open_idx: int) -> int: diff --git a/tests/core_engine/test_detector.py b/tests/core_engine/test_detector.py index 88d6ca6eb..a7a4208d6 100644 --- a/tests/core_engine/test_detector.py +++ b/tests/core_engine/test_detector.py @@ -3380,3 +3380,45 @@ def test_detector_nested_functions_in_signature_dropped(): # should prevent it from being extracted as a real satellite function. satellites, _ = opt._slice_by_braces(code, "typescript", opt.languages["typescript"]["rules"], 0, {}) assert len(satellites) == 0, "Nested parameter function `f` should have been skipped by signature_end logic!" + +def test_detector_m4_bracket_slicing_with_unbalanced_quotes(): + """ + Issue #2204: m4 macro bodies are bounded by `(` and `)`, but they can contain + shell fragments with unbalanced quotes (e.g. `"` and `'`) that break Mode B's + string shielding. They also use `[` and `]` to quote strings (which protects + internal parentheses). The custom `_slice_by_m4_brackets` mode handles this. + """ + from gitgalaxy.core.detector import StructuralExtractor + from gitgalaxy.standards.language_standards import LANGUAGE_DEFINITIONS + + code = ''' +AC_DEFUN([AC_PROG_F77], []) + +AC_DEFUN([MY_MACRO], [ + if test "$foo" = "bar("; then + echo "unbalanced quote here -> '" + fi + # [ ( nested bracket paren ignored ) ] +]) + +AC_DEFUN([ANOTHER], +[ + echo "done" +]) +''' + extractor = StructuralExtractor("m4", LANGUAGE_DEFINITIONS) + rules = LANGUAGE_DEFINITIONS["m4"]["rules"] + + sats, _ = extractor._slice_by_m4_brackets(code, rules, 0, {}) + + assert len(sats) == 3 + + # Check names + assert sats[0]["name"] == "AC_PROG_F77" + assert sats[1]["name"] == "MY_MACRO" + assert sats[2]["name"] == "ANOTHER" + + # Check exact lengths + assert sats[0]["loc"] == 1 + assert sats[1]["loc"] == 6 + assert sats[2]["loc"] == 4 diff --git a/tests/golden_master_audit.json b/tests/golden_master_audit.json index ba5f18582..53171d856 100644 --- a/tests/golden_master_audit.json +++ b/tests/golden_master_audit.json @@ -12,8 +12,8 @@ }, "Target Root Name": "data", "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", - "Analysis ISO Timestamp": "2026-08-23T22:33:58.827982+00:00", - "Total Scan Duration": "39.59 seconds" + "Analysis ISO Timestamp": "2026-08-24T02:11:40.019706+00:00", + "Total Scan Duration": "38.64 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", @@ -199,7 +199,7 @@ "avg_cognitive_load": 24.695, "avg_safety_score": 38.656, "avg_tech_debt": 25.011, - "avg_documentation": 21.56 + "avg_documentation": 21.558 }, "composition": { "xml": { @@ -280,7 +280,7 @@ "m4": { "files": 8, "loc": 13321, - "impact": 669.62 + "impact": 614.52 }, "python": { "files": 268, @@ -1515,7 +1515,7 @@ }, "m4/gnucobol": { "file_count": 2, - "total_mass": 192.98, + "total_mass": 138.58, "avg_exposures": { "cognitive_load": 2.61, "safety_score": 0.0, @@ -1528,7 +1528,7 @@ "spec_match": 50.0, "stability": 25.0, "churn": 0.0, - "documentation": 14.78, + "documentation": 13.92, "secrets_risk": 0.0 } }, @@ -1933,7 +1933,7 @@ }, "m4/curl/m4": { "file_count": 5, - "total_mass": 96.06, + "total_mass": 95.36, "avg_exposures": { "cognitive_load": 4.78, "safety_score": 0.0, @@ -413176,366 +413176,6 @@ } } }, - "m4/gnucobol": { - "Directory Group Magnitude": 192.98, - "File Count": 2, - "Ecosystem Fingerprint (Archetypes)": { - "Static: Literature & Documentation": "50.0%", - "Unclassified": "50.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "2.61%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "13.66%", - "Testing Exposure": "1.15%", - "API Exposure": "5.51%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "2.44%", - "Specification Exposure": "50.0%", - "Instability Exposure": "25.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.78%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "m4/gnucobol/COPYING": { - "1. Artifact Identity": { - "Filename": "COPYING", - "Path": "m4/gnucobol/COPYING", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "plaintext", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (COPYING)" - }, - "2. Topological Coordinates": { - "X": -4837.46, - "Y": -126.2, - "Z": 4397.19 - }, - "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "N/A", - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 675, - "Coding LOC": 0, - "Documentation LOC": 553, - "Structural Magnitude": 13.5, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "m4/gnucobol/configure.ac": { - "1. Artifact Identity": { - "Filename": "configure.ac", - "Path": "m4/gnucobol/configure.ac", - "Language": "M4", - "Architect": "Unknown Architect", - "Indentation Style": "Mixed (37.6% Spaces / 62.4% Tabs)", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "plaintext", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (configure.ac)" - }, - "2. Topological Coordinates": { - "X": -4585.55, - "Y": -118.16, - "Z": 3970.8 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 2922, - "Coding LOC": 2144, - "Documentation LOC": 517, - "Structural Magnitude": 179.48, - "Control Flow Ratio": "100.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.026 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "27.32%", - "Testing Exposure": "2.31%", - "API Exposure": "11.01%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "4.88%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.55%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "AC_PROG_F77", - "Structural Impact": 55.5, - "Lines of Code (LOC)": 1532, - "Control Flow Branches": 36, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 658, - "End Line": 2189 - }, - { - "Function Name": "AC_PROG_CXX", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 657, - "End Line": 657 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 50, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 42, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 80, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 10, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 12, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 126, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 240, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 70, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 814, - "Structural Space Indentations": 491, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 362, - "Design Camel Case": 0, - "Design Snake Case": 85, - "Design Pascal Case": 0, - "Design Upper Case": 273, - "Design Short Vars": 8, - "Design Long Vars": 4, - "Duplicate Logic": 0, - "Orphaned Logic": 2, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, "typescript/fp-ts": { "Directory Group Magnitude": 160.92, "File Count": 5, @@ -417508,6 +417148,366 @@ } } }, + "m4/gnucobol": { + "Directory Group Magnitude": 138.58, + "File Count": 2, + "Ecosystem Fingerprint (Archetypes)": { + "Static: Literature & Documentation": "50.0%", + "Unclassified": "50.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "2.61%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "13.66%", + "Testing Exposure": "1.15%", + "API Exposure": "5.51%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "2.44%", + "Specification Exposure": "50.0%", + "Instability Exposure": "25.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "13.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "m4/gnucobol/COPYING": { + "1. Artifact Identity": { + "Filename": "COPYING", + "Path": "m4/gnucobol/COPYING", + "Language": "Plaintext", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "plaintext", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (COPYING)" + }, + "2. Topological Coordinates": { + "X": -4831.7, + "Y": -126.34, + "Z": 4391.98 + }, + "3. Architectural Profile": { + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 675, + "Coding LOC": 0, + "Documentation LOC": 553, + "Structural Magnitude": 13.5, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + }, + "5. Function Analysis": [], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "m4/gnucobol/configure.ac": { + "1. Artifact Identity": { + "Filename": "configure.ac", + "Path": "m4/gnucobol/configure.ac", + "Language": "M4", + "Architect": "Unknown Architect", + "Indentation Style": "Mixed (37.6% Spaces / 62.4% Tabs)", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "plaintext", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (configure.ac)" + }, + "2. Topological Coordinates": { + "X": -4582.66, + "Y": -118.16, + "Z": 3968.2 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 2922, + "Coding LOC": 2144, + "Documentation LOC": 517, + "Structural Magnitude": 125.08, + "Control Flow Ratio": "100.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.026 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.21%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "27.32%", + "Testing Exposure": "2.3%", + "API Exposure": "11.01%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "4.88%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "27.84%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "AC_PROG_CXX", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 657, + "End Line": 657 + }, + { + "Function Name": "AC_PROG_F77", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 658, + "End Line": 658 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 50, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 42, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 6, + "Exposed API / Public Exports": 80, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 10, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 1, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 12, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 126, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 240, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 70, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 814, + "Structural Space Indentations": 491, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 362, + "Design Camel Case": 0, + "Design Snake Case": 85, + "Design Pascal Case": 0, + "Design Upper Case": 273, + "Design Short Vars": 8, + "Design Long Vars": 4, + "Duplicate Logic": 0, + "Orphaned Logic": 2, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + } + } + }, "assembly/hellosilicon": { "Directory Group Magnitude": 134.16, "File Count": 4, @@ -419659,44 +419659,44 @@ } } }, - "m4/curl/m4": { - "Directory Group Magnitude": 96.06, - "File Count": 5, + "xml/apex": { + "Directory Group Magnitude": 95.76, + "File Count": 6, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "4.78%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "75.12%", - "Testing Exposure": "2.36%", - "API Exposure": "1.74%", + "Cognitive Load Exposure": "7.1%", + "Error & Exception Exposure": "17.37%", + "Tech Debt Exposure": "45.98%", + "Testing Exposure": "1.23%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "12.32%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "53.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.01%", + "Documentation Exposure": "13.63%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "m4/curl/m4/curl-confopts.m4": { + "xml/apex/CanTheUser_Tests.cls-meta.xml": { "1. Artifact Identity": { - "Filename": "curl-confopts.m4", - "Path": "m4/curl/m4/curl-confopts.m4", - "Language": "M4", + "Filename": "CanTheUser_Tests.cls-meta.xml", + "Path": "xml/apex/CanTheUser_Tests.cls-meta.xml", + "Language": "Xml", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6294.88, - "Y": -77.67, - "Z": -1004.48 + "X": 2365.65, + "Y": 112.82, + "Z": 3759.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -419705,186 +419705,45 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 577, - "Coding LOC": 375, - "Documentation LOC": 163, - "Structural Magnitude": 38.4, + "Total LOC": 6, + "Coding LOC": 0, + "Documentation LOC": 5, + "Structural Magnitude": 10.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "62.25%", - "Testing Exposure": "2.35%", - "API Exposure": "3.46%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.15%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "6.05%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CURL_CHECK_OPTION_OPTIMIZE", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 48, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 142, - "End Line": 189 - }, - { - "Function Name": "CURL_CHECK_OPTION_WARNINGS", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 270, - "End Line": 296 - }, - { - "Function Name": "CURL_CHECK_OPTION_ARES", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 101 - }, - { - "Function Name": "CURL_CHECK_OPTION_DEBUG", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 110, - "End Line": 134 - }, - { - "Function Name": "CURL_CHECK_OPTION_SYMBOL_HIDING", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 198, - "End Line": 229 - }, - { - "Function Name": "CURL_CHECK_OPTION_RT", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 238, - "End Line": 262 - }, - { - "Function Name": "CURL_CHECK_OPTION_WERROR", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 304, - "End Line": 327 - }, - { - "Function Name": "CURL_CHECK_NONBLOCKING_SOCKET", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 334, - "End Line": 357 - }, - { - "Function Name": "CURL_CHECK_OPTION_THREADED_RESOLVER", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 67 - }, - { - "Function Name": "CURL_CONFIGURE_SYMBOL_HIDING", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 369, - "End Line": 385 - }, - { - "Function Name": "CURL_CHECK_LIB_ARES", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 75, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 393, - "End Line": 467 - }, - { - "Function Name": "CURL_CHECK_OPTION_HTTPSRR", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 475, - "End Line": 502 - }, - { - "Function Name": "CURL_CHECK_OPTION_ECH", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 510, - "End Line": 538 - }, - { - "Function Name": "CURL_CHECK_OPTION_SSLS_EXPORT", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 546, - "End Line": 576 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 9, - "Function/Method Declarations": 14, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -419905,15 +419764,15 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 5, - "Preprocessor Macros": 2, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 47, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -419923,7 +419782,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 324, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -419940,15 +419799,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 108, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 57, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 35, + "Design Upper Case": 0, "Design Short Vars": 0, - "Design Long Vars": 1, + "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -419958,7 +419817,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 2, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -419979,22 +419838,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/curl-mbedtls.m4": { + "xml/apex/IterationRecipes_Tests.cls-meta.xml": { "1. Artifact Identity": { - "Filename": "curl-mbedtls.m4", - "Path": "m4/curl/m4/curl-mbedtls.m4", - "Language": "M4", + "Filename": "IterationRecipes_Tests.cls-meta.xml", + "Path": "xml/apex/IterationRecipes_Tests.cls-meta.xml", + "Language": "Xml", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6581.06, - "Y": -42.94, - "Z": -1681.86 + "X": 2583.66, + "Y": 160.61, + "Z": 4415.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420003,56 +419862,45 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 123, - "Coding LOC": 70, - "Documentation LOC": 35, - "Structural Magnitude": 4.9, + "Total LOC": 6, + "Coding LOC": 0, + "Documentation LOC": 5, + "Structural Magnitude": 10.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.61%", - "Testing Exposure": "2.3%", - "API Exposure": "4.56%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.15%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "31.65%", + "Documentation Exposure": "6.05%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CURL_WITH_MBEDTLS", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 95, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 122 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 3, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -420069,16 +419917,16 @@ "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 2, + "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -420091,7 +419939,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 66, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420108,15 +419956,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 30, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 15, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 15, + "Design Upper Case": 0, "Design Short Vars": 0, - "Design Long Vars": 2, + "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -420126,7 +419974,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 2, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -420147,22 +419995,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/curl-sysconfig.m4": { + "xml/apex/ListSortingRecipes_Tests.cls-meta.xml": { "1. Artifact Identity": { - "Filename": "curl-sysconfig.m4", - "Path": "m4/curl/m4/curl-sysconfig.m4", - "Language": "M4", + "Filename": "ListSortingRecipes_Tests.cls-meta.xml", + "Path": "xml/apex/ListSortingRecipes_Tests.cls-meta.xml", + "Language": "Xml", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6053.85, - "Y": -172.48, - "Z": -1560.34 + "X": 1884.76, + "Y": 252.1, + "Z": 4095.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420171,50 +420019,39 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 52, - "Coding LOC": 21, - "Documentation LOC": 29, - "Structural Magnitude": 1.82, + "Total LOC": 6, + "Coding LOC": 0, + "Documentation LOC": 5, + "Structural Magnitude": 10.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.43%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.34%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.66%", + "Documentation Exposure": "6.05%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CURL_DARWIN_SYSTEMCONFIGURATION", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 33 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -420246,7 +420083,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 3, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -420259,7 +420096,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420276,15 +420113,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 5, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -420294,7 +420131,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 2, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -420315,22 +420152,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/xc-am-iface.m4": { + "xml/apex/CanTheUser_Tests.cls": { "1. Artifact Identity": { - "Filename": "xc-am-iface.m4", - "Path": "m4/curl/m4/xc-am-iface.m4", - "Language": "M4", + "Filename": "CanTheUser_Tests.cls", + "Path": "xml/apex/CanTheUser_Tests.cls", + "Language": "Apex", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6792.0, - "Y": 23.46, - "Z": -1054.09 + "X": 2286.17, + "Y": 135.41, + "Z": 4092.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420339,80 +420176,210 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 86, - "Coding LOC": 19, - "Documentation LOC": 59, - "Structural Magnitude": 4.78, - "Control Flow Ratio": "0.0%", + "Total LOC": 167, + "Coding LOC": 144, + "Documentation LOC": 2, + "Structural Magnitude": 30.78, + "Control Flow Ratio": "66.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.263 + "Raw Cognitive Density": 0.149 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.48%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.46%", + "Cognitive Load Exposure": "8.3%", + "Error & Exception Exposure": "50.27%", + "Tech Debt Exposure": "99.98%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "27.11%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "19.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "_XC_AUTOMAKE_BODY", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 17, + "Function Name": "getBulkFLSAccessibleWithAccountPositive", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 86, + "End Line": 99 + }, + { + "Function Name": "getBulkFLSUpdatableWithAccountPositive", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 120, + "End Line": 133 + }, + { + "Function Name": "getBulkFLSAccessibleWithAccountPositiveWithNegativeResults", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 18, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 57 + "Start Line": 101, + "End Line": 118 }, { - "Function Name": "XC_AUTOMAKE", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, + "Function Name": "getBulkFLSUpdatableWithAccountPositiveWithNegativeResults", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 18, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 73, - "End Line": 85 + "Start Line": 135, + "End Line": 152 + }, + { + "Function Name": "memoizedFLSMDCcomparesAccesibleToUpdatable", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 165 + }, + { + "Function Name": "canCrudAccountCreatePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 6, + "End Line": 12 + }, + { + "Function Name": "canCrudCreateAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 20 + }, + { + "Function Name": "canCrudAccountReadPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 22, + "End Line": 28 + }, + { + "Function Name": "canCrudReadAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 30, + "End Line": 36 + }, + { + "Function Name": "canCrudAccountUpdatePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 44 + }, + { + "Function Name": "canCrudEditAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 46, + "End Line": 52 + }, + { + "Function Name": "canCrudAccountDeletePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 54, + "End Line": 60 + }, + { + "Function Name": "canCrudDestroyAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 62, + "End Line": 68 + }, + { + "Function Name": "getFLSofAccountNamePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 70, + "End Line": 76 + }, + { + "Function Name": "getFLSofAccountIDNegative", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 78, + "End Line": 84 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 3, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 1, + "Function Parameters": 15, + "Function/Method Declarations": 15, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 4, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 35, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 16, + "Generic Type Abstractions": 12, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 47, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -420422,7 +420389,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 12, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -420433,11 +420400,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1, + "Structural Space Indentations": 141, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420454,15 +420421,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 8, + "Design Camel Case": 4, + "Design Snake Case": 4, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 15, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -420493,22 +420460,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/zz40-xc-ovr.m4": { + "xml/apex/IterationRecipes_Tests.cls": { "1. Artifact Identity": { - "Filename": "zz40-xc-ovr.m4", - "Path": "m4/curl/m4/zz40-xc-ovr.m4", - "Language": "M4", + "Filename": "IterationRecipes_Tests.cls", + "Path": "xml/apex/IterationRecipes_Tests.cls", + "Language": "Apex", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6523.37, - "Y": -92.58, - "Z": -1346.27 + "X": 2668.07, + "Y": 94.78, + "Z": 3866.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420517,275 +420484,115 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 668, - "Coding LOC": 338, - "Documentation LOC": 253, - "Structural Magnitude": 46.16, - "Control Flow Ratio": "0.0%", + "Total LOC": 74, + "Coding LOC": 59, + "Documentation LOC": 7, + "Structural Magnitude": 9.98, + "Control Flow Ratio": "42.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.136 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "6.28%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "13.77%", - "Testing Exposure": "2.37%", - "API Exposure": "0.71%", + "Tech Debt Exposure": "99.1%", + "Testing Exposure": "2.32%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "25.7%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "XC_CONFIGURE_PREAMBLE", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 72, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 473, - "End Line": 544 - }, - { - "Function Name": "XC_CHECK_PATH_SEPARATOR", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 56, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 612, - "End Line": 667 - }, - { - "Function Name": "_AC_INIT_PREPARE_FS_SEPARATORS", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 559, - "End Line": 573 - }, - { - "Function Name": "_AS_PATH_SEPARATOR_PREPARE", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 545, - "End Line": 558 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_CAT", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 0, + "Function Name": "testIterableApiClientRecipeNegativeWhenRecordPageRequestFails", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 3, "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 328, - "End Line": 348 + "Control Flow Ratio": "60.0%", + "Start Line": 46, + "End Line": 72 }, { - "Function Name": "_XC_CFG_PRE_CHECK_PATH_SEPARATOR", + "Function Name": "testIterableApiClientRecipePositive", "Structural Impact": 2.0, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 369, - "End Line": 421 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_ECHO", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 91, - "End Line": 107 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_SED", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 208, - "End Line": 224 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_GREP", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 241, - "End Line": 257 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_TR", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 270, - "End Line": 286 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_WC", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 299, - "End Line": 315 - }, - { - "Function Name": "AC_DEFUN", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 135 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_VAR_PATH", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 148, - "End Line": 163 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_EXPR", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 176, - "End Line": 191 - }, - { - "Function Name": "_XC_CFG_PRE_POSTLUDE", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, + "Lines of Code (LOC)": 26, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 428, - "End Line": 443 - }, - { - "Function Name": "_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 574, - "End Line": 580 + "Start Line": 19, + "End Line": 44 }, { - "Function Name": "_XC_CFG_PRE_PREAMBLE", + "Function Name": "testIterateOnAccountListPositive", "Structural Impact": 1.5, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 42, - "End Line": 81 - }, - { - "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MAJOR", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 34 - }, - { - "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MINOR", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 + "Start Line": 6, + "End Line": 17 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 37, - "Function Parameters": 51, - "Function/Method Declarations": 19, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 4, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 4, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 2, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Structured Documentation Blocks": 2, + "Unit Test Assertions": 14, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 4, + "Generic Type Abstractions": 8, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 13, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 37, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 10, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 4, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 4, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 2, + "Private / Encapsulated Scopes": 3, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, + "Bypassed / Skipped Tests": 2, "Structural Tab Indentations": 0, - "Structural Space Indentations": 92, + "Structural Space Indentations": 56, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420802,15 +420609,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 50, - "Design Camel Case": 0, - "Design Snake Case": 37, + "Core Var Decl": 6, + "Design Camel Case": 3, + "Design Snake Case": 3, "Design Pascal Case": 0, - "Design Upper Case": 10, + "Design Upper Case": 0, "Design Short Vars": 0, - "Design Long Vars": 3, + "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -420840,47 +420647,23 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "xml/apex": { - "Directory Group Magnitude": 95.76, - "File Count": 6, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "7.1%", - "Error & Exception Exposure": "17.37%", - "Tech Debt Exposure": "45.98%", - "Testing Exposure": "1.23%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "12.32%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.63%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "xml/apex/CanTheUser_Tests.cls-meta.xml": { + }, + "xml/apex/ListSortingRecipes_Tests.cls": { "1. Artifact Identity": { - "Filename": "CanTheUser_Tests.cls-meta.xml", - "Path": "xml/apex/CanTheUser_Tests.cls-meta.xml", - "Language": "Xml", + "Filename": "ListSortingRecipes_Tests.cls", + "Path": "xml/apex/ListSortingRecipes_Tests.cls", + "Language": "Apex", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .xml)" + "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 2365.65, - "Y": 112.82, - "Z": 3759.41 + "X": 2044.06, + "Y": 231.79, + "Z": 4252.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420889,59 +420672,100 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 6, - "Coding LOC": 0, - "Documentation LOC": 5, - "Structural Magnitude": 10.52, - "Control Flow Ratio": "0.0%", + "Total LOC": 150, + "Coding LOC": 142, + "Documentation LOC": 3, + "Structural Magnitude": 23.44, + "Control Flow Ratio": "14.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.0 + "Raw Cognitive Density": 0.3 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.15%", + "Cognitive Load Exposure": "12.99%", + "Error & Exception Exposure": "53.94%", + "Tech Debt Exposure": "76.8%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "46.8%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "6.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.05%", + "Documentation Exposure": "18.34%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "testASCComparatorException", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 95, + "End Line": 116 + }, + { + "Function Name": "testSortAccountsByShippingCountry", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 63 + }, + { + "Function Name": "testSortAccountsByShippingCountryInDescending", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 65, + "End Line": 93 + }, + { + "Function Name": "testSortAccountsByNumberOfEmployees", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 118, + "End Line": 148 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 12, + "Function Parameters": 4, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 12, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Structured Documentation Blocks": 2, + "Unit Test Assertions": 16, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 5, + "Generic Type Abstractions": 14, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 9, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -420951,7 +420775,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 16, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -420960,13 +420784,13 @@ "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 10, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 14, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 139, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420983,15 +420807,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 29, "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Snake Case": 7, + "Design Pascal Case": 12, + "Design Upper Case": 10, + "Design Short Vars": 6, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421021,23 +420845,47 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "xml/apex/IterationRecipes_Tests.cls-meta.xml": { + } + } + }, + "m4/curl/m4": { + "Directory Group Magnitude": 95.36, + "File Count": 5, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "4.78%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "75.12%", + "Testing Exposure": "2.36%", + "API Exposure": "1.74%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "19.01%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "m4/curl/m4/curl-confopts.m4": { "1. Artifact Identity": { - "Filename": "IterationRecipes_Tests.cls-meta.xml", - "Path": "xml/apex/IterationRecipes_Tests.cls-meta.xml", - "Language": "Xml", + "Filename": "curl-confopts.m4", + "Path": "m4/curl/m4/curl-confopts.m4", + "Language": "M4", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .xml)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2583.66, - "Y": 160.61, - "Z": 4415.92 + "X": 6294.83, + "Y": -77.64, + "Z": -1004.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421046,45 +420894,186 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 6, - "Coding LOC": 0, - "Documentation LOC": 5, - "Structural Magnitude": 10.52, + "Total LOC": 577, + "Coding LOC": 375, + "Documentation LOC": 163, + "Structural Magnitude": 38.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.0 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.15%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "62.25%", + "Testing Exposure": "2.35%", + "API Exposure": "3.46%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "6.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.05%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "CURL_CHECK_OPTION_OPTIMIZE", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 48, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 142, + "End Line": 189 + }, + { + "Function Name": "CURL_CHECK_OPTION_WARNINGS", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 270, + "End Line": 296 + }, + { + "Function Name": "CURL_CHECK_OPTION_ARES", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 101 + }, + { + "Function Name": "CURL_CHECK_OPTION_DEBUG", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 110, + "End Line": 134 + }, + { + "Function Name": "CURL_CHECK_OPTION_SYMBOL_HIDING", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 198, + "End Line": 229 + }, + { + "Function Name": "CURL_CHECK_OPTION_RT", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 238, + "End Line": 262 + }, + { + "Function Name": "CURL_CHECK_OPTION_WERROR", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 304, + "End Line": 327 + }, + { + "Function Name": "CURL_CHECK_NONBLOCKING_SOCKET", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 334, + "End Line": 357 + }, + { + "Function Name": "CURL_CHECK_OPTION_THREADED_RESOLVER", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 67 + }, + { + "Function Name": "CURL_CONFIGURE_SYMBOL_HIDING", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 369, + "End Line": 385 + }, + { + "Function Name": "CURL_CHECK_LIB_ARES", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 75, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 393, + "End Line": 467 + }, + { + "Function Name": "CURL_CHECK_OPTION_HTTPSRR", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 475, + "End Line": 502 + }, + { + "Function Name": "CURL_CHECK_OPTION_ECH", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 510, + "End Line": 537 + }, + { + "Function Name": "CURL_CHECK_OPTION_SSLS_EXPORT", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 546, + "End Line": 575 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 9, + "Function/Method Declarations": 14, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -421105,15 +421094,15 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Dependency Injection Constructs": 5, + "Preprocessor Macros": 2, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 47, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -421123,7 +421112,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 324, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421140,15 +421129,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 108, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 57, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 35, "Design Short Vars": 0, - "Design Long Vars": 0, + "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421158,7 +421147,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, + "Commented-Out Executable Logic": 2, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -421179,22 +421168,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/ListSortingRecipes_Tests.cls-meta.xml": { + "m4/curl/m4/curl-mbedtls.m4": { "1. Artifact Identity": { - "Filename": "ListSortingRecipes_Tests.cls-meta.xml", - "Path": "xml/apex/ListSortingRecipes_Tests.cls-meta.xml", - "Language": "Xml", + "Filename": "curl-mbedtls.m4", + "Path": "m4/curl/m4/curl-mbedtls.m4", + "Language": "M4", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .xml)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 1884.76, - "Y": 252.1, - "Z": 4095.81 + "X": 6580.88, + "Y": -42.95, + "Z": -1681.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421203,45 +421192,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 6, - "Coding LOC": 0, - "Documentation LOC": 5, - "Structural Magnitude": 10.52, + "Total LOC": 123, + "Coding LOC": 70, + "Documentation LOC": 35, + "Structural Magnitude": 4.9, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.0 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.15%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "99.61%", + "Testing Exposure": "2.3%", + "API Exposure": "4.56%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "6.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.05%", + "Documentation Exposure": "31.65%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "CURL_WITH_MBEDTLS", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 95, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 122 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -421258,16 +421258,16 @@ "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 2, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -421280,7 +421280,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 66, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421297,15 +421297,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 30, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 15, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 15, "Design Short Vars": 0, - "Design Long Vars": 0, + "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421315,7 +421315,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, + "Commented-Out Executable Logic": 2, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -421336,22 +421336,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/CanTheUser_Tests.cls": { + "m4/curl/m4/curl-sysconfig.m4": { "1. Artifact Identity": { - "Filename": "CanTheUser_Tests.cls", - "Path": "xml/apex/CanTheUser_Tests.cls", - "Language": "Apex", + "Filename": "curl-sysconfig.m4", + "Path": "m4/curl/m4/curl-sysconfig.m4", + "Language": "M4", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cls)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2286.17, - "Y": 135.41, - "Z": 4092.93 + "X": 6053.8, + "Y": -172.45, + "Z": -1560.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421360,210 +421360,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 167, - "Coding LOC": 144, - "Documentation LOC": 2, - "Structural Magnitude": 30.78, - "Control Flow Ratio": "66.7%", + "Total LOC": 52, + "Coding LOC": 21, + "Documentation LOC": 29, + "Structural Magnitude": 1.92, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.149 + "Raw Cognitive Density": 0.238 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.3%", - "Error & Exception Exposure": "50.27%", - "Tech Debt Exposure": "99.98%", - "Testing Exposure": "2.33%", + "Cognitive Load Exposure": "11.43%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "99.97%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "27.11%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.55%", + "Documentation Exposure": "27.66%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "getBulkFLSAccessibleWithAccountPositive", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 86, - "End Line": 99 - }, - { - "Function Name": "getBulkFLSUpdatableWithAccountPositive", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 120, - "End Line": 133 - }, - { - "Function Name": "getBulkFLSAccessibleWithAccountPositiveWithNegativeResults", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 101, - "End Line": 118 - }, - { - "Function Name": "getBulkFLSUpdatableWithAccountPositiveWithNegativeResults", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 135, - "End Line": 152 - }, - { - "Function Name": "memoizedFLSMDCcomparesAccesibleToUpdatable", + "Function Name": "CURL_DARWIN_SYSTEMCONFIGURATION", "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 165 - }, - { - "Function Name": "canCrudAccountCreatePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 12 - }, - { - "Function Name": "canCrudCreateAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 20 - }, - { - "Function Name": "canCrudAccountReadPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 22, - "End Line": 28 - }, - { - "Function Name": "canCrudReadAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 36 - }, - { - "Function Name": "canCrudAccountUpdatePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 44 - }, - { - "Function Name": "canCrudEditAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 46, - "End Line": 52 - }, - { - "Function Name": "canCrudAccountDeletePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 54, - "End Line": 60 - }, - { - "Function Name": "canCrudDestroyAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 62, - "End Line": 68 - }, - { - "Function Name": "getFLSofAccountNamePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 70, - "End Line": 76 - }, - { - "Function Name": "getFLSofAccountIDNegative", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Lines of Code (LOC)": 27, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 78, - "End Line": 84 + "Start Line": 25, + "End Line": 51 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 1, - "Function Parameters": 15, - "Function/Method Declarations": 15, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 4, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 35, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 16, - "Generic Type Abstractions": 12, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 47, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -421573,9 +421433,9 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 12, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 3, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -421584,11 +421444,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 141, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421605,15 +421465,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, - "Design Camel Case": 4, - "Design Snake Case": 4, + "Core Var Decl": 5, + "Design Camel Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 15, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421623,7 +421483,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, + "Commented-Out Executable Logic": 2, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -421644,22 +421504,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/IterationRecipes_Tests.cls": { + "m4/curl/m4/xc-am-iface.m4": { "1. Artifact Identity": { - "Filename": "IterationRecipes_Tests.cls", - "Path": "xml/apex/IterationRecipes_Tests.cls", - "Language": "Apex", + "Filename": "xc-am-iface.m4", + "Path": "m4/curl/m4/xc-am-iface.m4", + "Language": "M4", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cls)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2668.07, - "Y": 94.78, - "Z": 3866.55 + "X": 6791.74, + "Y": 23.44, + "Z": -1054.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421668,22 +421528,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 74, - "Coding LOC": 59, - "Documentation LOC": 7, - "Structural Magnitude": 9.98, - "Control Flow Ratio": "42.9%", + "Total LOC": 86, + "Coding LOC": 19, + "Documentation LOC": 59, + "Structural Magnitude": 4.78, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.136 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.28%", + "Cognitive Load Exposure": "12.48%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.1%", - "Testing Exposure": "2.32%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -421691,67 +421551,57 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.7%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "testIterableApiClientRecipeNegativeWhenRecordPageRequestFails", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 46, - "End Line": 72 - }, - { - "Function Name": "testIterableApiClientRecipePositive", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 26, + "Function Name": "_XC_AUTOMAKE_BODY", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 17, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 44 + "Start Line": 41, + "End Line": 57 }, { - "Function Name": "testIterateOnAccountListPositive", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, + "Function Name": "XC_AUTOMAKE", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 17 + "Start Line": 73, + "End Line": 85 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 4, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 3, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 2, - "Unit Test Assertions": 14, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 4, - "Generic Type Abstractions": 8, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 13, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -421761,7 +421611,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 10, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -421772,11 +421622,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 3, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 2, + "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 56, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421793,15 +421643,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, - "Design Camel Case": 3, - "Design Snake Case": 3, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421832,22 +421682,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/ListSortingRecipes_Tests.cls": { + "m4/curl/m4/zz40-xc-ovr.m4": { "1. Artifact Identity": { - "Filename": "ListSortingRecipes_Tests.cls", - "Path": "xml/apex/ListSortingRecipes_Tests.cls", - "Language": "Apex", + "Filename": "zz40-xc-ovr.m4", + "Path": "m4/curl/m4/zz40-xc-ovr.m4", + "Language": "M4", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cls)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2044.06, - "Y": 231.79, - "Z": 4252.05 + "X": 6523.21, + "Y": -92.58, + "Z": -1346.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421856,125 +421706,275 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 150, - "Coding LOC": 142, - "Documentation LOC": 3, - "Structural Magnitude": 23.44, - "Control Flow Ratio": "14.3%", + "Total LOC": 668, + "Coding LOC": 338, + "Documentation LOC": 253, + "Structural Magnitude": 45.36, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.3 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.99%", - "Error & Exception Exposure": "53.94%", - "Tech Debt Exposure": "76.8%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "13.77%", + "Testing Exposure": "2.37%", + "API Exposure": "0.71%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "46.8%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.34%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "testASCComparatorException", + "Function Name": "XC_CONFIGURE_PREAMBLE", "Structural Impact": 4.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, + "Lines of Code (LOC)": 54, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 473, + "End Line": 526 + }, + { + "Function Name": "XC_CHECK_PATH_SEPARATOR", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 56, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 612, + "End Line": 667 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_ECHO", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 95, - "End Line": 116 + "Control Flow Ratio": "0.0%", + "Start Line": 91, + "End Line": 110 }, { - "Function Name": "testSortAccountsByShippingCountry", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 29, + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_TEST", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 63 + "Start Line": 120, + "End Line": 138 }, { - "Function Name": "testSortAccountsByShippingCountryInDescending", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 29, + "Function Name": "_XC_CFG_PRE_BASIC_CHK_VAR_PATH", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 65, - "End Line": 93 + "Start Line": 148, + "End Line": 166 }, { - "Function Name": "testSortAccountsByNumberOfEmployees", + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_EXPR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 176, + "End Line": 194 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_SED", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 208, + "End Line": 227 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_GREP", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 241, + "End Line": 260 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_TR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 270, + "End Line": 289 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_WC", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 299, + "End Line": 318 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_CAT", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 328, + "End Line": 351 + }, + { + "Function Name": "_XC_CFG_PRE_CHECK_PATH_SEPARATOR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 53, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 369, + "End Line": 421 + }, + { + "Function Name": "_XC_CFG_PRE_POSTLUDE", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 428, + "End Line": 443 + }, + { + "Function Name": "_AS_PATH_SEPARATOR_PREPARE", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 545, + "End Line": 549 + }, + { + "Function Name": "_AC_INIT_PREPARE_FS_SEPARATORS", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 559, + "End Line": 564 + }, + { + "Function Name": "_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 574, + "End Line": 579 + }, + { + "Function Name": "_XC_CFG_PRE_PREAMBLE", "Structural Impact": 1.5, - "Lines of Code (LOC)": 31, + "Lines of Code (LOC)": 40, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 118, - "End Line": 148 + "Start Line": 42, + "End Line": 81 + }, + { + "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MAJOR", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 34 + }, + { + "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MINOR", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 12, - "Function Parameters": 4, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 37, + "Function Parameters": 51, + "Function/Method Declarations": 19, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 4, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 12, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 2, - "Unit Test Assertions": 16, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 5, - "Generic Type Abstractions": 14, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 9, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Dependency Injection Constructs": 37, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 16, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 4, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 4, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 10, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 14, + "Private / Encapsulated Scopes": 2, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 139, + "Structural Space Indentations": 92, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421991,15 +421991,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 29, + "Core Var Decl": 50, "Design Camel Case": 0, - "Design Snake Case": 7, - "Design Pascal Case": 12, + "Design Snake Case": 37, + "Design Pascal Case": 0, "Design Upper Case": 10, - "Design Short Vars": 6, - "Design Long Vars": 0, + "Design Short Vars": 0, + "Design Long Vars": 3, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -436450,9 +436450,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 7046.12, + "X": 7045.59, "Y": -96.74, - "Z": -1113.23 + "Z": -1113.15 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -436607,9 +436607,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 6913.58, + "X": 6913.05, "Y": -88.78, - "Z": -903.21 + "Z": -903.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", diff --git a/tests/golden_master_zero_dep_audit.json b/tests/golden_master_zero_dep_audit.json index 4f8594be8..ba80763b3 100644 --- a/tests/golden_master_zero_dep_audit.json +++ b/tests/golden_master_zero_dep_audit.json @@ -12,8 +12,8 @@ }, "Target Root Name": "data", "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", - "Analysis ISO Timestamp": "2026-08-23T22:36:45.480077+00:00", - "Total Scan Duration": "38.05 seconds" + "Analysis ISO Timestamp": "2026-08-24T02:12:24.791400+00:00", + "Total Scan Duration": "35.31 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", @@ -199,7 +199,7 @@ "avg_cognitive_load": 24.695, "avg_safety_score": 38.656, "avg_tech_debt": 25.011, - "avg_documentation": 21.56 + "avg_documentation": 21.558 }, "composition": { "xml": { @@ -280,7 +280,7 @@ "m4": { "files": 8, "loc": 13321, - "impact": 669.62 + "impact": 614.52 }, "python": { "files": 268, @@ -1515,7 +1515,7 @@ }, "m4/gnucobol": { "file_count": 2, - "total_mass": 192.98, + "total_mass": 138.58, "avg_exposures": { "cognitive_load": 2.61, "safety_score": 0.0, @@ -1528,7 +1528,7 @@ "spec_match": 50.0, "stability": 25.0, "churn": 0.0, - "documentation": 14.78, + "documentation": 13.92, "secrets_risk": 0.0 } }, @@ -1933,7 +1933,7 @@ }, "m4/curl/m4": { "file_count": 5, - "total_mass": 96.06, + "total_mass": 95.36, "avg_exposures": { "cognitive_load": 4.78, "safety_score": 0.0, @@ -413176,366 +413176,6 @@ } } }, - "m4/gnucobol": { - "Directory Group Magnitude": 192.98, - "File Count": 2, - "Ecosystem Fingerprint (Archetypes)": { - "Static: Literature & Documentation": "50.0%", - "Unclassified": "50.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "2.61%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "13.66%", - "Testing Exposure": "1.15%", - "API Exposure": "5.51%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "2.44%", - "Specification Exposure": "50.0%", - "Instability Exposure": "25.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.78%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "m4/gnucobol/COPYING": { - "1. Artifact Identity": { - "Filename": "COPYING", - "Path": "m4/gnucobol/COPYING", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "plaintext", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (COPYING)" - }, - "2. Topological Coordinates": { - "X": -4837.46, - "Y": -126.2, - "Z": 4397.19 - }, - "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "N/A", - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 675, - "Coding LOC": 0, - "Documentation LOC": 553, - "Structural Magnitude": 13.5, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" - }, - "5. Function Analysis": [], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "m4/gnucobol/configure.ac": { - "1. Artifact Identity": { - "Filename": "configure.ac", - "Path": "m4/gnucobol/configure.ac", - "Language": "M4", - "Architect": "Unknown Architect", - "Indentation Style": "Mixed (37.6% Spaces / 62.4% Tabs)", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "plaintext", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (configure.ac)" - }, - "2. Topological Coordinates": { - "X": -4585.55, - "Y": -118.16, - "Z": 3970.8 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 2922, - "Coding LOC": 2144, - "Documentation LOC": 517, - "Structural Magnitude": 179.48, - "Control Flow Ratio": "100.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.026 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "27.32%", - "Testing Exposure": "2.31%", - "API Exposure": "11.01%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "4.88%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.55%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "AC_PROG_F77", - "Structural Impact": 55.5, - "Lines of Code (LOC)": 1532, - "Control Flow Branches": 36, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 658, - "End Line": 2189 - }, - { - "Function Name": "AC_PROG_CXX", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 657, - "End Line": 657 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 50, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 42, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 80, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 10, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 12, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 126, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 240, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 70, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 814, - "Structural Space Indentations": 491, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 362, - "Design Camel Case": 0, - "Design Snake Case": 85, - "Design Pascal Case": 0, - "Design Upper Case": 273, - "Design Short Vars": 8, - "Design Long Vars": 4, - "Duplicate Logic": 0, - "Orphaned Logic": 2, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, "typescript/fp-ts": { "Directory Group Magnitude": 160.92, "File Count": 5, @@ -417508,6 +417148,366 @@ } } }, + "m4/gnucobol": { + "Directory Group Magnitude": 138.58, + "File Count": 2, + "Ecosystem Fingerprint (Archetypes)": { + "Static: Literature & Documentation": "50.0%", + "Unclassified": "50.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "2.61%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "13.66%", + "Testing Exposure": "1.15%", + "API Exposure": "5.51%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "2.44%", + "Specification Exposure": "50.0%", + "Instability Exposure": "25.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "13.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "m4/gnucobol/COPYING": { + "1. Artifact Identity": { + "Filename": "COPYING", + "Path": "m4/gnucobol/COPYING", + "Language": "Plaintext", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "plaintext", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (COPYING)" + }, + "2. Topological Coordinates": { + "X": -4831.7, + "Y": -126.34, + "Z": 4391.98 + }, + "3. Architectural Profile": { + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 675, + "Coding LOC": 0, + "Documentation LOC": 553, + "Structural Magnitude": 13.5, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + }, + "5. Function Analysis": [], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "m4/gnucobol/configure.ac": { + "1. Artifact Identity": { + "Filename": "configure.ac", + "Path": "m4/gnucobol/configure.ac", + "Language": "M4", + "Architect": "Unknown Architect", + "Indentation Style": "Mixed (37.6% Spaces / 62.4% Tabs)", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "plaintext", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (configure.ac)" + }, + "2. Topological Coordinates": { + "X": -4582.66, + "Y": -118.16, + "Z": 3968.2 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 2922, + "Coding LOC": 2144, + "Documentation LOC": 517, + "Structural Magnitude": 125.08, + "Control Flow Ratio": "100.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.026 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.21%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "27.32%", + "Testing Exposure": "2.3%", + "API Exposure": "11.01%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "4.88%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "27.84%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "AC_PROG_CXX", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 657, + "End Line": 657 + }, + { + "Function Name": "AC_PROG_F77", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 658, + "End Line": 658 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 50, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 42, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 6, + "Exposed API / Public Exports": 80, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 10, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 1, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 12, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 126, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 240, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 70, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 814, + "Structural Space Indentations": 491, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 362, + "Design Camel Case": 0, + "Design Snake Case": 85, + "Design Pascal Case": 0, + "Design Upper Case": 273, + "Design Short Vars": 8, + "Design Long Vars": 4, + "Duplicate Logic": 0, + "Orphaned Logic": 2, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + } + } + }, "assembly/hellosilicon": { "Directory Group Magnitude": 134.16, "File Count": 4, @@ -419659,44 +419659,44 @@ } } }, - "m4/curl/m4": { - "Directory Group Magnitude": 96.06, - "File Count": 5, + "xml/apex": { + "Directory Group Magnitude": 95.76, + "File Count": 6, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "4.78%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "75.12%", - "Testing Exposure": "2.36%", - "API Exposure": "1.74%", + "Cognitive Load Exposure": "7.1%", + "Error & Exception Exposure": "17.37%", + "Tech Debt Exposure": "45.98%", + "Testing Exposure": "1.23%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "12.32%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "53.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.01%", + "Documentation Exposure": "13.63%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "m4/curl/m4/curl-confopts.m4": { + "xml/apex/CanTheUser_Tests.cls-meta.xml": { "1. Artifact Identity": { - "Filename": "curl-confopts.m4", - "Path": "m4/curl/m4/curl-confopts.m4", - "Language": "M4", + "Filename": "CanTheUser_Tests.cls-meta.xml", + "Path": "xml/apex/CanTheUser_Tests.cls-meta.xml", + "Language": "Xml", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6294.88, - "Y": -77.67, - "Z": -1004.48 + "X": 2365.65, + "Y": 112.82, + "Z": 3759.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -419705,186 +419705,45 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 577, - "Coding LOC": 375, - "Documentation LOC": 163, - "Structural Magnitude": 38.4, + "Total LOC": 6, + "Coding LOC": 0, + "Documentation LOC": 5, + "Structural Magnitude": 10.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "62.25%", - "Testing Exposure": "2.35%", - "API Exposure": "3.46%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.15%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "6.05%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CURL_CHECK_OPTION_OPTIMIZE", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 48, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 142, - "End Line": 189 - }, - { - "Function Name": "CURL_CHECK_OPTION_WARNINGS", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 270, - "End Line": 296 - }, - { - "Function Name": "CURL_CHECK_OPTION_ARES", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 101 - }, - { - "Function Name": "CURL_CHECK_OPTION_DEBUG", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 110, - "End Line": 134 - }, - { - "Function Name": "CURL_CHECK_OPTION_SYMBOL_HIDING", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 198, - "End Line": 229 - }, - { - "Function Name": "CURL_CHECK_OPTION_RT", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 238, - "End Line": 262 - }, - { - "Function Name": "CURL_CHECK_OPTION_WERROR", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 304, - "End Line": 327 - }, - { - "Function Name": "CURL_CHECK_NONBLOCKING_SOCKET", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 334, - "End Line": 357 - }, - { - "Function Name": "CURL_CHECK_OPTION_THREADED_RESOLVER", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 67 - }, - { - "Function Name": "CURL_CONFIGURE_SYMBOL_HIDING", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 369, - "End Line": 385 - }, - { - "Function Name": "CURL_CHECK_LIB_ARES", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 75, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 393, - "End Line": 467 - }, - { - "Function Name": "CURL_CHECK_OPTION_HTTPSRR", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 475, - "End Line": 502 - }, - { - "Function Name": "CURL_CHECK_OPTION_ECH", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 510, - "End Line": 538 - }, - { - "Function Name": "CURL_CHECK_OPTION_SSLS_EXPORT", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 546, - "End Line": 576 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 9, - "Function/Method Declarations": 14, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -419905,15 +419764,15 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 5, - "Preprocessor Macros": 2, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 47, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -419923,7 +419782,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 324, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -419940,15 +419799,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 108, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 57, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 35, + "Design Upper Case": 0, "Design Short Vars": 0, - "Design Long Vars": 1, + "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -419958,7 +419817,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 2, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -419979,22 +419838,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/curl-mbedtls.m4": { + "xml/apex/IterationRecipes_Tests.cls-meta.xml": { "1. Artifact Identity": { - "Filename": "curl-mbedtls.m4", - "Path": "m4/curl/m4/curl-mbedtls.m4", - "Language": "M4", + "Filename": "IterationRecipes_Tests.cls-meta.xml", + "Path": "xml/apex/IterationRecipes_Tests.cls-meta.xml", + "Language": "Xml", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6581.06, - "Y": -42.94, - "Z": -1681.86 + "X": 2583.66, + "Y": 160.61, + "Z": 4415.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420003,56 +419862,45 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 123, - "Coding LOC": 70, - "Documentation LOC": 35, - "Structural Magnitude": 4.9, + "Total LOC": 6, + "Coding LOC": 0, + "Documentation LOC": 5, + "Structural Magnitude": 10.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.61%", - "Testing Exposure": "2.3%", - "API Exposure": "4.56%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.15%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "31.65%", + "Documentation Exposure": "6.05%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CURL_WITH_MBEDTLS", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 95, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 122 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 3, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -420069,16 +419917,16 @@ "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 2, + "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -420091,7 +419939,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 66, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420108,15 +419956,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 30, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 15, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 15, + "Design Upper Case": 0, "Design Short Vars": 0, - "Design Long Vars": 2, + "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -420126,7 +419974,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 2, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -420147,22 +419995,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/curl-sysconfig.m4": { + "xml/apex/ListSortingRecipes_Tests.cls-meta.xml": { "1. Artifact Identity": { - "Filename": "curl-sysconfig.m4", - "Path": "m4/curl/m4/curl-sysconfig.m4", - "Language": "M4", + "Filename": "ListSortingRecipes_Tests.cls-meta.xml", + "Path": "xml/apex/ListSortingRecipes_Tests.cls-meta.xml", + "Language": "Xml", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6053.85, - "Y": -172.48, - "Z": -1560.34 + "X": 1884.76, + "Y": 252.1, + "Z": 4095.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420171,50 +420019,39 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 52, - "Coding LOC": 21, - "Documentation LOC": 29, - "Structural Magnitude": 1.82, + "Total LOC": 6, + "Coding LOC": 0, + "Documentation LOC": 5, + "Structural Magnitude": 10.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.238 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.43%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.34%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.66%", + "Documentation Exposure": "6.05%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CURL_DARWIN_SYSTEMCONFIGURATION", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 33 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -420246,7 +420083,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 3, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -420259,7 +420096,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420276,15 +420113,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 5, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -420294,7 +420131,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 2, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -420315,22 +420152,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/xc-am-iface.m4": { + "xml/apex/CanTheUser_Tests.cls": { "1. Artifact Identity": { - "Filename": "xc-am-iface.m4", - "Path": "m4/curl/m4/xc-am-iface.m4", - "Language": "M4", + "Filename": "CanTheUser_Tests.cls", + "Path": "xml/apex/CanTheUser_Tests.cls", + "Language": "Apex", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6792.0, - "Y": 23.46, - "Z": -1054.09 + "X": 2286.17, + "Y": 135.41, + "Z": 4092.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420339,80 +420176,210 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 86, - "Coding LOC": 19, - "Documentation LOC": 59, - "Structural Magnitude": 4.78, - "Control Flow Ratio": "0.0%", + "Total LOC": 167, + "Coding LOC": 144, + "Documentation LOC": 2, + "Structural Magnitude": 30.78, + "Control Flow Ratio": "66.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.263 + "Raw Cognitive Density": 0.149 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.48%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.46%", + "Cognitive Load Exposure": "8.3%", + "Error & Exception Exposure": "50.27%", + "Tech Debt Exposure": "99.98%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "27.11%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "19.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "_XC_AUTOMAKE_BODY", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 17, + "Function Name": "getBulkFLSAccessibleWithAccountPositive", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 86, + "End Line": 99 + }, + { + "Function Name": "getBulkFLSUpdatableWithAccountPositive", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 120, + "End Line": 133 + }, + { + "Function Name": "getBulkFLSAccessibleWithAccountPositiveWithNegativeResults", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 18, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 57 + "Start Line": 101, + "End Line": 118 }, { - "Function Name": "XC_AUTOMAKE", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, + "Function Name": "getBulkFLSUpdatableWithAccountPositiveWithNegativeResults", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 18, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 73, - "End Line": 85 + "Start Line": 135, + "End Line": 152 + }, + { + "Function Name": "memoizedFLSMDCcomparesAccesibleToUpdatable", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 165 + }, + { + "Function Name": "canCrudAccountCreatePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 6, + "End Line": 12 + }, + { + "Function Name": "canCrudCreateAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 20 + }, + { + "Function Name": "canCrudAccountReadPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 22, + "End Line": 28 + }, + { + "Function Name": "canCrudReadAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 30, + "End Line": 36 + }, + { + "Function Name": "canCrudAccountUpdatePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 44 + }, + { + "Function Name": "canCrudEditAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 46, + "End Line": 52 + }, + { + "Function Name": "canCrudAccountDeletePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 54, + "End Line": 60 + }, + { + "Function Name": "canCrudDestroyAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 62, + "End Line": 68 + }, + { + "Function Name": "getFLSofAccountNamePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 70, + "End Line": 76 + }, + { + "Function Name": "getFLSofAccountIDNegative", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 78, + "End Line": 84 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 3, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 1, + "Function Parameters": 15, + "Function/Method Declarations": 15, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 4, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 35, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 16, + "Generic Type Abstractions": 12, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 47, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -420422,7 +420389,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 12, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -420433,11 +420400,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1, + "Structural Space Indentations": 141, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420454,15 +420421,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 8, + "Design Camel Case": 4, + "Design Snake Case": 4, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 15, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -420493,22 +420460,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/zz40-xc-ovr.m4": { + "xml/apex/IterationRecipes_Tests.cls": { "1. Artifact Identity": { - "Filename": "zz40-xc-ovr.m4", - "Path": "m4/curl/m4/zz40-xc-ovr.m4", - "Language": "M4", + "Filename": "IterationRecipes_Tests.cls", + "Path": "xml/apex/IterationRecipes_Tests.cls", + "Language": "Apex", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6523.37, - "Y": -92.58, - "Z": -1346.27 + "X": 2668.07, + "Y": 94.78, + "Z": 3866.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420517,275 +420484,115 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 668, - "Coding LOC": 338, - "Documentation LOC": 253, - "Structural Magnitude": 46.16, - "Control Flow Ratio": "0.0%", + "Total LOC": 74, + "Coding LOC": 59, + "Documentation LOC": 7, + "Structural Magnitude": 9.98, + "Control Flow Ratio": "42.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.136 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "6.28%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "13.77%", - "Testing Exposure": "2.37%", - "API Exposure": "0.71%", + "Tech Debt Exposure": "99.1%", + "Testing Exposure": "2.32%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "25.7%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "XC_CONFIGURE_PREAMBLE", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 72, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 473, - "End Line": 544 - }, - { - "Function Name": "XC_CHECK_PATH_SEPARATOR", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 56, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 612, - "End Line": 667 - }, - { - "Function Name": "_AC_INIT_PREPARE_FS_SEPARATORS", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 559, - "End Line": 573 - }, - { - "Function Name": "_AS_PATH_SEPARATOR_PREPARE", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 545, - "End Line": 558 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_CAT", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 0, + "Function Name": "testIterableApiClientRecipeNegativeWhenRecordPageRequestFails", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 3, "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 328, - "End Line": 348 + "Control Flow Ratio": "60.0%", + "Start Line": 46, + "End Line": 72 }, { - "Function Name": "_XC_CFG_PRE_CHECK_PATH_SEPARATOR", + "Function Name": "testIterableApiClientRecipePositive", "Structural Impact": 2.0, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 369, - "End Line": 421 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_ECHO", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 91, - "End Line": 107 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_SED", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 208, - "End Line": 224 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_GREP", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 241, - "End Line": 257 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_TR", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 270, - "End Line": 286 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_WC", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 299, - "End Line": 315 - }, - { - "Function Name": "AC_DEFUN", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 135 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_VAR_PATH", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 148, - "End Line": 163 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_EXPR", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 176, - "End Line": 191 - }, - { - "Function Name": "_XC_CFG_PRE_POSTLUDE", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, + "Lines of Code (LOC)": 26, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 428, - "End Line": 443 - }, - { - "Function Name": "_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 574, - "End Line": 580 + "Start Line": 19, + "End Line": 44 }, { - "Function Name": "_XC_CFG_PRE_PREAMBLE", + "Function Name": "testIterateOnAccountListPositive", "Structural Impact": 1.5, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 42, - "End Line": 81 - }, - { - "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MAJOR", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 34 - }, - { - "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MINOR", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 + "Start Line": 6, + "End Line": 17 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 37, - "Function Parameters": 51, - "Function/Method Declarations": 19, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 4, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 4, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 2, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Structured Documentation Blocks": 2, + "Unit Test Assertions": 14, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 4, + "Generic Type Abstractions": 8, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 13, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 37, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 10, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 4, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 4, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 2, + "Private / Encapsulated Scopes": 3, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, + "Bypassed / Skipped Tests": 2, "Structural Tab Indentations": 0, - "Structural Space Indentations": 92, + "Structural Space Indentations": 56, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420802,15 +420609,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 50, - "Design Camel Case": 0, - "Design Snake Case": 37, + "Core Var Decl": 6, + "Design Camel Case": 3, + "Design Snake Case": 3, "Design Pascal Case": 0, - "Design Upper Case": 10, + "Design Upper Case": 0, "Design Short Vars": 0, - "Design Long Vars": 3, + "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -420840,47 +420647,23 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "xml/apex": { - "Directory Group Magnitude": 95.76, - "File Count": 6, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "7.1%", - "Error & Exception Exposure": "17.37%", - "Tech Debt Exposure": "45.98%", - "Testing Exposure": "1.23%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "12.32%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.63%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "xml/apex/CanTheUser_Tests.cls-meta.xml": { + }, + "xml/apex/ListSortingRecipes_Tests.cls": { "1. Artifact Identity": { - "Filename": "CanTheUser_Tests.cls-meta.xml", - "Path": "xml/apex/CanTheUser_Tests.cls-meta.xml", - "Language": "Xml", + "Filename": "ListSortingRecipes_Tests.cls", + "Path": "xml/apex/ListSortingRecipes_Tests.cls", + "Language": "Apex", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .xml)" + "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 2365.65, - "Y": 112.82, - "Z": 3759.41 + "X": 2044.06, + "Y": 231.79, + "Z": 4252.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420889,59 +420672,100 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 6, - "Coding LOC": 0, - "Documentation LOC": 5, - "Structural Magnitude": 10.52, - "Control Flow Ratio": "0.0%", + "Total LOC": 150, + "Coding LOC": 142, + "Documentation LOC": 3, + "Structural Magnitude": 23.44, + "Control Flow Ratio": "14.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.0 + "Raw Cognitive Density": 0.3 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.15%", + "Cognitive Load Exposure": "12.99%", + "Error & Exception Exposure": "53.94%", + "Tech Debt Exposure": "76.8%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "46.8%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "6.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.05%", + "Documentation Exposure": "18.34%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "testASCComparatorException", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 95, + "End Line": 116 + }, + { + "Function Name": "testSortAccountsByShippingCountry", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 63 + }, + { + "Function Name": "testSortAccountsByShippingCountryInDescending", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 65, + "End Line": 93 + }, + { + "Function Name": "testSortAccountsByNumberOfEmployees", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 118, + "End Line": 148 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 12, + "Function Parameters": 4, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 12, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Structured Documentation Blocks": 2, + "Unit Test Assertions": 16, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 5, + "Generic Type Abstractions": 14, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 9, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -420951,7 +420775,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 16, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -420960,13 +420784,13 @@ "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 10, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 14, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 139, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420983,15 +420807,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 29, "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Snake Case": 7, + "Design Pascal Case": 12, + "Design Upper Case": 10, + "Design Short Vars": 6, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421021,23 +420845,47 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "xml/apex/IterationRecipes_Tests.cls-meta.xml": { + } + } + }, + "m4/curl/m4": { + "Directory Group Magnitude": 95.36, + "File Count": 5, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "4.78%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "75.12%", + "Testing Exposure": "2.36%", + "API Exposure": "1.74%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "19.01%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "m4/curl/m4/curl-confopts.m4": { "1. Artifact Identity": { - "Filename": "IterationRecipes_Tests.cls-meta.xml", - "Path": "xml/apex/IterationRecipes_Tests.cls-meta.xml", - "Language": "Xml", + "Filename": "curl-confopts.m4", + "Path": "m4/curl/m4/curl-confopts.m4", + "Language": "M4", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .xml)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2583.66, - "Y": 160.61, - "Z": 4415.92 + "X": 6294.83, + "Y": -77.64, + "Z": -1004.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421046,45 +420894,186 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 6, - "Coding LOC": 0, - "Documentation LOC": 5, - "Structural Magnitude": 10.52, + "Total LOC": 577, + "Coding LOC": 375, + "Documentation LOC": 163, + "Structural Magnitude": 38.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.0 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.15%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "62.25%", + "Testing Exposure": "2.35%", + "API Exposure": "3.46%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "6.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.05%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "CURL_CHECK_OPTION_OPTIMIZE", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 48, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 142, + "End Line": 189 + }, + { + "Function Name": "CURL_CHECK_OPTION_WARNINGS", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 270, + "End Line": 296 + }, + { + "Function Name": "CURL_CHECK_OPTION_ARES", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 101 + }, + { + "Function Name": "CURL_CHECK_OPTION_DEBUG", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 110, + "End Line": 134 + }, + { + "Function Name": "CURL_CHECK_OPTION_SYMBOL_HIDING", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 198, + "End Line": 229 + }, + { + "Function Name": "CURL_CHECK_OPTION_RT", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 238, + "End Line": 262 + }, + { + "Function Name": "CURL_CHECK_OPTION_WERROR", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 304, + "End Line": 327 + }, + { + "Function Name": "CURL_CHECK_NONBLOCKING_SOCKET", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 334, + "End Line": 357 + }, + { + "Function Name": "CURL_CHECK_OPTION_THREADED_RESOLVER", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 67 + }, + { + "Function Name": "CURL_CONFIGURE_SYMBOL_HIDING", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 369, + "End Line": 385 + }, + { + "Function Name": "CURL_CHECK_LIB_ARES", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 75, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 393, + "End Line": 467 + }, + { + "Function Name": "CURL_CHECK_OPTION_HTTPSRR", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 475, + "End Line": 502 + }, + { + "Function Name": "CURL_CHECK_OPTION_ECH", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 510, + "End Line": 537 + }, + { + "Function Name": "CURL_CHECK_OPTION_SSLS_EXPORT", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 546, + "End Line": 575 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, + "Sequential Logic Declarations": 5, + "Function Parameters": 9, + "Function/Method Declarations": 14, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -421105,15 +421094,15 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Dependency Injection Constructs": 5, + "Preprocessor Macros": 2, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 47, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -421123,7 +421112,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 324, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421140,15 +421129,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 108, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 57, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 35, "Design Short Vars": 0, - "Design Long Vars": 0, + "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421158,7 +421147,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, + "Commented-Out Executable Logic": 2, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -421179,22 +421168,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/ListSortingRecipes_Tests.cls-meta.xml": { + "m4/curl/m4/curl-mbedtls.m4": { "1. Artifact Identity": { - "Filename": "ListSortingRecipes_Tests.cls-meta.xml", - "Path": "xml/apex/ListSortingRecipes_Tests.cls-meta.xml", - "Language": "Xml", + "Filename": "curl-mbedtls.m4", + "Path": "m4/curl/m4/curl-mbedtls.m4", + "Language": "M4", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .xml)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 1884.76, - "Y": 252.1, - "Z": 4095.81 + "X": 6580.88, + "Y": -42.95, + "Z": -1681.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421203,45 +421192,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 6, - "Coding LOC": 0, - "Documentation LOC": 5, - "Structural Magnitude": 10.52, + "Total LOC": 123, + "Coding LOC": 70, + "Documentation LOC": 35, + "Structural Magnitude": 4.9, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.0 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.15%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "99.61%", + "Testing Exposure": "2.3%", + "API Exposure": "4.56%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "6.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.05%", + "Documentation Exposure": "31.65%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "CURL_WITH_MBEDTLS", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 95, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 122 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -421258,16 +421258,16 @@ "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 2, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -421280,7 +421280,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 66, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421297,15 +421297,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 30, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 15, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 15, "Design Short Vars": 0, - "Design Long Vars": 0, + "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421315,7 +421315,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, + "Commented-Out Executable Logic": 2, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -421336,22 +421336,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/CanTheUser_Tests.cls": { + "m4/curl/m4/curl-sysconfig.m4": { "1. Artifact Identity": { - "Filename": "CanTheUser_Tests.cls", - "Path": "xml/apex/CanTheUser_Tests.cls", - "Language": "Apex", + "Filename": "curl-sysconfig.m4", + "Path": "m4/curl/m4/curl-sysconfig.m4", + "Language": "M4", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cls)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2286.17, - "Y": 135.41, - "Z": 4092.93 + "X": 6053.8, + "Y": -172.45, + "Z": -1560.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421360,210 +421360,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 167, - "Coding LOC": 144, - "Documentation LOC": 2, - "Structural Magnitude": 30.78, - "Control Flow Ratio": "66.7%", + "Total LOC": 52, + "Coding LOC": 21, + "Documentation LOC": 29, + "Structural Magnitude": 1.92, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.149 + "Raw Cognitive Density": 0.238 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.3%", - "Error & Exception Exposure": "50.27%", - "Tech Debt Exposure": "99.98%", - "Testing Exposure": "2.33%", + "Cognitive Load Exposure": "11.43%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "99.97%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "27.11%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.55%", + "Documentation Exposure": "27.66%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "getBulkFLSAccessibleWithAccountPositive", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 86, - "End Line": 99 - }, - { - "Function Name": "getBulkFLSUpdatableWithAccountPositive", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 120, - "End Line": 133 - }, - { - "Function Name": "getBulkFLSAccessibleWithAccountPositiveWithNegativeResults", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 101, - "End Line": 118 - }, - { - "Function Name": "getBulkFLSUpdatableWithAccountPositiveWithNegativeResults", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 135, - "End Line": 152 - }, - { - "Function Name": "memoizedFLSMDCcomparesAccesibleToUpdatable", + "Function Name": "CURL_DARWIN_SYSTEMCONFIGURATION", "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 165 - }, - { - "Function Name": "canCrudAccountCreatePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 12 - }, - { - "Function Name": "canCrudCreateAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 20 - }, - { - "Function Name": "canCrudAccountReadPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 22, - "End Line": 28 - }, - { - "Function Name": "canCrudReadAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 36 - }, - { - "Function Name": "canCrudAccountUpdatePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 44 - }, - { - "Function Name": "canCrudEditAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 46, - "End Line": 52 - }, - { - "Function Name": "canCrudAccountDeletePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 54, - "End Line": 60 - }, - { - "Function Name": "canCrudDestroyAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 62, - "End Line": 68 - }, - { - "Function Name": "getFLSofAccountNamePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 70, - "End Line": 76 - }, - { - "Function Name": "getFLSofAccountIDNegative", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Lines of Code (LOC)": 27, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 78, - "End Line": 84 + "Start Line": 25, + "End Line": 51 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 1, - "Function Parameters": 15, - "Function/Method Declarations": 15, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 4, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 35, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 16, - "Generic Type Abstractions": 12, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 47, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -421573,9 +421433,9 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 12, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 3, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -421584,11 +421444,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 141, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421605,15 +421465,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, - "Design Camel Case": 4, - "Design Snake Case": 4, + "Core Var Decl": 5, + "Design Camel Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 15, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421623,7 +421483,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, + "Commented-Out Executable Logic": 2, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -421644,22 +421504,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/IterationRecipes_Tests.cls": { + "m4/curl/m4/xc-am-iface.m4": { "1. Artifact Identity": { - "Filename": "IterationRecipes_Tests.cls", - "Path": "xml/apex/IterationRecipes_Tests.cls", - "Language": "Apex", + "Filename": "xc-am-iface.m4", + "Path": "m4/curl/m4/xc-am-iface.m4", + "Language": "M4", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cls)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2668.07, - "Y": 94.78, - "Z": 3866.55 + "X": 6791.74, + "Y": 23.44, + "Z": -1054.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421668,22 +421528,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 74, - "Coding LOC": 59, - "Documentation LOC": 7, - "Structural Magnitude": 9.98, - "Control Flow Ratio": "42.9%", + "Total LOC": 86, + "Coding LOC": 19, + "Documentation LOC": 59, + "Structural Magnitude": 4.78, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.136 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.28%", + "Cognitive Load Exposure": "12.48%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.1%", - "Testing Exposure": "2.32%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -421691,67 +421551,57 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.7%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "testIterableApiClientRecipeNegativeWhenRecordPageRequestFails", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 46, - "End Line": 72 - }, - { - "Function Name": "testIterableApiClientRecipePositive", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 26, + "Function Name": "_XC_AUTOMAKE_BODY", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 17, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 44 + "Start Line": 41, + "End Line": 57 }, { - "Function Name": "testIterateOnAccountListPositive", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, + "Function Name": "XC_AUTOMAKE", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 17 + "Start Line": 73, + "End Line": 85 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 4, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 3, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 2, - "Unit Test Assertions": 14, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 4, - "Generic Type Abstractions": 8, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 13, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -421761,7 +421611,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 10, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -421772,11 +421622,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 3, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 2, + "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 56, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421793,15 +421643,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, - "Design Camel Case": 3, - "Design Snake Case": 3, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421832,22 +421682,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/ListSortingRecipes_Tests.cls": { + "m4/curl/m4/zz40-xc-ovr.m4": { "1. Artifact Identity": { - "Filename": "ListSortingRecipes_Tests.cls", - "Path": "xml/apex/ListSortingRecipes_Tests.cls", - "Language": "Apex", + "Filename": "zz40-xc-ovr.m4", + "Path": "m4/curl/m4/zz40-xc-ovr.m4", + "Language": "M4", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cls)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2044.06, - "Y": 231.79, - "Z": 4252.05 + "X": 6523.21, + "Y": -92.58, + "Z": -1346.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421856,125 +421706,275 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 150, - "Coding LOC": 142, - "Documentation LOC": 3, - "Structural Magnitude": 23.44, - "Control Flow Ratio": "14.3%", + "Total LOC": 668, + "Coding LOC": 338, + "Documentation LOC": 253, + "Structural Magnitude": 45.36, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.3 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.99%", - "Error & Exception Exposure": "53.94%", - "Tech Debt Exposure": "76.8%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "13.77%", + "Testing Exposure": "2.37%", + "API Exposure": "0.71%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "46.8%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.34%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "testASCComparatorException", + "Function Name": "XC_CONFIGURE_PREAMBLE", "Structural Impact": 4.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, + "Lines of Code (LOC)": 54, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 473, + "End Line": 526 + }, + { + "Function Name": "XC_CHECK_PATH_SEPARATOR", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 56, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 612, + "End Line": 667 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_ECHO", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 95, - "End Line": 116 + "Control Flow Ratio": "0.0%", + "Start Line": 91, + "End Line": 110 }, { - "Function Name": "testSortAccountsByShippingCountry", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 29, + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_TEST", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 63 + "Start Line": 120, + "End Line": 138 }, { - "Function Name": "testSortAccountsByShippingCountryInDescending", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 29, + "Function Name": "_XC_CFG_PRE_BASIC_CHK_VAR_PATH", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 65, - "End Line": 93 + "Start Line": 148, + "End Line": 166 }, { - "Function Name": "testSortAccountsByNumberOfEmployees", + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_EXPR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 176, + "End Line": 194 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_SED", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 208, + "End Line": 227 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_GREP", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 241, + "End Line": 260 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_TR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 270, + "End Line": 289 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_WC", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 299, + "End Line": 318 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_CAT", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 328, + "End Line": 351 + }, + { + "Function Name": "_XC_CFG_PRE_CHECK_PATH_SEPARATOR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 53, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 369, + "End Line": 421 + }, + { + "Function Name": "_XC_CFG_PRE_POSTLUDE", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 428, + "End Line": 443 + }, + { + "Function Name": "_AS_PATH_SEPARATOR_PREPARE", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 545, + "End Line": 549 + }, + { + "Function Name": "_AC_INIT_PREPARE_FS_SEPARATORS", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 559, + "End Line": 564 + }, + { + "Function Name": "_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 574, + "End Line": 579 + }, + { + "Function Name": "_XC_CFG_PRE_PREAMBLE", "Structural Impact": 1.5, - "Lines of Code (LOC)": 31, + "Lines of Code (LOC)": 40, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 118, - "End Line": 148 + "Start Line": 42, + "End Line": 81 + }, + { + "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MAJOR", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 34 + }, + { + "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MINOR", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 12, - "Function Parameters": 4, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 37, + "Function Parameters": 51, + "Function/Method Declarations": 19, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 4, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 12, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 2, - "Unit Test Assertions": 16, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 5, - "Generic Type Abstractions": 14, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 9, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Dependency Injection Constructs": 37, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 16, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 4, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 4, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 10, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 14, + "Private / Encapsulated Scopes": 2, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 139, + "Structural Space Indentations": 92, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421991,15 +421991,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 29, + "Core Var Decl": 50, "Design Camel Case": 0, - "Design Snake Case": 7, - "Design Pascal Case": 12, + "Design Snake Case": 37, + "Design Pascal Case": 0, "Design Upper Case": 10, - "Design Short Vars": 6, - "Design Long Vars": 0, + "Design Short Vars": 0, + "Design Long Vars": 3, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -436450,9 +436450,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 7046.12, + "X": 7045.59, "Y": -96.74, - "Z": -1113.23 + "Z": -1113.15 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -436607,9 +436607,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 6913.58, + "X": 6913.05, "Y": -88.78, - "Z": -903.21 + "Z": -903.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified",