angular-cli/packages/angular/cli/models/workspace-loader.ts

93 lines
3.0 KiB
TypeScript

/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {
Path,
basename,
dirname,
experimental,
join,
normalize,
virtualFs,
} from '@angular-devkit/core';
import * as fs from 'fs';
import { homedir } from 'os';
import { Observable, of } from 'rxjs';
import { concatMap, tap } from 'rxjs/operators';
import { findUp } from '../utilities/find-up';
// TODO: error out instead of returning null when workspace cannot be found.
export class WorkspaceLoader {
private _workspaceCacheMap = new Map<string, experimental.workspace.Workspace>();
// TODO: add remaining fallbacks.
private _configFileNames = [
normalize('.angular.json'),
normalize('angular.json'),
];
constructor(private _host: virtualFs.Host) { }
loadGlobalWorkspace(): Observable<experimental.workspace.Workspace | null> {
return this._getGlobalWorkspaceFilePath().pipe(
concatMap(globalWorkspacePath => this._loadWorkspaceFromPath(globalWorkspacePath)),
);
}
loadWorkspace(projectPath?: string): Observable<experimental.workspace.Workspace | null> {
return this._getProjectWorkspaceFilePath(projectPath).pipe(
concatMap(globalWorkspacePath => this._loadWorkspaceFromPath(globalWorkspacePath)),
);
}
// TODO: do this with the host instead of fs.
private _getProjectWorkspaceFilePath(projectPath?: string): Observable<Path | null> {
// Find the workspace file, either where specified, in the Angular CLI project
// (if it's in node_modules) or from the current process.
const workspaceFilePath = (projectPath && findUp(this._configFileNames, projectPath))
|| findUp(this._configFileNames, process.cwd())
|| findUp(this._configFileNames, __dirname);
if (workspaceFilePath) {
return of(normalize(workspaceFilePath));
} else {
throw new Error(`Local workspace file ('angular.json') could not be found.`);
}
}
// TODO: do this with the host instead of fs.
private _getGlobalWorkspaceFilePath(): Observable<Path | null> {
for (const fileName of this._configFileNames) {
const workspaceFilePath = join(normalize(homedir()), fileName);
if (fs.existsSync(workspaceFilePath)) {
return of(normalize(workspaceFilePath));
}
}
return of(null);
}
private _loadWorkspaceFromPath(workspacePath: Path | null) {
if (!workspacePath) {
return of(null);
}
if (this._workspaceCacheMap.has(workspacePath)) {
return of(this._workspaceCacheMap.get(workspacePath) || null);
}
const workspaceRoot = dirname(workspacePath);
const workspaceFileName = basename(workspacePath);
const workspace = new experimental.workspace.Workspace(workspaceRoot, this._host);
return workspace.loadWorkspaceFromHost(workspaceFileName).pipe(
tap(workspace => this._workspaceCacheMap.set(workspacePath, workspace)),
);
}
}