@theia/filesystem 1.26.0-next.43 → 1.26.0-next.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/lib/browser/file-tree/file-tree-widget.js +1 -1
  2. package/lib/browser/file-tree/file-tree-widget.js.map +1 -1
  3. package/lib/browser/file-tree/file-tree.d.ts +1 -2
  4. package/lib/browser/file-tree/file-tree.d.ts.map +1 -1
  5. package/lib/browser/file-tree/file-tree.js.map +1 -1
  6. package/lib/browser/filesystem-frontend-module.d.ts.map +1 -1
  7. package/lib/browser/filesystem-frontend-module.js +0 -165
  8. package/lib/browser/filesystem-frontend-module.js.map +1 -1
  9. package/lib/browser/index.d.ts +0 -1
  10. package/lib/browser/index.d.ts.map +1 -1
  11. package/lib/browser/index.js +0 -1
  12. package/lib/browser/index.js.map +1 -1
  13. package/lib/common/filesystem-watcher-protocol.d.ts +1 -22
  14. package/lib/common/filesystem-watcher-protocol.d.ts.map +1 -1
  15. package/lib/common/filesystem-watcher-protocol.js +1 -68
  16. package/lib/common/filesystem-watcher-protocol.js.map +1 -1
  17. package/lib/common/filesystem.d.ts +0 -226
  18. package/lib/common/filesystem.d.ts.map +1 -1
  19. package/lib/common/filesystem.js +1 -48
  20. package/lib/common/filesystem.js.map +1 -1
  21. package/package.json +3 -3
  22. package/src/browser/file-tree/file-tree-widget.tsx +1 -1
  23. package/src/browser/file-tree/file-tree.ts +1 -2
  24. package/src/browser/filesystem-frontend-module.ts +0 -162
  25. package/src/browser/index.ts +0 -1
  26. package/src/common/filesystem-watcher-protocol.ts +1 -67
  27. package/src/common/filesystem.ts +0 -259
  28. package/lib/browser/filesystem-watcher.d.ts +0 -134
  29. package/lib/browser/filesystem-watcher.d.ts.map +0 -1
  30. package/lib/browser/filesystem-watcher.js +0 -240
  31. package/lib/browser/filesystem-watcher.js.map +0 -1
  32. package/lib/node/node-file-upload.d.ts +0 -19
  33. package/lib/node/node-file-upload.d.ts.map +0 -1
  34. package/lib/node/node-file-upload.js +0 -55
  35. package/lib/node/node-file-upload.js.map +0 -1
  36. package/lib/node/nsfw-watcher/nsfw-filesystem-watcher.d.ts +0 -53
  37. package/lib/node/nsfw-watcher/nsfw-filesystem-watcher.d.ts.map +0 -1
  38. package/lib/node/nsfw-watcher/nsfw-filesystem-watcher.js +0 -197
  39. package/lib/node/nsfw-watcher/nsfw-filesystem-watcher.js.map +0 -1
  40. package/src/browser/filesystem-watcher.ts +0 -249
  41. package/src/node/node-file-upload.ts +0 -64
  42. package/src/node/nsfw-watcher/nsfw-filesystem-watcher.ts +0 -255
