mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 12:26:38 -06:00
964c8c84c1
* refactor: consolidate coercion ownership Centralize four canonical coercion helpers, migrate exact core and plugin duplicates through narrow Plugin SDK facades, and enforce declaration and plugin-normalization ownership boundaries. The sweep adds eight focused SDK exports while deleting more production and tooling code than it adds. User-visible behavior is unchanged except for safer equivalent object and UI parsing at existing boundaries. * fix: guard integer option ownership Register resolveIntegerOption with the canonical function owner and extend the declaration-guard fixture so future local duplicates fail validation. * fix: keep integer helpers on numeric facade Remove the unshipped duplicate string-coerce exports and route every affected plugin consumer through the existing number-runtime contract. * fix: point numeric coercion to number runtime Make boundary and declaration diagnostics recommend the canonical numeric facade, with failing-before coverage for both guidance paths.
143 lines
3.9 KiB
TypeScript
143 lines
3.9 KiB
TypeScript
// JSON parse helpers recover structured values from partial model output.
|
|
import { asNonArrayRecord } from "@openclaw/normalization-core/record-coerce";
|
|
import { parse as partialParse } from "partial-json";
|
|
|
|
const VALID_JSON_ESCAPES = new Set(['"', "\\", "/", "b", "f", "n", "r", "t", "u"]);
|
|
const JSON_CONTROL_ESCAPES = new Set(["b", "f", "n", "r", "t"]);
|
|
|
|
function isControlCharacter(char: string): boolean {
|
|
const codePoint = char.codePointAt(0);
|
|
return codePoint !== undefined && codePoint >= 0x00 && codePoint <= 0x1f;
|
|
}
|
|
|
|
function escapeControlCharacter(char: string): string {
|
|
switch (char) {
|
|
case "\b":
|
|
return "\\b";
|
|
case "\f":
|
|
return "\\f";
|
|
case "\n":
|
|
return "\\n";
|
|
case "\r":
|
|
return "\\r";
|
|
case "\t":
|
|
return "\\t";
|
|
default:
|
|
return `\\u${char.codePointAt(0)?.toString(16).padStart(4, "0") ?? "0000"}`;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Repairs malformed JSON string literals by:
|
|
* - escaping raw control characters inside strings
|
|
* - doubling backslashes before invalid escape characters
|
|
*/
|
|
export function repairJson(json: string): string {
|
|
let repaired = "";
|
|
let inString = false;
|
|
let stringValuePrefix = "";
|
|
|
|
for (let index = 0; index < json.length; index++) {
|
|
const char = json.charAt(index);
|
|
|
|
if (!inString) {
|
|
repaired += char;
|
|
if (char === '"') {
|
|
inString = true;
|
|
stringValuePrefix = "";
|
|
}
|
|
continue;
|
|
}
|
|
|
|
if (char === '"') {
|
|
repaired += char;
|
|
inString = false;
|
|
stringValuePrefix = "";
|
|
continue;
|
|
}
|
|
|
|
if (char === "\\") {
|
|
const nextChar = json.charAt(index + 1);
|
|
if (!nextChar) {
|
|
repaired += "\\\\";
|
|
continue;
|
|
}
|
|
|
|
if (nextChar === "u") {
|
|
const unicodeDigits = json.slice(index + 2, index + 6);
|
|
if (/^[0-9a-fA-F]{4}$/.test(unicodeDigits)) {
|
|
repaired += `\\u${unicodeDigits}`;
|
|
stringValuePrefix += `\\u${unicodeDigits}`;
|
|
index += 5;
|
|
continue;
|
|
}
|
|
// A \u not followed by four hex digits is an invalid escape: double the
|
|
// backslash like the other invalid escapes below. Falling through would
|
|
// hit the valid-escape branch (VALID_JSON_ESCAPES contains "u") and
|
|
// re-emit the broken \u, leaving the JSON unparseable.
|
|
repaired += "\\\\";
|
|
stringValuePrefix += "\\";
|
|
continue;
|
|
}
|
|
|
|
if (JSON_CONTROL_ESCAPES.has(nextChar) && looksLikeWindowsPathPrefix(stringValuePrefix)) {
|
|
repaired += "\\\\";
|
|
stringValuePrefix += "\\";
|
|
continue;
|
|
}
|
|
|
|
if (VALID_JSON_ESCAPES.has(nextChar)) {
|
|
repaired += `\\${nextChar}`;
|
|
stringValuePrefix += nextChar === "\\" ? "\\" : `\\${nextChar}`;
|
|
index += 1;
|
|
continue;
|
|
}
|
|
|
|
repaired += "\\\\";
|
|
stringValuePrefix += "\\";
|
|
continue;
|
|
}
|
|
|
|
repaired += isControlCharacter(char) ? escapeControlCharacter(char) : char;
|
|
stringValuePrefix += char;
|
|
}
|
|
|
|
return repaired;
|
|
}
|
|
|
|
export function parseJsonWithRepair(json: string): unknown {
|
|
return JSON.parse(repairJson(json)) as unknown;
|
|
}
|
|
|
|
function looksLikeWindowsPathPrefix(prefix: string): boolean {
|
|
const tail = prefix.slice(-160);
|
|
return /(?:^|[^A-Za-z0-9])[A-Za-z]:(?:[\\/][^"\\/:*?<>|\r\n]*)*$/.test(tail);
|
|
}
|
|
|
|
/**
|
|
* Attempts to parse potentially incomplete JSON during streaming.
|
|
* Always returns a valid object, even if the JSON is incomplete.
|
|
*
|
|
* @param partialJson The partial JSON string from streaming
|
|
* @returns Parsed object or empty object if parsing fails
|
|
*/
|
|
export function parseStreamingJson(partialJson: string | undefined): Record<string, unknown> {
|
|
if (!partialJson || partialJson.trim() === "") {
|
|
return {};
|
|
}
|
|
|
|
try {
|
|
return asNonArrayRecord(parseJsonWithRepair(partialJson));
|
|
} catch {
|
|
try {
|
|
return asNonArrayRecord(partialParse(partialJson));
|
|
} catch {
|
|
try {
|
|
return asNonArrayRecord(partialParse(repairJson(partialJson)));
|
|
} catch {
|
|
return {};
|
|
}
|
|
}
|
|
}
|
|
}
|