-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
filesystem-preferences.ts
138 lines (130 loc) · 6.9 KB
/
filesystem-preferences.ts
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// *****************************************************************************
// Copyright (C) 2017 TypeFox 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-only WITH Classpath-exception-2.0
// *****************************************************************************
import { interfaces } from '@theia/core/shared/inversify';
import {
createPreferenceProxy,
PreferenceProxy,
PreferenceService,
PreferenceSchema,
PreferenceContribution
} from '@theia/core/lib/browser/preferences';
import { SUPPORTED_ENCODINGS } from '@theia/core/lib/browser/supported-encodings';
import { nls } from '@theia/core/lib/common/nls';
// See https://github.com/Microsoft/vscode/issues/30180
export const WIN32_MAX_FILE_SIZE_MB = 300; // 300 MB
export const GENERAL_MAX_FILE_SIZE_MB = 16 * 1024; // 16 GB
export const MAX_FILE_SIZE_MB = typeof process === 'object'
? process.arch === 'ia32'
? WIN32_MAX_FILE_SIZE_MB
: GENERAL_MAX_FILE_SIZE_MB
: 32;
export const filesystemPreferenceSchema: PreferenceSchema = {
type: 'object',
properties: {
'files.watcherExclude': {
// eslint-disable-next-line max-len
description: nls.localizeByDefault('Configure paths or [glob patterns](https://aka.ms/vscode-glob-patterns) to exclude from file watching. Paths can either be relative to the watched folder or absolute. Glob patterns are matched relative from the watched folder. When you experience the file watcher process consuming a lot of CPU, make sure to exclude large folders that are of less interest (such as build output folders).'),
additionalProperties: {
type: 'boolean'
},
default: {
'**/.git/objects/**': true,
'**/.git/subtree-cache/**': true
},
scope: 'resource'
},
'files.exclude': {
type: 'object',
default: { '**/.git': true, '**/.svn': true, '**/.hg': true, '**/CVS': true, '**/.DS_Store': true },
// eslint-disable-next-line max-len
markdownDescription: nls.localize('theia/filesystem/filesExclude', 'Configure glob patterns for excluding files and folders. For example, the file Explorer decides which files and folders to show or hide based on this setting.'),
scope: 'resource'
},
'files.enableTrash': {
type: 'boolean',
default: true,
description: nls.localizeByDefault('Moves files/folders to the OS trash (recycle bin on Windows) when deleting. Disabling this will delete files/folders permanently.')
},
'files.associations': {
type: 'object',
markdownDescription: nls.localizeByDefault(
// eslint-disable-next-line max-len
'Configure [glob patterns](https://aka.ms/vscode-glob-patterns) of file associations to languages (for example `\"*.extension\": \"html\"`). Patterns will match on the absolute path of a file if they contain a path separator and will match on the name of the file otherwise. These have precedence over the default associations of the languages installed.'
)
},
'files.autoGuessEncoding': {
type: 'boolean',
default: false,
// eslint-disable-next-line max-len
description: nls.localizeByDefault('When enabled, the editor will attempt to guess the character set encoding when opening files. This setting can also be configured per language. Note, this setting is not respected by text search. Only {0} is respected.', '`#files.encoding#`'),
scope: 'language-overridable',
included: Object.keys(SUPPORTED_ENCODINGS).length > 1
},
'files.participants.timeout': {
type: 'number',
default: 5000,
markdownDescription: nls.localizeByDefault(
'Timeout in milliseconds after which file participants for create, rename, and delete are cancelled. Use `0` to disable participants.'
)
},
'files.maxFileSizeMB': {
type: 'number',
default: MAX_FILE_SIZE_MB,
markdownDescription: nls.localize('theia/filesystem/maxFileSizeMB', 'Controls the max file size in MB which is possible to open.')
},
'files.trimTrailingWhitespace': {
type: 'boolean',
default: false,
description: nls.localizeByDefault('When enabled, will trim trailing whitespace when saving a file.'),
scope: 'language-overridable'
},
'files.maxConcurrentUploads': {
type: 'integer',
default: 1,
description: nls.localize(
'theia/filesystem/maxConcurrentUploads',
'Maximum number of concurrent files to upload when uploading multiple files. 0 means all files will be uploaded concurrently.'
),
}
}
};
export interface FileSystemConfiguration {
'files.watcherExclude': { [globPattern: string]: boolean }
'files.exclude': { [key: string]: boolean }
'files.enableTrash': boolean
'files.associations': { [filepattern: string]: string }
'files.encoding': string
'files.autoGuessEncoding': boolean
'files.participants.timeout': number
'files.maxFileSizeMB': number
'files.trimTrailingWhitespace': boolean
'files.maxConcurrentUploads': number
}
export const FileSystemPreferenceContribution = Symbol('FilesystemPreferenceContribution');
export const FileSystemPreferences = Symbol('FileSystemPreferences');
export type FileSystemPreferences = PreferenceProxy<FileSystemConfiguration>;
export function createFileSystemPreferences(preferences: PreferenceService, schema: PreferenceSchema = filesystemPreferenceSchema): FileSystemPreferences {
return createPreferenceProxy(preferences, schema);
}
export function bindFileSystemPreferences(bind: interfaces.Bind): void {
bind(FileSystemPreferences).toDynamicValue(ctx => {
const preferences = ctx.container.get<PreferenceService>(PreferenceService);
const contribution = ctx.container.get<PreferenceContribution>(FileSystemPreferenceContribution);
return createFileSystemPreferences(preferences, contribution.schema);
}).inSingletonScope();
bind(FileSystemPreferenceContribution).toConstantValue({ schema: filesystemPreferenceSchema });
bind(PreferenceContribution).toService(FileSystemPreferenceContribution);
}