deploy: current vibn theia state
Made-with: Cursor
This commit is contained in:
18
packages/userstorage/src/browser/index.ts
Normal file
18
packages/userstorage/src/browser/index.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
// *****************************************************************************
|
||||
// Copyright (C) 2017 Ericsson 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
|
||||
// *****************************************************************************
|
||||
|
||||
export * from './user-storage-uri';
|
||||
export * from './user-storage-frontend-module';
|
||||
@@ -0,0 +1,77 @@
|
||||
// *****************************************************************************
|
||||
// Copyright (C) 2020 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 { inject, injectable } from '@theia/core/shared/inversify';
|
||||
import URI from '@theia/core/lib/common/uri';
|
||||
import { DisposableCollection } from '@theia/core/lib/common/disposable';
|
||||
import { EnvVariablesServer } from '@theia/core/lib/common/env-variables';
|
||||
import { FileSystemProvider } from '@theia/filesystem/lib/common/files';
|
||||
import { FileService, FileServiceContribution } from '@theia/filesystem/lib/browser/file-service';
|
||||
import { DelegatingFileSystemProvider } from '@theia/filesystem/lib/common/delegating-file-system-provider';
|
||||
import { UserStorageUri } from './user-storage-uri';
|
||||
import { MaybePromise } from '@theia/core';
|
||||
|
||||
@injectable()
|
||||
export class UserStorageContribution implements FileServiceContribution {
|
||||
|
||||
@inject(EnvVariablesServer)
|
||||
protected readonly environments: EnvVariablesServer;
|
||||
|
||||
registerFileSystemProviders(service: FileService): void {
|
||||
service.onWillActivateFileSystemProvider(event => {
|
||||
if (event.scheme === UserStorageUri.scheme) {
|
||||
event.waitUntil((async () => {
|
||||
const provider = await this.createProvider(service);
|
||||
service.registerProvider(UserStorageUri.scheme, provider);
|
||||
})());
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
protected getDelegate(service: FileService): MaybePromise<FileSystemProvider> {
|
||||
return service.activateProvider('file');
|
||||
}
|
||||
|
||||
protected async getCongigDirUri(): Promise<URI> {
|
||||
return new URI(await this.environments.getConfigDirUri());
|
||||
}
|
||||
|
||||
protected async createProvider(service: FileService): Promise<FileSystemProvider> {
|
||||
const delegate = await this.getDelegate(service);
|
||||
const configDirUri = await this.getCongigDirUri();
|
||||
return new DelegatingFileSystemProvider(delegate, {
|
||||
uriConverter: {
|
||||
to: resource => {
|
||||
const relativePath = UserStorageUri.relative(resource);
|
||||
if (relativePath) {
|
||||
return configDirUri.resolve(relativePath).normalizePath();
|
||||
}
|
||||
return undefined;
|
||||
},
|
||||
from: resource => {
|
||||
const relativePath = configDirUri.relative(resource);
|
||||
if (relativePath) {
|
||||
return UserStorageUri.resolve(relativePath);
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
}, new DisposableCollection(
|
||||
delegate.watch(configDirUri, { excludes: [], recursive: true })
|
||||
));
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
// *****************************************************************************
|
||||
// Copyright (C) 2017 Ericsson 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 { ContainerModule } from '@theia/core/shared/inversify';
|
||||
import { FileServiceContribution } from '@theia/filesystem/lib/browser/file-service';
|
||||
import { UserStorageContribution } from './user-storage-contribution';
|
||||
|
||||
export default new ContainerModule(bind => {
|
||||
bind(UserStorageContribution).toSelf().inSingletonScope();
|
||||
bind(FileServiceContribution).toService(UserStorageContribution);
|
||||
});
|
||||
19
packages/userstorage/src/browser/user-storage-uri.ts
Normal file
19
packages/userstorage/src/browser/user-storage-uri.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
// *****************************************************************************
|
||||
// Copyright (C) 2017 Ericsson 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 URI from '@theia/core/lib/common/uri';
|
||||
|
||||
export const UserStorageUri = new URI('user-storage:/user');
|
||||
29
packages/userstorage/src/package.spec.ts
Normal file
29
packages/userstorage/src/package.spec.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
// *****************************************************************************
|
||||
// Copyright (C) 2020 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
|
||||
// *****************************************************************************
|
||||
|
||||
/* note: this bogus test file is required so that
|
||||
we are able to run mocha unit tests on this
|
||||
package, without having any actual unit tests in it.
|
||||
This way a coverage report will be generated,
|
||||
showing 0% coverage, instead of no report.
|
||||
This file can be removed once we have real unit
|
||||
tests in place. */
|
||||
|
||||
describe('userstorage package', () => {
|
||||
|
||||
it('support code coverage statistics', () => true);
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user