-
Notifications
You must be signed in to change notification settings - Fork 432
Expand file tree
/
Copy pathtypes.ts
More file actions
243 lines (211 loc) · 6.53 KB
/
types.ts
File metadata and controls
243 lines (211 loc) · 6.53 KB
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
/*
* types.ts
*
* Copyright (C) 2020-2022 Posit Software, PBC
*/
import {
kIncludeAfterBody,
kIncludeBeforeBody,
kIncludeInHeader,
} from "../config/constants.ts";
import { Format, FormatPandoc, Metadata } from "../config/types.ts";
import { PartitionedMarkdown } from "../core/pandoc/types.ts";
import { RenderOptions, RenderResultFile } from "../command/render/types.ts";
import { MappedString } from "../core/lib/text-types.ts";
import { HandlerContextResults } from "../core/handlers/types.ts";
import { EngineProjectContext, ProjectContext } from "../project/types.ts";
import { Command } from "cliffy/command/mod.ts";
import type { QuartoAPI } from "../core/api/index.ts";
import type { CheckConfiguration } from "../command/check/check.ts";
export type { EngineProjectContext };
export const kQmdExtensions = [".qmd"];
export const kMarkdownEngine = "markdown";
export const kKnitrEngine = "knitr";
export const kJupyterEngine = "jupyter";
export const kJuliaEngine = "julia";
/**
* Interface for the static discovery phase of execution engines
* Used to determine which engine should handle a file
*/
export interface ExecutionEngineDiscovery {
/**
* Initialize the engine with the Quarto API (optional)
* May be called multiple times but always with the same QuartoAPI object.
* Engines should store the reference to use throughout their lifecycle.
*/
init?: (quarto: QuartoAPI) => void;
name: string;
defaultExt: string;
defaultYaml: (kernel?: string) => string[];
defaultContent: (kernel?: string) => string[];
validExtensions: () => string[];
claimsFile: (file: string, ext: string) => boolean;
/**
* Whether this engine can handle the given language
*
* @param language - The language identifier (e.g., "python", "r", "julia")
* @param firstClass - Optional first class from code block attributes (e.g., "marimo" from {python .marimo})
* @returns false to skip (don't claim), true to claim with priority 1, or any number for custom priority (higher wins)
*/
claimsLanguage: (language: string, firstClass?: string) => boolean | number;
canFreeze: boolean;
generatesFigures: boolean;
ignoreDirs?: () => string[] | undefined;
/**
* Semver range specifying the minimum required Quarto version for this engine
* Examples: ">= 1.6.0", "^1.5.0", "1.*"
*/
quartoRequired?: string;
/**
* Populate engine-specific CLI commands (optional)
*/
populateCommand?: (command: Command) => void;
/**
* Check installation and capabilities for this engine (optional)
* Used by `quarto check <engine-name>` command
*
* Engines implementing this method will automatically be available as targets
* for the check command (e.g., `quarto check jupyter`, `quarto check knitr`).
*
* @param conf - Check configuration with output settings and services
*/
checkInstallation?: (conf: CheckConfiguration) => Promise<void>;
/**
* Launch a dynamic execution engine with project context
*/
launch: (context: EngineProjectContext) => ExecutionEngineInstance;
}
/**
* Interface for the dynamic execution phase of execution engines
* Used after a file has been assigned to an engine
*/
export interface ExecutionEngineInstance {
name: string;
canFreeze: boolean;
markdownForFile(file: string): Promise<MappedString>;
target: (
file: string,
quiet?: boolean,
markdown?: MappedString,
) => Promise<ExecutionTarget | undefined>;
partitionedMarkdown: (
file: string,
format?: Format,
) => Promise<PartitionedMarkdown>;
filterFormat?: (
source: string,
options: RenderOptions,
format: Format,
) => Format;
execute: (options: ExecuteOptions) => Promise<ExecuteResult>;
executeTargetSkipped?: (
target: ExecutionTarget,
format: Format,
) => void;
dependencies: (options: DependenciesOptions) => Promise<DependenciesResult>;
postprocess: (options: PostProcessOptions) => Promise<void>;
canKeepSource?: (target: ExecutionTarget) => boolean;
intermediateFiles?: (input: string) => string[] | undefined;
run?: (options: RunOptions) => Promise<void>;
postRender?: (
file: RenderResultFile,
) => Promise<void>;
}
// execution target (filename and context 'cookie')
export interface ExecutionTarget {
source: string;
input: string;
markdown: MappedString;
metadata: Metadata;
data?: unknown;
preEngineExecuteResults?: HandlerContextResults;
}
// execute options
export interface ExecuteOptions {
target: ExecutionTarget;
format: Format;
resourceDir: string;
tempDir: string;
dependencies: boolean;
projectDir?: string;
libDir?: string;
cwd: string;
params?: { [key: string]: unknown };
quiet?: boolean;
previewServer?: boolean;
handledLanguages: string[]; // list of languages handled by cell language handlers, after the execution engine
project: ProjectContext;
}
// result of execution
export interface ExecuteResult {
markdown: string;
supporting: string[];
filters: string[];
metadata?: Metadata;
pandoc?: FormatPandoc;
includes?: PandocIncludes;
engine?: string;
engineDependencies?: Record<string, Array<unknown>>;
preserve?: Record<string, string>;
postProcess?: boolean;
resourceFiles?: string[];
}
// result of execution after restoring source map
export interface MappedExecuteResult {
markdown: MappedString;
supporting: string[];
filters: string[];
metadata?: Metadata;
pandoc?: FormatPandoc;
includes?: PandocIncludes;
engineDependencies?: Record<string, Array<unknown>>;
preserve?: Record<string, string>;
postProcess?: boolean;
resourceFiles?: string[];
}
export interface PandocIncludes {
[kIncludeBeforeBody]?: string[];
[kIncludeAfterBody]?: string[];
[kIncludeInHeader]?: string[];
}
// dependencies options
export interface DependenciesOptions {
target: ExecutionTarget;
format: Format;
output: string;
resourceDir: string;
tempDir: string;
projectDir?: string;
libDir?: string;
dependencies?: Array<unknown>;
quiet?: boolean;
}
// dependencies result
export interface DependenciesResult {
includes: PandocIncludes;
}
// post processing options
export interface PostProcessOptions {
engine: ExecutionEngineInstance;
target: ExecutionTarget;
format: Format;
output: string;
tempDir: string;
projectDir?: string;
preserve?: Record<string, string>;
quiet?: boolean;
}
// run options
export interface RunOptions {
input: string;
render: boolean;
browser: boolean;
tempDir: string;
reload?: boolean;
format?: string;
projectDir?: string;
port?: number;
host?: string;
quiet?: boolean;
onReady?: () => Promise<void>;
}