forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhost.ts
More file actions
52 lines (45 loc) · 1.54 KB
/
host.ts
File metadata and controls
52 lines (45 loc) · 1.54 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
/**
* @license
* Copyright Google LLC 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.dev/license
*/
import { lastValueFrom } from 'rxjs';
import { normalize, virtualFs } from '../virtual-fs';
export interface WorkspaceHost {
readFile(path: string): Promise<string>;
writeFile(path: string, data: string): Promise<void>;
isDirectory(path: string): Promise<boolean>;
isFile(path: string): Promise<boolean>;
// Potential future additions
// readDirectory?(path: string): Promise<string[]>;
}
export function createWorkspaceHost(host: virtualFs.Host): WorkspaceHost {
const workspaceHost: WorkspaceHost = {
async readFile(path: string): Promise<string> {
const data = await lastValueFrom(host.read(normalize(path)));
return virtualFs.fileBufferToString(data);
},
async writeFile(path: string, data: string): Promise<void> {
return lastValueFrom(host.write(normalize(path), virtualFs.stringToFileBuffer(data)));
},
async isDirectory(path: string): Promise<boolean> {
try {
return await lastValueFrom(host.isDirectory(normalize(path)));
} catch {
// some hosts throw if path does not exist
return false;
}
},
async isFile(path: string): Promise<boolean> {
try {
return await lastValueFrom(host.isFile(normalize(path)));
} catch {
// some hosts throw if path does not exist
return false;
}
},
};
return workspaceHost;
}