@@ -1,170 +1,3 @@
1
- import { TextDocumentContentChangeEvent } from '@theia/core/shared/vscode-languageserver-protocol';
2
- import { ApplicationError } from '@theia/core/lib/common';
3
- /**
4
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService` instead
5
- */
6
- export declare const FileSystem: unique symbol;
7
- export interface FileSystem {
8
- /**
9
- * Returns the file stat for the given URI.
10
- *
11
- * If the uri points to a folder it will contain one level of unresolved children.
12
- *
13
- * `undefined` if a file for the given URI does not exist.
14
- *
15
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService.resolve` instead
16
- */
17
- getFileStat(uri: string): Promise<FileStat | undefined>;
18
- /**
19
- * Finds out if a file identified by the resource exists.
20
- *
21
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService.exists` instead
22
- */
23
- exists(uri: string): Promise<boolean>;
24
- /**
25
- * Resolve the contents of a file identified by the resource.
26
- *
27
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService.read` instead
28
- */
29
- resolveContent(uri: string, options?: {
30
- encoding?: string;
31
- }): Promise<{
32
- stat: FileStat;
33
- content: string;
34
- }>;
35
- /**
36
- * Updates the content replacing its previous value.
37
- *
38
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService.write` instead
39
- */
40
- setContent(file: FileStat, content: string, options?: {
41
- encoding?: string;
42
- }): Promise<FileStat>;
43
- /**
44
- * Updates the content replacing its previous value.
45
- *
46
- * The optional parameter `overwriteEncoding` can be used to transform the encoding of a file.
47
- *
48
- * | | encoding | overwriteEncoding | behaviour |
49
- * |---|----------|-------------------|-----------|
50
- * | 1 | undefined | undefined | read & write file in default encoding |
51
- * | 2 | undefined | ✓ | read file in default encoding; write file in `overwriteEncoding` |
52
- * | 3 | ✓ | undefined | read & write file in `encoding` |
53
- * | 4 | ✓ | ✓ | read file in `encoding`; write file in `overwriteEncoding` |
54
- *
55
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService.write` instead
56
- */
57
- updateContent(file: FileStat, contentChanges: TextDocumentContentChangeEvent[], options?: {
58
- encoding?: string;
59
- overwriteEncoding?: string;
60
- }): Promise<FileStat>;
61
- /**
62
- * Moves the file to a new path identified by the resource.
63
- *
64
- * The optional parameter overwrite can be set to replace an existing file at the location.
65
- *
66
- * | | missing | file | empty dir | dir |
67
- * |-----------|---------|------|-----------|-----------|
68
- * | missing | x | x | x | x |
69
- * | file | ✓ | x | x | x |
70
- * | empty dir | ✓ | x | x | overwrite |
71
- * | dir | ✓ | x | overwrite | overwrite |
72
- *
73
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService.move` instead
74
- */
75
- move(sourceUri: string, targetUri: string, options?: FileMoveOptions): Promise<FileStat>;
76
- /**
77
- * Copies the file to a path identified by the resource.
78
- *
79
- * The optional parameter overwrite can be set to replace an existing file at the location.
80
- *
81
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService.copy` instead
82
- */
83
- copy(sourceUri: string, targetUri: string, options?: {
84
- overwrite?: boolean;
85
- recursive?: boolean;
86
- }): Promise<FileStat>;
87
- /**
88
- * Creates a new file with the given path. The returned promise
89
- * will have the stat model object as a result.
90
- *
91
- * The optional parameter content can be used as value to fill into the new file.
92
- *
93
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService.create` instead
94
- */
95
- createFile(uri: string, options?: {
96
- content?: string;
97
- encoding?: string;
98
- }): Promise<FileStat>;
99
- /**
100
- * Creates a new folder with the given path. The returned promise
101
- * will have the stat model object as a result.
102
- *
103
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService.createFolder` instead
104
- */
105
- createFolder(uri: string): Promise<FileStat>;
106
- /**
107
- * Creates a new empty file if the given path does not exist and otherwise
108
- * will set the mtime and atime of the file to the current date.
109
- */
110
- touchFile(uri: string): Promise<FileStat>;
111
- /**
112
- * Deletes the provided file. The optional moveToTrash parameter allows to
113
- * move the file to trash.
114
- *
115
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService.delete` instead
116
- */
117
- delete(uri: string, options?: FileDeleteOptions): Promise<void>;
118
- /**
119
- * Returns the encoding of the given file resource.
120
- *
121
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908) use `FileService.read` without `autoGuessEncoding` option instead
122
- */
123
- getEncoding(uri: string): Promise<string>;
124
- /**
125
- * Guess encoding of a given file based on its content.
126
- *
127
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService.read` with `autoGuessEncoding` option instead
128
- */
129
- guessEncoding(uri: string): Promise<string | undefined>;
130
- /**
131
- * Return list of available roots.
132
- */
133
- getRoots(): Promise<FileStat[]>;
134
- /**
135
- * Returns a promise that resolves to a file stat representing the current user's home directory.
136
- *
137
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `EnvVariablesServer.getHomeDirUri` instead
138
- */
139
- getCurrentUserHome(): Promise<FileStat | undefined>;
140
- /**
141
- * Resolves to an array of URIs pointing to the available drives on the filesystem.
142
- *
143
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `EnvVariablesServer.getDrives` instead
144
- */
145
- getDrives(): Promise<string[]>;
146
- /**
147
- * Tests a user's permissions for the file or directory specified by URI.
148
- * The mode argument is an optional integer that specifies the accessibility checks to be performed.
149
- * Check `FileAccess.Constants` for possible values of mode.
150
- * It is possible to create a mask consisting of the bitwise `OR` of two or more values (e.g. FileAccess.Constants.W_OK | FileAccess.Constants.R_OK).
151
- * If `mode` is not defined, `FileAccess.Constants.F_OK` will be used instead.
152
- *
153
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService.access` instead
154
- */
155
- access(uri: string, mode?: number): Promise<boolean>;
156
- /**
157
- * Returns the path of the given file URI, specific to the backend's operating system.
158
- * If the URI is not a file URI, undefined is returned.
159
- *
160
- * USE WITH CAUTION: You should always prefer URIs to paths if possible, as they are
161
- * portable and platform independent. Paths should only be used in cases you directly
162
- * interact with the OS, e.g. when running a command on the shell.
163
- *
164
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService.fsPath` instead
165
- */
166
- getFsPath(uri: string): Promise<string | undefined>;
167
- }
168
1
  export declare namespace FileAccess {
169
2
  namespace Constants {
170
3
  /**
@@ -187,63 +20,4 @@ export declare namespace FileAccess {
187
20
  const X_OK: number;
188
21
  }
189
22
  }
190
- export interface FileMoveOptions {
191
- overwrite?: boolean;
192
- }
193
- export interface FileDeleteOptions {
194
- moveToTrash?: boolean;
195
- }
196
- /**
197
- * A file resource with meta information.
198
- *
199
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileStat` from `@theia/filesystem/lib/common/files` instead
200
- */
201
- export interface FileStat {
202
- /**
203
- * The URI of the file.
204
- */
205
- uri: string;
206
- /**
207
- * The last modification of this file.
208
- */
209
- lastModification: number;
210
- /**
211
- * `true` if the resource is a directory. Otherwise, `false`.
212
- */
213
- isDirectory: boolean;
214
- /**
215
- * The children of the file stat.
216
- * If it is `undefined` and `isDirectory` is `true`, then this file stat is unresolved.
217
- */
218
- children?: FileStat[];
219
- /**
220
- * The size of the file if known.
221
- */
222
- size?: number;
223
- }
224
- export declare namespace FileStat {
225
- function is(candidate: Object | undefined): candidate is FileStat;
226
- function equals(one: object | undefined, other: object | undefined): boolean;
227
- }
228
- /**
229
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileOperationError` instead
230
- */
231
- export declare namespace FileSystemError {
232
- const FileNotFound: ApplicationError.Constructor<-33000, {
233
- uri: string;
234
- }>;
235
- const FileExists: ApplicationError.Constructor<-33001, {
236
- uri: string;
237
- }>;
238
- const FileIsDirectory: ApplicationError.Constructor<-33002, {
239
- uri: string;
240
- }>;
241
- const FileNotDirectory: ApplicationError.Constructor<-33003, {
242
- uri: string;
243
- }>;
244
- const FileIsOutOfSync: ApplicationError.Constructor<-33004, {
245
- file: FileStat;
246
- stat: FileStat;
247
- }>;
248
- }
249
23
  //# sourceMappingURL=filesystem.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"filesystem.d.ts","sourceRoot":"","sources":["../../src/common/filesystem.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"filesystem.d.ts","sourceRoot":"","sources":["../../src/common/filesystem.ts"],"names":[],"mappings":"AAgBA,yBAAiB,UAAU,CAAC;IAExB,UAAiB,SAAS,CAAC;QAEvB;;;WAGG;QACI,MAAM,IAAI,EAAE,MAAU,CAAC;QAE9B;;WAEG;QACI,MAAM,IAAI,EAAE,MAAU,CAAC;QAE9B;;WAEG;QACI,MAAM,IAAI,EAAE,MAAU,CAAC;QAE9B;;;WAGG;QACI,MAAM,IAAI,EAAE,MAAU,CAAC;KACjC;CACJ"}
@@ -15,12 +15,7 @@
15
15
  // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
16
16
  // *****************************************************************************
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
- exports.FileSystemError = exports.FileStat = exports.FileAccess = exports.FileSystem = void 0;
19
- const common_1 = require("@theia/core/lib/common");
20
- /**
21
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileService` instead
22
- */
23
- exports.FileSystem = Symbol('FileSystem');
18
+ exports.FileAccess = void 0;
24
19
  var FileAccess;
25
20
  (function (FileAccess) {
26
21
  let Constants;
@@ -45,46 +40,4 @@ var FileAccess;
45
40
  Constants.X_OK = 1;
46
41
  })(Constants = FileAccess.Constants || (FileAccess.Constants = {}));
47
42
  })(FileAccess = exports.FileAccess || (exports.FileAccess = {}));
