File size: 13,769 Bytes
5c2a829 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 | // API baseline helpers render public SDK exports for contract drift reports.
import path from "node:path";
import { fileURLToPath } from "node:url";
import ts from "typescript";
import {
pluginSdkDocMetadata,
type PluginSdkDocCategory,
type PluginSdkDocEntrypoint,
} from "../../scripts/lib/plugin-sdk-doc-metadata.ts";
import { publicPluginSdkEntrypoints } from "../../scripts/lib/plugin-sdk-entries.mts";
import {
createDeclarationClosureRenderer,
formatPluginSdkDiagnostics,
type PluginSdkApiDeclarationSection,
} from "./api-baseline-declaration-closure.js";
import { printPluginSdkExportDeclaration } from "./api-baseline-declaration-print.js";
import { normalizePluginSdkApiSourcePath as relativePath } from "./api-baseline-normalization.js";
export {
normalizePluginSdkApiDeclarationText,
normalizePluginSdkApiSourcePath,
} from "./api-baseline-normalization.js";
/** Declaration kind recorded for each public SDK export in the API baseline. */
type PluginSdkApiExportKind =
| "class"
| "const"
| "enum"
| "function"
| "interface"
| "namespace"
| "type"
| "unknown"
| "variable";
/** Repo source location for a public SDK declaration or module. */
type PluginSdkApiSourceLink = {
/** Repo-relative source file path. */
path: string;
};
/** One named export captured from a public SDK entrypoint. */
export type PluginSdkApiExport = {
/** Hash of repo-owned declarations reachable from this export. */
closureHash: string | null;
/** References into the baseline's deduplicated declaration section pool. */
closureSectionIds: number[] | null;
/** Normalized TypeScript declaration text, or null when TypeScript cannot print it. */
declaration: string | null;
/** Exported symbol name as plugin authors import it. */
exportName: string;
/** Coarse declaration kind used by docs and drift reports. */
kind: PluginSdkApiExportKind;
/** Source location for the exported declaration when available. */
source: PluginSdkApiSourceLink | null;
};
/** API baseline record for one public SDK module/subpath. */
type PluginSdkApiModule = {
/** Documentation category used to group SDK entrypoints when documented. */
category: PluginSdkDocCategory | null;
/** Canonical public SDK entrypoint. */
entrypoint: string;
/** Public exports discovered from the TypeScript program. */
exports: PluginSdkApiExport[];
/** Package specifier shown to plugin authors. */
importSpecifier: string;
/** Repo source for the SDK entrypoint file. */
source: PluginSdkApiSourceLink;
};
/** Full SDK API surface payload. */
export type PluginSdkApiBaseline = {
/** Deduplicated repo-owned declarations reachable from public exports. */
declarationSections: PluginSdkApiDeclarationSection[];
/** Public SDK modules included in the baseline. */
modules: PluginSdkApiModule[];
};
type RenderedPluginSdkApiExport = Omit<PluginSdkApiExport, "closureSectionIds"> & {
closureSections: PluginSdkApiDeclarationSection[] | null;
};
type RenderedPluginSdkApiModule = Omit<PluginSdkApiModule, "exports"> & {
exports: RenderedPluginSdkApiExport[];
};
type DeclarationClosureRenderer = ReturnType<typeof createDeclarationClosureRenderer>;
function assert(condition: unknown, message: string): asserts condition {
if (!condition) {
throw new Error(message);
}
}
function resolveRepoRoot(): string {
return path.resolve(path.dirname(fileURLToPath(import.meta.url)), "../..");
}
function createCompilerContext(repoRoot: string, entrypoints: readonly string[]) {
const configPath = ts.findConfigFile(
repoRoot,
(filePath) => ts.sys.fileExists(filePath),
"tsconfig.json",
);
assert(configPath, "Could not find tsconfig.json");
const configFile = ts.readConfigFile(configPath, (filePath) => ts.sys.readFile(filePath));
if (configFile.error) {
throw new Error(ts.flattenDiagnosticMessageText(configFile.error.messageText, "\n"));
}
const parsedConfig = ts.parseJsonConfigFileContent(configFile.config, ts.sys, repoRoot);
if (parsedConfig.errors.length > 0) {
throw new Error(formatPluginSdkDiagnostics(parsedConfig.errors, repoRoot));
}
const fileNames = entrypoints
.map((entrypoint) => path.join(repoRoot, "src", "plugin-sdk", `${entrypoint}.ts`))
.toSorted((left, right) =>
compareText(
relativePath(repoRoot, path.resolve(left)),
relativePath(repoRoot, path.resolve(right)),
),
);
const program = ts.createProgram(fileNames, {
...parsedConfig.options,
declaration: true,
declarationMap: false,
emitDeclarationOnly: true,
noEmit: false,
// Declaration diagnostics are checked explicitly; unrelated untyped external JS stays valid.
noEmitOnError: false,
removeComments: true,
sourceMap: false,
});
const printer = ts.createPrinter({ newLine: ts.NewLineKind.LineFeed, removeComments: true });
return {
checker: program.getTypeChecker(),
declarationClosure: createDeclarationClosureRenderer({
printer,
program,
repoRoot,
}),
printer,
program,
};
}
/** List canonical public SDK entrypoints included in the API baseline. */
export function listPluginSdkApiBaselineEntrypoints(): string[] {
return [...publicPluginSdkEntrypoints];
}
function inferExportKind(
symbol: ts.Symbol,
declaration: ts.Declaration | undefined,
): PluginSdkApiExportKind {
if (declaration) {
switch (declaration.kind) {
case ts.SyntaxKind.ClassDeclaration:
return "class";
case ts.SyntaxKind.EnumDeclaration:
return "enum";
case ts.SyntaxKind.FunctionDeclaration:
return "function";
case ts.SyntaxKind.InterfaceDeclaration:
return "interface";
case ts.SyntaxKind.ModuleDeclaration:
return "namespace";
case ts.SyntaxKind.TypeAliasDeclaration:
return "type";
case ts.SyntaxKind.VariableDeclaration: {
const variableStatement = declaration.parent?.parent;
if (
variableStatement &&
ts.isVariableStatement(variableStatement) &&
(ts.getCombinedNodeFlags(variableStatement.declarationList) & ts.NodeFlags.Const) !== 0
) {
return "const";
}
return "variable";
}
default:
break;
}
}
for (const [flag, kind] of [
[ts.SymbolFlags.Function, "function"],
[ts.SymbolFlags.Class, "class"],
[ts.SymbolFlags.Interface, "interface"],
[ts.SymbolFlags.TypeAlias, "type"],
[ts.SymbolFlags.ConstEnum | ts.SymbolFlags.RegularEnum, "enum"],
[ts.SymbolFlags.Variable, "variable"],
[ts.SymbolFlags.NamespaceModule | ts.SymbolFlags.ValueModule, "namespace"],
] as const) {
if (symbol.flags & flag) {
return kind;
}
}
return "unknown";
}
function resolveSymbolAndDeclaration(
checker: ts.TypeChecker,
repoRoot: string,
symbol: ts.Symbol,
): {
declaration: ts.Declaration | undefined;
resolvedSymbol: ts.Symbol;
} {
const resolvedSymbol =
symbol.flags & ts.SymbolFlags.Alias ? checker.getAliasedSymbol(symbol) : symbol;
const declarations = (
resolvedSymbol.getDeclarations() ??
symbol.getDeclarations() ??
[]
).toSorted((left, right) => compareDeclarations(repoRoot, left, right));
const declaration = declarations.find((candidate) => candidate.kind !== ts.SyntaxKind.SourceFile);
return { declaration, resolvedSymbol };
}
function compareText(left: string, right: string): number {
return left < right ? -1 : left > right ? 1 : 0;
}
function compareDeclarations(
repoRoot: string,
left: ts.Declaration,
right: ts.Declaration,
): number {
return (
compareText(
relativePath(repoRoot, left.getSourceFile().fileName),
relativePath(repoRoot, right.getSourceFile().fileName),
) ||
left.getStart() - right.getStart() ||
left.kind - right.kind
);
}
function buildExportSurface(params: {
checker: ts.TypeChecker;
declarationClosure: DeclarationClosureRenderer;
printer: ts.Printer;
repoRoot: string;
symbol: ts.Symbol;
}): RenderedPluginSdkApiExport {
const { checker, declarationClosure, printer, repoRoot, symbol } = params;
const { declaration, resolvedSymbol } = resolveSymbolAndDeclaration(checker, repoRoot, symbol);
const exportName = symbol.getName();
const declarationName = declaration ? ts.getNameOfDeclaration(declaration) : undefined;
const closureName =
declarationName && ts.isIdentifier(declarationName) ? declarationName.text : exportName;
const declarationText = declaration
? printPluginSdkExportDeclaration(repoRoot, checker, printer, declaration, exportName)
: null;
const declarationSource = declaration?.getSourceFile();
const closure =
declarationSource && declarationText
? declarationClosure(declarationSource, closureName)
: null;
return {
closureHash: closure?.hash ?? null,
closureSections: closure?.sections ?? null,
declaration: declarationText,
exportName,
kind: inferExportKind(resolvedSymbol, declaration),
source: declarationSource ? { path: relativePath(repoRoot, declarationSource.fileName) } : null,
};
}
const EXPORT_KIND_SORT_RANK: Record<PluginSdkApiExportKind, number> = {
function: 0,
const: 1,
variable: 2,
type: 3,
interface: 4,
class: 5,
enum: 6,
namespace: 7,
unknown: 8,
};
function sortExports(left: RenderedPluginSdkApiExport, right: RenderedPluginSdkApiExport): number {
return (
EXPORT_KIND_SORT_RANK[left.kind] - EXPORT_KIND_SORT_RANK[right.kind] ||
compareText(left.exportName, right.exportName)
);
}
function buildModuleSurface(params: {
checker: ts.TypeChecker;
declarationClosure: DeclarationClosureRenderer;
printer: ts.Printer;
program: ts.Program;
repoRoot: string;
entrypoint: string;
}): RenderedPluginSdkApiModule {
const { checker, declarationClosure, printer, program, repoRoot, entrypoint } = params;
const metadata = Object.hasOwn(pluginSdkDocMetadata, entrypoint)
? pluginSdkDocMetadata[entrypoint as PluginSdkDocEntrypoint]
: undefined;
const importSpecifier = `openclaw/plugin-sdk/${entrypoint}`;
const moduleSourcePath = path.join(repoRoot, "src", "plugin-sdk", `${entrypoint}.ts`);
const sourceFile = program.getSourceFile(moduleSourcePath);
assert(sourceFile, `Missing source file for ${importSpecifier}`);
const moduleSymbol = checker.getSymbolAtLocation(sourceFile);
assert(moduleSymbol, `Unable to resolve module symbol for ${importSpecifier}`);
const exports = checker
.getExportsOfModule(moduleSymbol)
.filter((symbol) => symbol.getName() !== "__esModule")
.map((symbol) =>
buildExportSurface({
checker,
declarationClosure,
printer,
repoRoot,
symbol,
}),
)
.toSorted(sortExports);
return {
category: metadata?.category ?? null,
entrypoint,
exports,
importSpecifier,
source: { path: relativePath(repoRoot, moduleSourcePath) },
};
}
/** Render a public SDK API surface without writing generated artifacts. */
export async function renderPluginSdkApiBaseline(params?: {
repoRoot?: string;
entrypoints?: readonly string[];
}): Promise<PluginSdkApiBaseline> {
const repoRoot = params?.repoRoot ?? resolveRepoRoot();
const entrypoints = params?.entrypoints ?? listPluginSdkApiBaselineEntrypoints();
if (params?.entrypoints === undefined) {
validateMetadata();
}
const { checker, declarationClosure, printer, program } = createCompilerContext(
repoRoot,
entrypoints,
);
const modules = [...entrypoints].toSorted(compareText).map((entrypoint) =>
buildModuleSurface({
checker,
declarationClosure,
printer,
program,
repoRoot,
entrypoint,
}),
);
const sectionsByContent = new Map<string, PluginSdkApiDeclarationSection>();
for (const moduleSurface of modules) {
for (const exportSurface of moduleSurface.exports) {
for (const section of exportSurface.closureSections ?? []) {
sectionsByContent.set(`${section.name}\0${section.text}`, section);
}
}
}
const declarationSections = [...sectionsByContent.values()].toSorted(
(left, right) => compareText(left.name, right.name) || compareText(left.text, right.text),
);
const sectionIds = new Map(
declarationSections.map((section, index) => [`${section.name}\0${section.text}`, index]),
);
return {
declarationSections,
modules: modules
.map((moduleSurface) => ({
category: moduleSurface.category,
entrypoint: moduleSurface.entrypoint,
exports: moduleSurface.exports.map((exportSurface) => ({
closureHash: exportSurface.closureHash,
closureSectionIds:
exportSurface.closureSections?.map((section) => {
const id = sectionIds.get(`${section.name}\0${section.text}`);
assert(id !== undefined, "Missing Plugin SDK declaration section");
return id;
}) ?? null,
declaration: exportSurface.declaration,
exportName: exportSurface.exportName,
kind: exportSurface.kind,
source: exportSurface.source,
})),
importSpecifier: moduleSurface.importSpecifier,
source: moduleSurface.source,
}))
.toSorted((left, right) => compareText(left.importSpecifier, right.importSpecifier)),
};
}
function validateMetadata(): void {
const canonicalEntrypoints = new Set<string>(publicPluginSdkEntrypoints);
const metadataEntrypoints = new Set<string>(Object.keys(pluginSdkDocMetadata));
for (const entrypoint of metadataEntrypoints) {
assert(
canonicalEntrypoints.has(entrypoint),
`Metadata entrypoint ${entrypoint} is not exported in the Plugin SDK.`,
);
}
}
|