Merge pull request #3803 from asgerf/asgerf/factor-out-evaluator-log-paths
Refactor: Store EvaluatorLogPaths object on LocalQueryInfo
This commit is contained in:
@@ -94,19 +94,19 @@ export class LogScannerService extends DisposableObject {
|
||||
public async scanEvalLog(query: QueryHistoryInfo | undefined): Promise<void> {
|
||||
this.diagnosticCollection.clear();
|
||||
|
||||
if (
|
||||
query?.t !== "local" ||
|
||||
query.evalLogSummaryLocation === undefined ||
|
||||
query.jsonEvalLogSummaryLocation === undefined
|
||||
) {
|
||||
if (query?.t !== "local" || query.evaluatorLogPaths === undefined) {
|
||||
return;
|
||||
}
|
||||
|
||||
const diagnostics = await this.scanLog(
|
||||
query.jsonEvalLogSummaryLocation,
|
||||
query.evalLogSummarySymbolsLocation,
|
||||
);
|
||||
const uri = Uri.file(query.evalLogSummaryLocation);
|
||||
const { summarySymbols, jsonSummary, humanReadableSummary } =
|
||||
query.evaluatorLogPaths;
|
||||
|
||||
if (jsonSummary === undefined || humanReadableSummary === undefined) {
|
||||
return;
|
||||
}
|
||||
|
||||
const diagnostics = await this.scanLog(jsonSummary, summarySymbols);
|
||||
const uri = Uri.file(humanReadableSummary);
|
||||
this.diagnosticCollection.set(uri, diagnostics);
|
||||
}
|
||||
|
||||
|
||||
@@ -781,7 +781,7 @@ export class QueryHistoryManager extends DisposableObject {
|
||||
|
||||
private async warnNoEvalLogSummary(item: LocalQueryInfo) {
|
||||
const evalLogLocation =
|
||||
item.evalLogLocation ?? item.initialInfo.outputDir?.evalLogPath;
|
||||
item.evaluatorLogPaths?.log ?? item.initialInfo.outputDir?.evalLogPath;
|
||||
|
||||
// Summary log file doesn't exist.
|
||||
if (evalLogLocation && (await pathExists(evalLogLocation))) {
|
||||
@@ -801,7 +801,7 @@ export class QueryHistoryManager extends DisposableObject {
|
||||
}
|
||||
|
||||
const evalLogLocation =
|
||||
item.evalLogLocation ?? item.initialInfo.outputDir?.evalLogPath;
|
||||
item.evaluatorLogPaths?.log ?? item.initialInfo.outputDir?.evalLogPath;
|
||||
|
||||
if (evalLogLocation && (await pathExists(evalLogLocation))) {
|
||||
await tryOpenExternalFile(this.app.commands, evalLogLocation);
|
||||
@@ -816,12 +816,15 @@ export class QueryHistoryManager extends DisposableObject {
|
||||
}
|
||||
|
||||
// If the summary file location wasn't saved, display error
|
||||
if (!item.evalLogSummaryLocation) {
|
||||
if (!item.evaluatorLogPaths?.humanReadableSummary) {
|
||||
await this.warnNoEvalLogSummary(item);
|
||||
return;
|
||||
}
|
||||
|
||||
await tryOpenExternalFile(this.app.commands, item.evalLogSummaryLocation);
|
||||
await tryOpenExternalFile(
|
||||
this.app.commands,
|
||||
item.evaluatorLogPaths.humanReadableSummary,
|
||||
);
|
||||
}
|
||||
|
||||
async handleShowEvalLogViewer(item: QueryHistoryInfo) {
|
||||
@@ -830,7 +833,7 @@ export class QueryHistoryManager extends DisposableObject {
|
||||
}
|
||||
|
||||
// If the JSON summary file location wasn't saved, display error
|
||||
if (item.jsonEvalLogSummaryLocation === undefined) {
|
||||
if (item.evaluatorLogPaths?.jsonSummary === undefined) {
|
||||
await this.warnNoEvalLogSummary(item);
|
||||
return;
|
||||
}
|
||||
@@ -838,7 +841,7 @@ export class QueryHistoryManager extends DisposableObject {
|
||||
// TODO(angelapwen): Stream the file in.
|
||||
try {
|
||||
const evalLogData: EvalLogData[] = await parseViewerData(
|
||||
item.jsonEvalLogSummaryLocation,
|
||||
item.evaluatorLogPaths.jsonSummary,
|
||||
);
|
||||
const evalLogTreeBuilder = new EvalLogTreeBuilder(
|
||||
item.getQueryName(),
|
||||
@@ -847,7 +850,7 @@ export class QueryHistoryManager extends DisposableObject {
|
||||
this.evalLogViewer.updateRoots(await evalLogTreeBuilder.getRoots());
|
||||
} catch {
|
||||
throw new Error(
|
||||
`Could not read evaluator log summary JSON file to generate viewer data at ${item.jsonEvalLogSummaryLocation}.`,
|
||||
`Could not read evaluator log summary JSON file to generate viewer data at ${item.evaluatorLogPaths.jsonSummary}.`,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,10 +25,10 @@ export function mapLocalQueryInfoToDto(
|
||||
return {
|
||||
initialInfo: mapInitialQueryInfoToDto(query.initialInfo),
|
||||
t: "local",
|
||||
evalLogLocation: query.evalLogLocation,
|
||||
evalLogSummaryLocation: query.evalLogSummaryLocation,
|
||||
jsonEvalLogSummaryLocation: query.jsonEvalLogSummaryLocation,
|
||||
evalLogSummarySymbolsLocation: query.evalLogSummarySymbolsLocation,
|
||||
evalLogLocation: query.evaluatorLogPaths?.log,
|
||||
evalLogSummaryLocation: query.evaluatorLogPaths?.humanReadableSummary,
|
||||
jsonEvalLogSummaryLocation: query.evaluatorLogPaths?.jsonSummary,
|
||||
evalLogSummarySymbolsLocation: query.evaluatorLogPaths?.summarySymbols,
|
||||
failureReason: query.failureReason,
|
||||
completedQuery:
|
||||
query.completedQuery && mapCompletedQueryToDto(query.completedQuery),
|
||||
|
||||
@@ -32,10 +32,15 @@ export function mapLocalQueryItemToDomainModel(
|
||||
localQuery.failureReason,
|
||||
localQuery.completedQuery &&
|
||||
mapCompletedQueryInfoToDomainModel(localQuery.completedQuery),
|
||||
localQuery.evalLogLocation,
|
||||
localQuery.evalLogSummaryLocation,
|
||||
localQuery.jsonEvalLogSummaryLocation,
|
||||
localQuery.evalLogSummarySymbolsLocation,
|
||||
localQuery.evalLogLocation
|
||||
? {
|
||||
log: localQuery.evalLogLocation,
|
||||
humanReadableSummary: localQuery.evalLogSummaryLocation,
|
||||
jsonSummary: localQuery.jsonEvalLogSummaryLocation,
|
||||
summarySymbols: localQuery.evalLogSummarySymbolsLocation,
|
||||
endSummary: undefined,
|
||||
}
|
||||
: undefined,
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@@ -200,10 +200,7 @@ export class LocalQueryInfo {
|
||||
private cancellationSource?: CancellationTokenSource, // used to cancel in progress queries
|
||||
public failureReason?: string,
|
||||
public completedQuery?: CompletedQueryInfo,
|
||||
public evalLogLocation?: string,
|
||||
public evalLogSummaryLocation?: string,
|
||||
public jsonEvalLogSummaryLocation?: string,
|
||||
public evalLogSummarySymbolsLocation?: string,
|
||||
public evaluatorLogPaths?: EvaluatorLogPaths,
|
||||
) {
|
||||
/**/
|
||||
}
|
||||
@@ -229,10 +226,7 @@ export class LocalQueryInfo {
|
||||
|
||||
/** Sets the paths to the various structured evaluator logs. */
|
||||
public setEvaluatorLogPaths(logPaths: EvaluatorLogPaths): void {
|
||||
this.evalLogLocation = logPaths.log;
|
||||
this.evalLogSummaryLocation = logPaths.humanReadableSummary;
|
||||
this.jsonEvalLogSummaryLocation = logPaths.jsonSummary;
|
||||
this.evalLogSummarySymbolsLocation = logPaths.summarySymbols;
|
||||
this.evaluatorLogPaths = logPaths;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user