48
- var FileStat;
49
- (function (FileStat) {
50
- function is(candidate) {
51
- return typeof candidate === 'object' && ('uri' in candidate) && ('lastModification' in candidate) && ('isDirectory' in candidate);
52
- }
53
- FileStat.is = is;
54
- function equals(one, other) {
55
- if (!one || !other || !is(one) || !is(other)) {
56
- return false;
57
- }
58
- return one.uri === other.uri
59
- && one.lastModification === other.lastModification
60
- && one.isDirectory === other.isDirectory;
61
- }
62
- FileStat.equals = equals;
63
- })(FileStat = exports.FileStat || (exports.FileStat = {}));
64
- /**
65
- * @deprecated since 1.4.0 - in order to support VS Code FS API (https://github.com/eclipse-theia/theia/pull/7908), use `FileOperationError` instead
66
- */
67
- var FileSystemError;
68
- (function (FileSystemError) {
69
- FileSystemError.FileNotFound = common_1.ApplicationError.declare(-33000, (uri, prefix) => ({
70
- message: `${prefix ? prefix + ' ' : ''}'${uri}' has not been found.`,
71
- data: { uri }
72
- }));
73
- FileSystemError.FileExists = common_1.ApplicationError.declare(-33001, (uri, prefix) => ({
74
- message: `${prefix ? prefix + ' ' : ''}'${uri}' already exists.`,
75
- data: { uri }
76
- }));
77
- FileSystemError.FileIsDirectory = common_1.ApplicationError.declare(-33002, (uri, prefix) => ({
78
- message: `${prefix ? prefix + ' ' : ''}'${uri}' is a directory.`,
79
- data: { uri }
80
- }));
81
- FileSystemError.FileNotDirectory = common_1.ApplicationError.declare(-33003, (uri, prefix) => ({
82
- message: `${prefix ? prefix + ' ' : ''}'${uri}' is not a directory.`,
83
- data: { uri }
84
- }));
85
- FileSystemError.FileIsOutOfSync = common_1.ApplicationError.declare(-33004, (file, stat) => ({
86
- message: `'${file.uri}' is out of sync.`,
87
- data: { file, stat }
88
- }));
89
- })(FileSystemError = exports.FileSystemError || (exports.FileSystemError = {}));
90
43
  //# sourceMappingURL=filesystem.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"filesystem.js","sourceRoot":"","sources":["../../src/common/filesystem.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"filesystem.js","sourceRoot":"","sources":["../../src/common/filesystem.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yCAAyC;AACzC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,2EAA2E;AAC3E,gFAAgF;;;AAEhF,IAAiB,UAAU,CA0B1B;AA1BD,WAAiB,UAAU;IAEvB,IAAiB,SAAS,CAuBzB;IAvBD,WAAiB,SAAS;QAEtB;;;WAGG;QACU,cAAI,GAAW,CAAC,CAAC;QAE9B;;WAEG;QACU,cAAI,GAAW,CAAC,CAAC;QAE9B;;WAEG;QACU,cAAI,GAAW,CAAC,CAAC;QAE9B;;;WAGG;QACU,cAAI,GAAW,CAAC,CAAC;IAClC,CAAC,EAvBgB,SAAS,GAAT,oBAAS,KAAT,oBAAS,QAuBzB;AACL,CAAC,EA1BgB,UAAU,GAAV,kBAAU,KAAV,kBAAU,QA0B1B"}
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@theia/filesystem",
3
- "version": "1.26.0-next.43+9a10b6b5daa",
3
+ "version": "1.26.0-next.44+4099a4ec58f",
4
4
  "description": "Theia - FileSystem Extension",
