-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(vscode): Implements readFile/writeFile for workspace.fs
Change-Id: I1626547e72b8230bbc0a1832f682ebc18f2b22dc Signed-off-by: Florent Benoit <fbenoit@redhat.com>
- Loading branch information
Showing
7 changed files
with
152 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
packages/plugin-ext/src/plugin/in-plugin-filesystem-proxy.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/******************************************************************************** | ||
* Copyright (C) 2020 Red Hat, Inc. and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the Eclipse | ||
* Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
* with the GNU Classpath Exception which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
********************************************************************************/ | ||
|
||
import { TextEncoder, TextDecoder } from 'util'; | ||
import { FileSystemMain } from '../common/plugin-api-rpc'; | ||
import { UriComponents } from '../common/uri-components'; | ||
import { FileSystem, FileSystemError } from './types-impl'; | ||
|
||
/** | ||
* This class is managing FileSystem proxy | ||
*/ | ||
export class InPluginFileSystemProxy implements FileSystem { | ||
|
||
private proxy: FileSystemMain; | ||
|
||
constructor(proxy: FileSystemMain) { | ||
this.proxy = proxy; | ||
} | ||
|
||
async readFile(uri: UriComponents): Promise<Uint8Array> { | ||
try { | ||
const val = await this.proxy.$readFile(uri); | ||
return new TextEncoder().encode(val); | ||
} catch (error) { | ||
throw this.handleError(error); | ||
} | ||
} | ||
async writeFile(uri: UriComponents, content: Uint8Array): Promise<void> { | ||
const encoded = new TextDecoder().decode(content); | ||
|
||
try { | ||
await this.proxy.$writeFile(uri, encoded); | ||
} catch (error) { | ||
throw this.handleError(error); | ||
} | ||
} | ||
|
||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
handleError(error: any): Error { | ||
if (!(error instanceof Error)) { | ||
return new FileSystemError(String(error)); | ||
} | ||
|
||
// file system error | ||
return new FileSystemError(error.message, error.name); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters