ast_util.ts 13.0 KB
Newer Older
1
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2
import { basename, dirname, join, relative } from "path";
3 4 5 6 7 8 9 10 11 12 13 14
import { readFileSync } from "fs";
import { EOL } from "os";
import {
  ExportDeclaration,
  ImportDeclaration,
  InterfaceDeclaration,
  JSDoc,
  Project,
  PropertySignature,
  SourceFile,
  StatementedNode,
  ts,
15
  TypeAliasDeclaration,
16 17 18
  TypeGuards,
  VariableStatement,
  VariableDeclarationKind
19 20 21 22 23
} from "ts-morph";

let silent = false;

/** Logs a message to the console. */
24
export function log(message: any = "", ...args: any[]): void {
25 26 27 28 29 30 31 32 33
  if (!silent) {
    console.log(message, ...args);
  }
}

/** Sets the silent flag which impacts logging to the console. */
export function setSilent(value = false): void {
  silent = value;
}
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

/** Add a property to an interface */
export function addInterfaceProperty(
  interfaceDeclaration: InterfaceDeclaration,
  name: string,
  type: string,
  jsdocs?: JSDoc[]
): PropertySignature {
  return interfaceDeclaration.addProperty({
    name,
    type,
    docs: jsdocs && jsdocs.map(jsdoc => jsdoc.getText())
  });
}

/** Add `@url` comment to node. */
export function addSourceComment(
  node: StatementedNode,
  sourceFile: SourceFile,
  rootPath: string
): void {
  node.insertStatements(
    0,
    `// @url ${relative(rootPath, sourceFile.getFilePath())}\n\n`
  );
}

61 62 63 64 65 66 67
/** Add a declaration of a type alias to a node */
export function addTypeAlias(
  node: StatementedNode,
  name: string,
  type: string,
  hasDeclareKeyword = false,
  jsdocs?: JSDoc[]
68
): TypeAliasDeclaration {
69 70 71 72 73 74 75 76
  return node.addTypeAlias({
    name,
    type,
    docs: jsdocs && jsdocs.map(jsdoc => jsdoc.getText()),
    hasDeclareKeyword
  });
}

77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
/** Add a declaration of an interface to a node */
export function addInterfaceDeclaration(
  node: StatementedNode,
  interfaceDeclaration: InterfaceDeclaration
) {
  const interfaceStructure = interfaceDeclaration.getStructure();

  return node.addInterface({
    name: interfaceStructure.name,
    properties: interfaceStructure.properties,
    docs: interfaceStructure.docs,
    hasDeclareKeyword: true
  });
}

92 93 94 95 96
/** Add a declaration of a variable to a node */
export function addVariableDeclaration(
  node: StatementedNode,
  name: string,
  type: string,
A
andy finch 已提交
97
  isConst: boolean,
98
  hasDeclareKeyword?: boolean,
99 100 101
  jsdocs?: JSDoc[]
): VariableStatement {
  return node.addVariableStatement({
A
andy finch 已提交
102 103 104
    declarationKind: isConst
      ? VariableDeclarationKind.Const
      : VariableDeclarationKind.Let,
105
    declarations: [{ name, type }],
106 107
    docs: jsdocs && jsdocs.map(jsdoc => jsdoc.getText()),
    hasDeclareKeyword
108 109 110
  });
}

111 112 113 114 115 116 117 118
/** Copy one source file to the end of another source file. */
export function appendSourceFile(
  sourceFile: SourceFile,
  targetSourceFile: SourceFile
): void {
  targetSourceFile.addStatements(`\n${sourceFile.print()}`);
}

119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
/** Used when formatting diagnostics */
const formatDiagnosticHost: ts.FormatDiagnosticsHost = {
  getCurrentDirectory() {
    return process.cwd();
  },
  getCanonicalFileName(path: string) {
    return path;
  },
  getNewLine() {
    return EOL;
  }
};

/** Log diagnostics to the console with colour. */
export function logDiagnostics(diagnostics: ts.Diagnostic[]): void {
  if (diagnostics.length) {
    console.log(
      ts.formatDiagnosticsWithColorAndContext(diagnostics, formatDiagnosticHost)
    );
  }
}

