quartz-research-note/quartz/processors/parse.ts

149 lines
4.5 KiB
TypeScript
Raw Normal View History

2023-06-04 16:35:45 +00:00
import esbuild from 'esbuild'
2023-05-30 15:02:20 +00:00
import remarkParse from 'remark-parse'
import remarkRehype from 'remark-rehype'
import { Processor, unified } from "unified"
import { Root as MDRoot } from 'remark-parse/lib'
import { Root as HTMLRoot } from 'hast'
import { ProcessedContent } from '../plugins/vfile'
import { PerfTimer } from '../perf'
import { read } from 'to-vfile'
import { slugify } from '../path'
2023-05-30 15:02:20 +00:00
import path from 'path'
2023-06-04 16:35:45 +00:00
import os from 'os'
import workerpool, { Promise as WorkerPromise } from 'workerpool'
import { QuartzTransformerPluginInstance } from '../plugins/types'
2023-06-04 17:37:43 +00:00
import { QuartzLogger } from '../log'
import chalk from 'chalk'
2023-05-30 15:02:20 +00:00
export type QuartzProcessor = Processor<MDRoot, HTMLRoot, void>
export function createProcessor(transformers: QuartzTransformerPluginInstance[]): QuartzProcessor {
2023-05-30 15:02:20 +00:00
// base Markdown -> MD AST
let processor = unified().use(remarkParse)
// MD AST -> MD AST transforms
for (const plugin of transformers.filter(p => p.markdownPlugins)) {
processor = processor.use(plugin.markdownPlugins!())
2023-05-30 15:02:20 +00:00
}
// MD AST -> HTML AST
processor = processor.use(remarkRehype, { allowDangerousHtml: true })
// HTML AST -> HTML AST transforms
for (const plugin of transformers.filter(p => p.htmlPlugins)) {
processor = processor.use(plugin.htmlPlugins!())
2023-05-30 15:02:20 +00:00
}
return processor
}
2023-06-04 16:35:45 +00:00
function* chunks<T>(arr: T[], n: number) {
for (let i = 0; i < arr.length; i += n) {
yield arr.slice(i, i + n)
}
}
2023-06-04 17:37:43 +00:00
async function transpileWorkerScript() {
2023-06-04 16:35:45 +00:00
// transpile worker script
const cacheFile = "./.quartz-cache/transpiled-worker.mjs"
const fp = "./quartz/worker.ts"
2023-06-04 17:37:43 +00:00
return esbuild.build({
2023-06-04 16:35:45 +00:00
entryPoints: [fp],
outfile: path.join("quartz", cacheFile),
bundle: true,
keepNames: true,
platform: "node",
format: "esm",
packages: "external",
plugins: [
{
name: 'css-and-scripts-as-text',
setup(build) {
build.onLoad({ filter: /\.scss$/ }, (_) => ({
contents: '',
loader: 'text'
}))
build.onLoad({ filter: /\.inline\.(ts|js)$/ }, (_) => ({
contents: '',
loader: 'text'
}))
}
}
]
})
}
export function createFileParser(transformers: QuartzTransformerPluginInstance[], baseDir: string, fps: string[], verbose: boolean) {
2023-06-04 17:37:43 +00:00
return async (processor: QuartzProcessor) => {
const res: ProcessedContent[] = []
for (const fp of fps) {
try {
const file = await read(fp)
2023-07-07 02:18:18 +00:00
// strip leading and trailing whitespace
file.value = file.value.toString().trim()
// Text -> Text transforms
for (const plugin of transformers.filter(p => p.textTransform)) {
file.value = plugin.textTransform!(file.value)
}
2023-06-04 17:37:43 +00:00
// base data properties that plugins may use
file.data.slug = slugify(path.relative(baseDir, file.path))
file.data.filePath = fp
const ast = processor.parse(file)
const newAst = await processor.run(ast, file)
res.push([newAst, file])
if (verbose) {
console.log(`[process] ${fp} -> ${file.data.slug}`)
}
} catch (err) {
2023-06-06 07:00:38 +00:00
console.log(chalk.red(`\nFailed to process \`${fp}\`: `) + err)
2023-06-04 17:37:43 +00:00
process.exit(1)
}
}
return res
}
}
export async function parseMarkdown(transformers: QuartzTransformerPluginInstance[], baseDir: string, fps: string[], verbose: boolean): Promise<ProcessedContent[]> {
2023-05-30 15:02:20 +00:00
const perf = new PerfTimer()
2023-06-04 17:37:43 +00:00
const log = new QuartzLogger(verbose)
2023-06-04 16:35:45 +00:00
const CHUNK_SIZE = 128
let concurrency = fps.length < CHUNK_SIZE ? 1 : os.availableParallelism()
2023-06-04 17:37:43 +00:00
let res: ProcessedContent[] = []
log.start(`Parsing input files using ${concurrency} threads`)
2023-06-04 16:35:45 +00:00
if (concurrency === 1) {
const processor = createProcessor(transformers)
const parse = createFileParser(transformers, baseDir, fps, verbose)
2023-06-04 17:37:43 +00:00
res = await parse(processor)
2023-06-04 16:35:45 +00:00
} else {
2023-06-04 17:37:43 +00:00
await transpileWorkerScript()
2023-06-04 16:35:45 +00:00
const pool = workerpool.pool(
'./quartz/bootstrap-worker.mjs',
{
minWorkers: 'max',
maxWorkers: concurrency,
workerType: 'thread'
}
)
2023-05-30 15:02:20 +00:00
2023-06-04 16:35:45 +00:00
const childPromises: WorkerPromise<ProcessedContent[]>[] = []
for (const chunk of chunks(fps, CHUNK_SIZE)) {
childPromises.push(pool.exec('parseFiles', [baseDir, chunk, verbose]))
2023-05-30 15:02:20 +00:00
}
2023-06-04 17:37:43 +00:00
2023-06-04 16:35:45 +00:00
const results: ProcessedContent[][] = await WorkerPromise.all(childPromises)
2023-06-04 17:37:43 +00:00
res = results.flat()
2023-06-04 16:35:45 +00:00
await pool.terminate()
2023-05-30 15:02:20 +00:00
}
2023-06-04 17:37:43 +00:00
log.success(`Parsed ${res.length} Markdown files in ${perf.timeSince()}`)
2023-05-30 15:02:20 +00:00
return res
}