5
5
  "dependencies": {
6
- "@theia/core": "1.26.0-next.43+9a10b6b5daa",
6
+ "@theia/core": "1.26.0-next.44+4099a4ec58f",
7
7
  "@types/body-parser": "^1.17.0",
8
8
  "@types/multer": "^1.4.7",
9
9
  "@types/rimraf": "^2.0.2",
@@ -68,5 +68,5 @@
68
68
  "nyc": {
69
69
  "extends": "../../configs/nyc.json"
70
70
  },
71
- "gitHead": "9a10b6b5daab5e046f28fde8803b3612e84f6ff4"
71
+ "gitHead": "4099a4ec58f8573a36b32514d37b7d8541db7030"
72
72
  }
@@ -280,7 +280,7 @@ export class FileTreeWidget extends CompressedTreeWidget {
280
280
  if (node.fileStat) {
281
281
  stat = {
282
282
  type: node.fileStat.isDirectory ? FileType.Directory : FileType.File,
283
- mtime: node.fileStat.lastModification,
283
+ mtime: node.fileStat.mtime,
284
284
  size: node.fileStat.size
285
285
  };
286
286
  delete node['fileStat'];
@@ -19,7 +19,6 @@ import URI from '@theia/core/lib/common/uri';
19
19
  import { TreeNode, CompositeTreeNode, SelectableTreeNode, ExpandableTreeNode, TreeImpl } from '@theia/core/lib/browser';
20
20
  import { Mutable } from '@theia/core/lib/common/types';
21
21
  import { FileStat, Stat, FileType, FileOperationError, FileOperationResult } from '../../common/files';
22
- import { FileStat as DeprecatedFileStat } from '../../common/filesystem';
23
22
  import { UriSelection } from '@theia/core/lib/common/selection';
24
23
  import { MessageService } from '@theia/core/lib/common/message-service';
25
24
  import { FileSelection } from '../file-selection';
@@ -117,7 +116,7 @@ export namespace FileStatNode {
117
116
  export type FileStatNodeData = Omit<FileStatNode, 'uri' | 'fileStat'> & {
118
117
  uri: string
119
118
  stat?: Stat | { type: FileType } & Partial<Stat>
120
- fileStat?: DeprecatedFileStat
119
+ fileStat?: FileStat
121
120
  };
122
121
  export namespace FileStatNodeData {
123
122
  export function is(node: object | undefined): node is FileStatNodeData {
@@ -21,21 +21,14 @@ import { ResourceResolver, CommandContribution } from '@theia/core/lib/common';
21
21
  import { WebSocketConnectionProvider, FrontendApplicationContribution, LabelProviderContribution, BreadcrumbsContribution } from '@theia/core/lib/browser';
22
22
  import { FileResourceResolver } from './file-resource';
23
23
  import { bindFileSystemPreferences } from './filesystem-preferences';
24
- import { FileSystemWatcher } from './filesystem-watcher';
25
24
  import { FileSystemFrontendContribution } from './filesystem-frontend-contribution';
26
25
  import { FileUploadService } from './file-upload-service';
27
26
  import { FileTreeDecoratorAdapter, FileTreeLabelProvider } from './file-tree';
28
27
  import { FileService, FileServiceContribution } from './file-service';
29
28
  import { RemoteFileSystemProvider, RemoteFileSystemServer, remoteFileSystemPath, RemoteFileSystemProxyFactory } from '../common/remote-file-system-provider';
30
- import { FileSystem, FileStat, FileMoveOptions, FileDeleteOptions, FileSystemError } from '../common/filesystem';
31
- import URI from '@theia/core/lib/common/uri';
32
- import { FileOperationError, FileOperationResult, BaseStatWithMetadata, FileStatWithMetadata, etag } from '../common/files';
33
- import { TextDocumentContentChangeEvent } from '@theia/core/shared/vscode-languageserver-protocol';
34
- import { EnvVariablesServer } from '@theia/core/lib/common/env-variables';
35
29
  import { bindContributionProvider } from '@theia/core/lib/common/contribution-provider';
36
30
  import { RemoteFileServiceContribution } from './remote-file-service-contribution';
37
31
  import { FileSystemWatcherErrorHandler } from './filesystem-watcher-error-handler';
38
- import { UTF8 } from '@theia/core/lib/common/encodings';
39
32
  import { FilepathBreadcrumbsContribution } from './breadcrumbs/filepath-breadcrumbs-contribution';
40
33
  import { BreadcrumbsFileTreeWidget, createFileTreeBreadcrumbsWidget } from './breadcrumbs/filepath-breadcrumbs-container';
41
34
  import { FilesystemSaveResourceService } from './filesystem-save-resource-service';
@@ -54,163 +47,8 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
54
47
  bind(RemoteFileServiceContribution).toSelf().inSingletonScope();
55
48
  bind(FileServiceContribution).toService(RemoteFileServiceContribution);
56
49
 
57
- bind(FileSystemWatcher).toSelf().inSingletonScope();
58
50
  bind(FileSystemWatcherErrorHandler).toSelf().inSingletonScope();
59
51
 
60
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
61
- bind(FileSystem).toDynamicValue(({ container }) => {
62
- const fileService = container.get(FileService);
63
- const environments = container.get<EnvVariablesServer>(EnvVariablesServer);
64
- const convertStat: (stat: BaseStatWithMetadata | FileStatWithMetadata) => FileStat = stat => ({
65
- uri: stat.resource.toString(),
66
- lastModification: stat.mtime,
67
- size: stat.size,
68
- isDirectory: 'isDirectory' in stat && stat.isDirectory,
69
- children: 'children' in stat ? stat.children?.map(convertStat) : undefined
70
- });
71
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
72
- const rethrowError: (uri: string, error: any) => never = (uri, error) => {
73
- if (error instanceof FileOperationError) {
74
- if (error.fileOperationResult === FileOperationResult.FILE_NOT_FOUND) {
75
- throw FileSystemError.FileNotFound(uri);
76
- }
77
- if (error.fileOperationResult === FileOperationResult.FILE_IS_DIRECTORY) {
78
- throw FileSystemError.FileIsDirectory(uri);
79
- }
80
- if (error.fileOperationResult === FileOperationResult.FILE_NOT_DIRECTORY) {
81
- throw FileSystemError.FileNotDirectory(uri);
82
- }
83
- if (error.fileOperationResult === FileOperationResult.FILE_MODIFIED_SINCE) {
84
- throw FileSystemError.FileIsOutOfSync(uri);
85
- }
86
- }
87
- throw error;
88
- };
89
- return new class implements FileSystem {
90
- async getFileStat(uri: string): Promise<FileStat | undefined> {
91
- try {
92
- const stat = await fileService.resolve(new URI(uri), { resolveMetadata: true });
93
- return convertStat(stat);
94
- } catch (e) {
95
- if (e instanceof FileOperationError && e.fileOperationResult === FileOperationResult.FILE_NOT_FOUND) {
96
- return undefined;
97
- }
98
- rethrowError(uri, e);
99
- }
100
- }
101
- exists(uri: string): Promise<boolean> {
102
- return fileService.exists(new URI(uri));
103
- }
104
- async resolveContent(uri: string, options?: { encoding?: string | undefined; } | undefined): Promise<{ stat: FileStat; content: string; }> {
105
- try {
106
- const content = await fileService.read(new URI(uri), options);
107
- return {
108
- stat: convertStat(content),
109
- content: content.value
110
- };
111
- } catch (e) {
112
- rethrowError(uri, e);
113
- }
114
- }
115
- async setContent(file: FileStat, content: string, options?: { encoding?: string | undefined; } | undefined): Promise<FileStat> {
116
- try {
117
- const result = await fileService.write(new URI(file.uri), content, {
118
- ...options,
119
- mtime: file.lastModification
120
- });
121
- return convertStat(result);
122
- } catch (e) {
123
- rethrowError(file.uri, e);
124
- }
125
- }
126
- async updateContent(file: FileStat, contentChanges: TextDocumentContentChangeEvent[], options?: {
127
- encoding?: string | undefined;
128
- overwriteEncoding?: string | undefined;
129
- } | undefined): Promise<FileStat> {
130
- try {
131
- const result = await fileService.update(new URI(file.uri), contentChanges, {
132
- mtime: file.lastModification,
133
- etag: etag({ size: file.size, mtime: file.lastModification }),
134
- readEncoding: options?.encoding || UTF8,
135
- encoding: options?.overwriteEncoding,
136
- overwriteEncoding: !!options?.overwriteEncoding
137
- });
138
- return convertStat(result);
139
- } catch (e) {
140
- rethrowError(file.uri, e);
141
- }
142
- }
143
- async move(sourceUri: string, targetUri: string, options?: FileMoveOptions | undefined): Promise<FileStat> {
144
- try {
145
- const result = await fileService.move(new URI(sourceUri), new URI(targetUri), options);
146
- return convertStat(result);
147
- } catch (e) {
148
- rethrowError(sourceUri, e);
149
- }
150
- }
151
- async copy(sourceUri: string, targetUri: string, options?: { overwrite?: boolean | undefined; recursive?: boolean | undefined; } | undefined): Promise<FileStat> {
152
- try {
153
- const result = await fileService.copy(new URI(sourceUri), new URI(targetUri), options);
154
- return convertStat(result);
155
- } catch (e) {
156
- rethrowError(sourceUri, e);
157
- }
158
- }
159
- async createFile(uri: string, options?: { content?: string | undefined; encoding?: string | undefined; } | undefined): Promise<FileStat> {
160
- try {
161
- const result = await fileService.create(new URI(uri), options?.content, { encoding: options?.encoding });
162
- return convertStat(result);
163
- } catch (e) {
164
- rethrowError(uri, e);
165
- }
166
- }
167
- async createFolder(uri: string): Promise<FileStat> {
168
- try {
169
- const result = await fileService.createFolder(new URI(uri));
170
- return convertStat(result);
171
- } catch (e) {
172
- rethrowError(uri, e);
173
- }
174
- }
175
- touchFile(uri: string): Promise<FileStat> {
176
- throw new Error('Method not implemented.');
177
- }
178
- async delete(uri: string, options?: FileDeleteOptions | undefined): Promise<void> {
179
- try {
180
- return await fileService.delete(new URI(uri), { useTrash: options?.moveToTrash, recursive: true });
181
- } catch (e) {
182
- rethrowError(uri, e);
183
- }
184
- }
185
- async getEncoding(uri: string): Promise<string> {
186
- const { encoding } = await fileService.read(new URI(uri));
187
- return encoding;
188
- }
189
- async guessEncoding(uri: string): Promise<string | undefined> {
190
- const { encoding } = await fileService.read(new URI(uri), { autoGuessEncoding: true });
191
- return encoding;
192
- }
193
- async getRoots(): Promise<FileStat[]> {
194
- const drives = await environments.getDrives();
195
- const roots = await Promise.all(drives.map(uri => this.getFileStat(uri)));
196
- return roots.filter(root => !!root) as FileStat[];
197
- }
198
- async getCurrentUserHome(): Promise<FileStat | undefined> {
199
- return this.getFileStat(await environments.getHomeDirUri());
200
- }
201
- getDrives(): Promise<string[]> {
202
- return environments.getDrives();
203
- }
204
- access(uri: string, mode?: number | undefined): Promise<boolean> {
205
- return fileService.access(new URI(uri), mode);
206
- }
207
- getFsPath(uri: string): Promise<string | undefined> {
208
- return fileService.fsPath(new URI(uri));
209
- }
210
-
211
- };
212
- }).inSingletonScope();
213
-
214
52
  bindFileResource(bind);
215
53
 
216
54
  bind(FileUploadService).toSelf().inSingletonScope();
@@ -18,5 +18,4 @@ export * from './location';
18
18
  export * from './file-tree';
19
19
  export * from './file-dialog';
20
20
  export * from './filesystem-preferences';
21
- export * from './filesystem-watcher';
22
21
  export * from './file-resource';
@@ -14,8 +14,7 @@
14
14
  // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
15
15
  // *****************************************************************************
16
16
 
17
- import { injectable, inject } from '@theia/core/shared/inversify';
18
- import { JsonRpcServer, JsonRpcProxy } from '@theia/core';
17
+ import { JsonRpcServer } from '@theia/core';
19
18
  import { FileChangeType } from './files';
20
19
  export { FileChangeType };
21
20
 
@@ -95,68 +94,3 @@ export interface FileChange {
95
94
  uri: string;
96
95
  type: FileChangeType;
97
96
  }
98
-
99
- export const FileSystemWatcherServerProxy = Symbol('FileSystemWatcherServerProxy');
100
- export type FileSystemWatcherServerProxy = JsonRpcProxy<FileSystemWatcherServer>;
101
-
102
- /**
103
- * @deprecated not used internally anymore.
104
- */
105
- @injectable()
106
- export class ReconnectingFileSystemWatcherServer implements FileSystemWatcherServer {
107
-
108
- protected watcherSequence = 1;
109
- protected readonly watchParams = new Map<number, {
110
- uri: string;
111
- options?: WatchOptions
112
- }>();
113
- protected readonly localToRemoteWatcher = new Map<number, number>();
114
-
115
- constructor(
116
- @inject(FileSystemWatcherServerProxy) protected readonly proxy: FileSystemWatcherServerProxy
117
- ) {
118
- const onInitialized = this.proxy.onDidOpenConnection(() => {
119
- // skip reconnection on the first connection
120
- onInitialized.dispose();
121
- this.proxy.onDidOpenConnection(() => this.reconnect());
122
- });
123
- }
124
-
125
- protected reconnect(): void {
126
- for (const [watcher, { uri, options }] of this.watchParams.entries()) {
127
- this.doWatchFileChanges(watcher, uri, options);
128
- }
129
- }
130
-
131
- dispose(): void {
132
- this.proxy.dispose();
133
- }
134
-
135
- watchFileChanges(uri: string, options?: WatchOptions): Promise<number> {
136
- const watcher = this.watcherSequence++;
137
- this.watchParams.set(watcher, { uri, options });
138
- return this.doWatchFileChanges(watcher, uri, options);
139
- }
140
-
141
- protected doWatchFileChanges(watcher: number, uri: string, options?: WatchOptions): Promise<number> {
142
- return this.proxy.watchFileChanges(uri, options).then(remote => {
143
- this.localToRemoteWatcher.set(watcher, remote);
144
- return watcher;
145
- });
146
- }
147
-
148
- unwatchFileChanges(watcher: number): Promise<void> {
149
- this.watchParams.delete(watcher);
150
- const remote = this.localToRemoteWatcher.get(watcher);
151
- if (remote) {
152
- this.localToRemoteWatcher.delete(watcher);
153
- return this.proxy.unwatchFileChanges(remote);
154
- }
155
- return Promise.resolve();
156
- }
157
-
158
- setClient(client: FileSystemWatcherClient | undefined): void {
159
- this.proxy.setClient(client);
160
- }
161
-
162
- }