141
/** Check diagnostics, and if any exist, exit the process */
142
export function checkDiagnostics(project: Project, onlyFor?: string[]): void {
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
  const program = project.getProgram();
  const diagnostics = [
    ...program.getGlobalDiagnostics(),
    ...program.getSyntacticDiagnostics(),
    ...program.getSemanticDiagnostics(),
    ...program.getDeclarationDiagnostics()
  ]
    .filter(diagnostic => {
      const sourceFile = diagnostic.getSourceFile();
      return onlyFor && sourceFile
        ? onlyFor.includes(sourceFile.getFilePath())
        : true;
    })
    .map(diagnostic => diagnostic.compilerObject);

K
Kitson Kelly 已提交
158 159
  logDiagnostics(diagnostics);

160 161 162 163 164
  if (diagnostics.length) {
    process.exit(1);
  }
}

K
Kitson Kelly 已提交
165 166 167 168 169 170 171 172 173 174 175
function createDeclarationError(
  msg: string,
  declaration: ImportDeclaration | ExportDeclaration
): Error {
  return new Error(
    `${msg}\n` +
      `  In: "${declaration.getSourceFile().getFilePath()}"\n` +
      `  Text: "${declaration.getText()}"`
  );
}

176 177 178 179 180 181 182
export interface FlattenNamespaceOptions {
  customSources?: { [sourceFilePath: string]: string };
  debug?: boolean;
  rootPath: string;
  sourceFile: SourceFile;
}

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
/** Returns a string which indicates the source file as the source */
export function getSourceComment(
  sourceFile: SourceFile,
  rootPath: string
): string {
  return `\n// @url ${relative(rootPath, sourceFile.getFilePath())}\n\n`;
}

/** Return a set of fully qualified symbol names for the files exports */
function getExportedSymbols(sourceFile: SourceFile): Set<string> {
  const exportedSymbols = new Set<string>();
  const exportDeclarations = sourceFile.getExportDeclarations();
  for (const exportDeclaration of exportDeclarations) {
    const exportSpecifiers = exportDeclaration.getNamedExports();
    for (const exportSpecifier of exportSpecifiers) {
      const aliasedSymbol = exportSpecifier
        .getSymbolOrThrow()
        .getAliasedSymbol();
      if (aliasedSymbol) {
        exportedSymbols.add(aliasedSymbol.getFullyQualifiedName());
      }
    }
  }
  return exportedSymbols;
}

209 210 211 212 213 214 215 216 217 218 219 220 221
/** Take a namespace and flatten all exports. */
export function flattenNamespace({
  customSources,
  debug,
  rootPath,
  sourceFile
}: FlattenNamespaceOptions): string {
  const sourceFiles = new Set<SourceFile>();
  let output = "";
  const exportedSymbols = getExportedSymbols(sourceFile);

  function flattenDeclarations(
    declaration: ImportDeclaration | ExportDeclaration
222
  ): void {
223 224
    const declarationSourceFile = declaration.getModuleSpecifierSourceFile();
    if (declarationSourceFile) {
225
      // eslint-disable-next-line @typescript-eslint/no-use-before-define
226 227 228 229 230
      processSourceFile(declarationSourceFile);
      declaration.remove();
    }
  }

231
  function rectifyNodes(currentSourceFile: SourceFile): void {
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
    currentSourceFile.forEachChild(node => {
      if (TypeGuards.isAmbientableNode(node)) {
        node.setHasDeclareKeyword(false);
      }
      if (TypeGuards.isExportableNode(node)) {
        const nodeSymbol = node.getSymbol();
        if (
          nodeSymbol &&
          !exportedSymbols.has(nodeSymbol.getFullyQualifiedName())
        ) {
          node.setIsExported(false);
        }
      }
    });
  }

248 249 250
  function processSourceFile(
    currentSourceFile: SourceFile
  ): string | undefined {
251 252 253 254 255
    if (sourceFiles.has(currentSourceFile)) {
      return;
    }
    sourceFiles.add(currentSourceFile);

256 257 258 259
    const currentSourceFilePath = currentSourceFile
      .getFilePath()
      .replace(/(\.d)?\.ts$/, "");
    log("Process source file:", currentSourceFilePath);
260
    if (customSources && currentSourceFilePath in customSources) {
261
      log("  Using custom source.");
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
      output += customSources[currentSourceFilePath];
      return;
    }

    currentSourceFile.getImportDeclarations().forEach(flattenDeclarations);
    currentSourceFile.getExportDeclarations().forEach(flattenDeclarations);

    rectifyNodes(currentSourceFile);

    output +=
      (debug ? getSourceComment(currentSourceFile, rootPath) : "") +
      currentSourceFile.print();
  }

  sourceFile.getExportDeclarations().forEach(exportDeclaration => {
K
Kitson Kelly 已提交
277 278 279 280 281 282
    const exportedSourceFile = exportDeclaration.getModuleSpecifierSourceFile();
    if (exportedSourceFile) {
      processSourceFile(exportedSourceFile);
    } else {
      throw createDeclarationError("Missing source file.", exportDeclaration);
    }
283 284 285 286 287 288 289 290 291 292 293 294
    exportDeclaration.remove();
  });

  rectifyNodes(sourceFile);

  return (
    output +
    (debug ? getSourceComment(sourceFile, rootPath) : "") +
    sourceFile.print()
  );
}

