// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. // See LICENSE in the project root for license information. import * as path from 'path'; import * as ts from 'typescript'; import colors = require('colors'); import { JsonFile } from '@rushstack/node-core-library'; import { ExtractorConfig } from './ExtractorConfig'; import { IExtractorInvokeOptions } from './Extractor'; /** * Options for {@link CompilerState.create} * @public */ export interface ICompilerStateCreateOptions { /** {@inheritDoc IExtractorInvokeOptions.typescriptCompilerFolder} */ typescriptCompilerFolder?: string; /** * Additional .d.ts files to include in the analysis. */ additionalEntryPoints?: string[]; } /** * This class represents the TypeScript compiler state. This allows an optimization where multiple invocations * of API Extractor can reuse the same TypeScript compiler analysis. * * @public */ export class CompilerState { /** * The TypeScript compiler's `Program` object, which represents a complete scope of analysis. */ public readonly program: unknown; private constructor(properties: CompilerState) { this.program = properties.program; } /** * Create a compiler state for use with the specified `IExtractorInvokeOptions`. */ public static create(extractorConfig: ExtractorConfig, options?: ICompilerStateCreateOptions): CompilerState { let tsconfig: {} | undefined = extractorConfig.overrideTsconfig; let configBasePath: string = extractorConfig.projectFolder; if (!tsconfig) { // If it wasn't overridden, then load it from disk tsconfig = JsonFile.load(extractorConfig.tsconfigFilePath); configBasePath = path.resolve(path.dirname(extractorConfig.tsconfigFilePath)); } const commandLine: ts.ParsedCommandLine = ts.parseJsonConfigFileContent( tsconfig, ts.sys, configBasePath ); if (!commandLine.options.skipLibCheck && extractorConfig.skipLibCheck) { commandLine.options.skipLibCheck = true; console.log(colors.cyan( 'API Extractor was invoked with skipLibCheck. This is not recommended and may cause ' + 'incorrect type analysis.' )); } const inputFilePaths: string[] = commandLine.fileNames.concat(extractorConfig.mainEntryPointFilePath); if (options && options.additionalEntryPoints) { inputFilePaths.push(...options.additionalEntryPoints); } // Append the entry points and remove any non-declaration files from the list const analysisFilePaths: string[] = CompilerState._generateFilePathsForAnalysis(inputFilePaths); const compilerHost: ts.CompilerHost = CompilerState._createCompilerHost(commandLine, options); const program: ts.Program = ts.createProgram(analysisFilePaths, commandLine.options, compilerHost); if (commandLine.errors.length > 0) { const errorText: string = `${commandLine.errors[0].messageText}`; throw new Error(`Error parsing tsconfig.json content: ${errorText}`); } return new CompilerState({ program }); } /** * Given a list of absolute file paths, return a list containing only the declaration * files. Duplicates are also eliminated. * * @remarks * The tsconfig.json settings specify the compiler's input (a set of *.ts source files, * plus some *.d.ts declaration files used for legacy typings). However API Extractor * analyzes the compiler's output (a set of *.d.ts entry point files, plus any legacy * typings). This requires API Extractor to generate a special file list when it invokes * the compiler. * * Duplicates are removed so that entry points can be appended without worrying whether they * may already appear in the tsconfig.json file list. */ private static _generateFilePathsForAnalysis(inputFilePaths: string[]): string[] { const analysisFilePaths: string[] = []; const seenFiles: Set = new Set(); for (const inputFilePath of inputFilePaths) { const inputFileToUpper: string = inputFilePath.toUpperCase(); if (!seenFiles.has(inputFileToUpper)) { seenFiles.add(inputFileToUpper); if (!path.isAbsolute(inputFilePath)) { throw new Error('Input file is not an absolute path: ' + inputFilePath); } if (ExtractorConfig.hasDtsFileExtension(inputFilePath)) { analysisFilePaths.push(inputFilePath); } } } return analysisFilePaths; } private static _createCompilerHost(commandLine: ts.ParsedCommandLine, options: IExtractorInvokeOptions | undefined): ts.CompilerHost { // Create a default CompilerHost that we will override const compilerHost: ts.CompilerHost = ts.createCompilerHost(commandLine.options); // Save a copy of the original members. Note that "compilerHost" cannot be the copy, because // createCompilerHost() captures that instance in a closure that is used by the members. const defaultCompilerHost: ts.CompilerHost = { ...compilerHost }; if (options && options.typescriptCompilerFolder) { // Prevent a closure parameter const typescriptCompilerLibFolder: string = path.join(options.typescriptCompilerFolder, 'lib'); compilerHost.getDefaultLibLocation = () => typescriptCompilerLibFolder; } // Used by compilerHost.fileExists() // .d.ts file path --> whether the file exists const dtsExistsCache: Map = new Map(); // Used by compilerHost.fileExists() // Example: "c:/folder/file.part.ts" const fileExtensionRegExp: RegExp = /^(.+)(\.[a-z0-9_]+)$/i; compilerHost.fileExists = (fileName: string): boolean => { // In certain deprecated setups, the compiler may write its output files (.js and .d.ts) // in the same folder as the corresponding input file (.ts or .tsx). When following imports, // API Extractor wants to analyze the .d.ts file; however recent versions of the compiler engine // will instead choose the .ts file. To work around this, we hook fileExists() to hide the // existence of those files. // Is "fileName" a .d.ts file? The double extension ".d.ts" needs to be matched specially. if (!ExtractorConfig.hasDtsFileExtension(fileName)) { // It's not a .d.ts file. Is the file extension a potential source file? const match: RegExpExecArray | null = fileExtensionRegExp.exec(fileName); if (match) { // Example: "c:/folder/file.part" const pathWithoutExtension: string = match[1]; // Example: ".ts" const fileExtension: string = match[2]; switch (fileExtension.toLocaleLowerCase()) { case '.ts': case '.tsx': case '.js': case '.jsx': // Yes, this is a possible source file. Is there a corresponding .d.ts file in the same folder? const dtsFileName: string = `${pathWithoutExtension}.d.ts`; let dtsFileExists: boolean | undefined = dtsExistsCache.get(dtsFileName); if (dtsFileExists === undefined) { dtsFileExists = defaultCompilerHost.fileExists!(dtsFileName); dtsExistsCache.set(dtsFileName, dtsFileExists); } if (dtsFileExists) { // fileName is a potential source file and a corresponding .d.ts file exists. // Thus, API Extractor should ignore this file (so the .d.ts file will get analyzed instead). return false; } break; } } } // Fall through to the default implementation return defaultCompilerHost.fileExists!(fileName); }; return compilerHost; } }