295 296 297 298 299 300 301 302 303 304 305 306 307
interface InlineFilesOptions {
  basePath: string;
  debug?: boolean;
  inline: string[];
  targetSourceFile: SourceFile;
}

/** Inline files into the target source file. */
export function inlineFiles({
  basePath,
  debug,
  inline,
  targetSourceFile
308
}: InlineFilesOptions): void {
309 310 311 312 313 314 315 316 317 318 319 320
  for (const filename of inline) {
    const text = readFileSync(filename, {
      encoding: "utf8"
    });
    targetSourceFile.addStatements(
      debug
        ? `\n// @url ${relative(basePath, filename)}\n\n${text}`
        : `\n${text}`
    );
  }
}

321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
/** Load a set of files into a file system host. */
export function loadFiles(
  project: Project,
  filePaths: string[],
  rebase?: string
): void {
  const fileSystem = project.getFileSystem();
  for (const filePath of filePaths) {
    const fileText = readFileSync(filePath, {
      encoding: "utf8"
    });
    fileSystem.writeFileSync(
      rebase ? join(rebase, basename(filePath)) : filePath,
      fileText
    );
  }
}

339 340 341 342
/**
 * Load and write to a virtual file system all the default libs needed to
 * resolve types on project.
 */
343 344 345 346 347 348
export function loadDtsFiles(
  project: Project,
  compilerOptions: ts.CompilerOptions
): void {
  const libSourcePath = dirname(ts.getDefaultLibFilePath(compilerOptions));
  // TODO (@kitsonk) Add missing libs when ts-morph supports TypeScript 3.4
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
  loadFiles(
    project,
    [
      "lib.es2015.collection.d.ts",
      "lib.es2015.core.d.ts",
      "lib.es2015.d.ts",
      "lib.es2015.generator.d.ts",
      "lib.es2015.iterable.d.ts",
      "lib.es2015.promise.d.ts",
      "lib.es2015.proxy.d.ts",
      "lib.es2015.reflect.d.ts",
      "lib.es2015.symbol.d.ts",
      "lib.es2015.symbol.wellknown.d.ts",
      "lib.es2016.array.include.d.ts",
      "lib.es2016.d.ts",
      "lib.es2017.d.ts",
      "lib.es2017.intl.d.ts",
      "lib.es2017.object.d.ts",
      "lib.es2017.sharedmemory.d.ts",
      "lib.es2017.string.d.ts",
      "lib.es2017.typedarrays.d.ts",
      "lib.es2018.d.ts",
      "lib.es2018.intl.d.ts",
      "lib.es2018.promise.d.ts",
      "lib.es5.d.ts",
      "lib.esnext.d.ts",
      "lib.esnext.array.d.ts",
      "lib.esnext.asynciterable.d.ts",
      "lib.esnext.intl.d.ts",
      "lib.esnext.symbol.d.ts"
379 380
    ].map(fileName => join(libSourcePath, fileName)),
    "node_modules/typescript/lib/"
381 382 383 384 385 386
  );
}

export interface NamespaceSourceFileOptions {
  debug?: boolean;
  namespace?: string;
K
Kitson Kelly 已提交
387
  namespaces: Set<string>;
388 389 390 391 392 393 394 395 396 397
  rootPath: string;
  sourceFileMap: Map<SourceFile, string>;
}

/**
 * Take a source file (`.d.ts`) and convert it to a namespace, resolving any
 * imports as their own namespaces.
 */
export function namespaceSourceFile(
  sourceFile: SourceFile,
K
Kitson Kelly 已提交
398 399 400 401 402 403 404
  {
    debug,
    namespace,
    namespaces,
    rootPath,
    sourceFileMap
  }: NamespaceSourceFileOptions
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
): string {
  if (sourceFileMap.has(sourceFile)) {
    return "";
  }
  if (!namespace) {
    namespace = sourceFile.getBaseNameWithoutExtension();
  }
  sourceFileMap.set(sourceFile, namespace);

  sourceFile.forEachChild(node => {
    if (TypeGuards.isAmbientableNode(node)) {
      node.setHasDeclareKeyword(false);
    }
  });

420
  // TODO need to properly unwrap this
421
  const globalNamespace = sourceFile.getNamespace("global");
422 423 424 425 426 427 428 429 430
  let globalNamespaceText = "";
  if (globalNamespace) {
    const structure = globalNamespace.getStructure();
    if (structure.bodyText && typeof structure.bodyText === "string") {
      globalNamespaceText = structure.bodyText;
    } else {
      throw new TypeError("Unexpected global declaration structure.");
    }
  }
431 432 433 434 435 436
  if (globalNamespace) {
    globalNamespace.remove();
  }

  const output = sourceFile
    .getImportDeclarations()
K
Kitson Kelly 已提交
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
    .filter(declaration => {
      const dsf = declaration.getModuleSpecifierSourceFile();
      if (dsf == null) {
        try {
          const namespaceName = declaration
            .getNamespaceImportOrThrow()
            .getText();
          if (!namespaces.has(namespaceName)) {
            throw createDeclarationError(
              "Already defined source file under different namespace.",
              declaration
            );
          }
        } catch (e) {
          throw createDeclarationError(
452
            `Unsupported import clause: ${e}`,
K
Kitson Kelly 已提交
453 454 455 456 457 458 459
            declaration
          );
        }
        declaration.remove();
      }
      return dsf;
    })
460 461 462 463 464
    .map(declaration => {
      if (
        declaration.getNamedImports().length ||
        !declaration.getNamespaceImport()
      ) {
K
Kitson Kelly 已提交
465
        throw createDeclarationError("Unsupported import clause.", declaration);
466 467 468 469 470 471
      }
      const text = namespaceSourceFile(
        declaration.getModuleSpecifierSourceFileOrThrow(),
        {
          debug,
          namespace: declaration.getNamespaceImportOrThrow().getText(),
K
Kitson Kelly 已提交
472
          namespaces,
473 474 475 476 477 478 479 480 481 482 483 484
          rootPath,
          sourceFileMap
        }
      );
      declaration.remove();
      return text;
    })
    .join("\n");
  sourceFile
    .getExportDeclarations()
    .forEach(declaration => declaration.remove());

K
Kitson Kelly 已提交
485 486
  namespaces.add(namespace);

487 488
  return `${output}
    ${globalNamespaceText || ""}
489 490

    declare namespace ${namespace} {
491 492 493 494 495 496 497 498 499
      ${debug ? getSourceComment(sourceFile, rootPath) : ""}
      ${sourceFile.getText()}
    }`;
}

/** Mirrors TypeScript's handling of paths */
export function normalizeSlashes(path: string): string {
  return path.replace(/\\/g, "/");
}