/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import 'vs/workbench/workbench.web.main';
import { main } from 'vs/workbench/browser/web.main';
import { UriComponents, URI } from 'vs/base/common/uri';
import { IFileSystemProvider, FileSystemProviderCapabilities, IFileChange, FileChangeType } from 'vs/platform/files/common/files';
import { IWebSocketFactory, IWebSocket } from 'vs/platform/remote/browser/browserSocketFactory';
import { IExtensionManifest } from 'vs/platform/extensions/common/extensions';
import { IURLCallbackProvider } from 'vs/workbench/services/url/browser/urlService';
import { LogLevel } from 'vs/platform/log/common/log';
import { IUpdateProvider, IUpdate } from 'vs/workbench/services/update/browser/updateService';
import { Event, Emitter } from 'vs/base/common/event';
import { Disposable, IDisposable, toDisposable } from 'vs/base/common/lifecycle';
import { IWorkspaceProvider, IWorkspace } from 'vs/workbench/services/host/browser/browserHostService';
import { CommandsRegistry } from 'vs/platform/commands/common/commands';
import { IProductConfiguration } from 'vs/platform/product/common/productService';
import { mark } from 'vs/base/common/performance';
import { ICredentialsProvider } from 'vs/workbench/services/credentials/common/credentials';
interface IResourceUriProvider {
(uri: URI): URI;
}
interface IStaticExtension {
packageJSON: IExtensionManifest;
extensionLocation: URI;
isBuiltin?: boolean;
interface ICommonTelemetryPropertiesResolver {
(): { [key: string]: any };
interface IExternalUriResolver {
(uri: URI): Promise<URI>;
interface ITunnelProvider {
/**
* Support for creating tunnels.
*/
tunnelFactory?: ITunnelFactory;
* Support for filtering candidate ports
showPortCandidate?: IShowPortCandidate;
interface ITunnelFactory {
(tunnelOptions: ITunnelOptions, tunnelCreationOptions: TunnelCreationOptions): Promise<ITunnel> | undefined;
interface ITunnelOptions {
remoteAddress: { port: number, host: string };
* The desired local port. If this port can't be used, then another will be chosen.
localAddressPort?: number;
label?: string;
export interface TunnelCreationOptions {
* True when the local operating system will require elevation to use the requested local port.
elevationRequired?: boolean;
interface ITunnel extends IDisposable {
* The complete local address(ex. localhost:1234)
localAddress: string;
* Implementers of Tunnel should fire onDidDispose when dispose is called.
onDidDispose: Event<void>;
interface IShowPortCandidate {
(host: string, port: number, detail: string): Promise<boolean>;
interface ICommand {
* An identifier for the command. Commands can be executed from extensions
* using the `vscode.commands.executeCommand` API using that command ID.
id: string,
* A function that is being executed with any arguments passed over. The
* return type will be send back to the caller.
*
* Note: arguments and return type should be serializable so that they can
* be exchanged across processes boundaries.
handler: (...args: any[]) => unknown;
interface IHomeIndicator {
* The link to open when clicking the home indicator.
href: string;
* The icon name for the home indicator. This needs to be one of the existing
* icons from our Codicon icon set. For example `sync`.
icon: string;
* A tooltip that will appear while hovering over the home indicator.
title: string;
interface IWindowIndicator {
* Triggering this event will cause the window indicator to update.
onDidChange: Event<void>;
* Label of the window indicator may include octicons
* e.g. `$(remote) label`
label: string;
* Tooltip of the window indicator should not include
* octicons and be descriptive.
tooltip: string;
* If provided, overrides the default command that
* is executed when clicking on the window indicator.
command?: string;
enum ColorScheme {
DARK = 'dark',
LIGHT = 'light',
HIGH_CONTRAST = 'hc'
interface IInitialColorTheme {
* Initial color theme type.
themeType: ColorScheme;
* A list of workbench colors to apply initially.
colors?: { [colorId: string]: string };
interface IDefaultSideBarLayout {
visible?: boolean;
containers?: ({
id: 'explorer' | 'run' | 'scm' | 'search' | 'extensions' | 'remote' | string;
active: true;
order?: number;
views?: {
id: string;
collapsed?: boolean;
}[];
} | {
active?: false;
})[];
interface IDefaultPanelLayout {
id: 'terminal' | 'debug' | 'problems' | 'output' | 'comments' | string;
interface IDefaultView {
readonly id: string;
interface IDefaultEditor {
readonly uri: UriComponents;
readonly openOnlyIfExists?: boolean;
readonly openWith?: string;
interface IDefaultLayout {
readonly views?: IDefaultView[];
readonly editors?: IDefaultEditor[];
interface IProductQualityChangeHandler {
* Handler is being called when the user wants to switch between
* `insider` or `stable` product qualities.
(newQuality: 'insider' | 'stable'): void;
* Settings sync options
interface ISettingsSyncOptions {
* Is settings sync enabled
readonly enabled: boolean;
* Handler is being called when the user changes Settings Sync enablement.
enablementHandler?(enablement: boolean): void;
interface IWorkbenchConstructionOptions {
//#region Connection related configuration
* The remote authority is the IP:PORT from where the workbench is served
* from. It is for example being used for the websocket connections as address.
readonly remoteAuthority?: string;
* The connection token to send to the server.
readonly connectionToken?: string;
* An endpoint to serve iframe content ("webview") from. This is required
* to provide full security isolation from the workbench host.
readonly webviewEndpoint?: string;
* An URL pointing to the web worker extension host <iframe> src.
readonly webWorkerExtensionHostIframeSrc?: string;
* A factory for web sockets.
readonly webSocketFactory?: IWebSocketFactory;
* A provider for resource URIs.
readonly resourceUriProvider?: IResourceUriProvider;
* Resolves an external uri before it is opened.
readonly resolveExternalUri?: IExternalUriResolver;
* A provider for supplying tunneling functionality,
* such as creating tunnels and showing candidate ports to forward.
readonly tunnelProvider?: ITunnelProvider;
* Endpoints to be used for proxying authentication code exchange calls in the browser.
readonly codeExchangeProxyEndpoints?: { [providerId: string]: string }
//#endregion
//#region Workbench configuration
* A handler for opening workspaces and providing the initial workspace.
readonly workspaceProvider?: IWorkspaceProvider;
* Enables Settings Sync by default.
* Syncs with the current authenticated user account (provided in [credentialsProvider](#credentialsProvider)) by default.
* @deprecated Instead use [settingsSyncOptions](#settingsSyncOptions) to enable/disable settings sync in the workbench.
readonly enableSyncByDefault?: boolean;
readonly settingsSyncOptions?: ISettingsSyncOptions;
* The credentials provider to store and retrieve secrets.
readonly credentialsProvider?: ICredentialsProvider;
* Add static extensions that cannot be uninstalled but only be disabled.
readonly staticExtensions?: ReadonlyArray<IStaticExtension>;
* [TEMPORARY]: This will be removed soon.
* Enable inlined extensions.
* Defaults to false on serverful and true on serverless.
readonly _enableBuiltinExtensions?: boolean;
* Enable `<iframe>` wrapping.
* Defaults to false.
readonly _wrapWebWorkerExtHostInIframe?: boolean;
* Support for URL callbacks.
readonly urlCallbackProvider?: IURLCallbackProvider;
* Support adding additional properties to telemetry.
readonly resolveCommonTelemetryProperties?: ICommonTelemetryPropertiesResolver;
* A set of optional commands that should be registered with the commands
* registry.
* Note: commands can be called from extensions if the identifier is known!
readonly commands?: readonly ICommand[];
* Optional default layout to apply on first time the workspace is opened.
readonly defaultLayout?: IDefaultLayout;
* Optional configuration default overrides contributed to the workbench.
readonly configurationDefaults?: Record<string, any>;
//#region Update/Quality related
* Support for update reporting
readonly updateProvider?: IUpdateProvider;
* Support for product quality switching
readonly productQualityChangeHandler?: IProductQualityChangeHandler;
//#region Branding
* Optional home indicator to appear above the hamburger menu in the activity bar.
readonly homeIndicator?: IHomeIndicator;
* Optional override for the product configuration properties.
readonly productConfiguration?: Partial<IProductConfiguration>;
* Optional override for properties of the window indicator in the status bar.
readonly windowIndicator?: IWindowIndicator;
* Specifies the default theme type (LIGHT, DARK..) and allows to provide initial colors that are shown
* until the color theme that is specified in the settings (`editor.colorTheme`) is loaded and applied.
* Once there are persisted colors from a last run these will be used.
* The idea is that the colors match the main colors from the theme defined in the `configurationDefaults`.
readonly initialColorTheme?: IInitialColorTheme;
//#region Diagnostics
* Current logging level. Default is `LogLevel.Info`.
readonly logLevel?: LogLevel;
* Whether to enable the smoke test driver.
readonly driver?: boolean;
interface IWorkbench {
commands: {
executeCommand(command: string, ...args: any[]): Promise<unknown>;
},
shutdown: () => void;
* Creates the workbench with the provided options in the provided container.
* @param domElement the container to create the workbench in
* @param options for setting up the workbench
let created = false;
let workbenchPromiseResolve: Function;
const workbenchPromise = new Promise<IWorkbench>(resolve => workbenchPromiseResolve = resolve);
function create(domElement: HTMLElement, options: IWorkbenchConstructionOptions): IDisposable {
// Mark start of workbench
mark('didLoadWorkbenchMain');
// Assert that the workbench is not created more than once. We currently
// do not support this and require a full context switch to clean-up.
if (created) {
throw new Error('Unable to create the VSCode workbench more than once.');
} else {
created = true;
// Register commands if any
if (Array.isArray(options.commands)) {
for (const command of options.commands) {
CommandsRegistry.registerCommand(command.id, (accessor, ...args) => {
// we currently only pass on the arguments but not the accessor
// to the command to reduce our exposure of internal API.
return command.handler(...args);
});
// Startup workbench and resolve waiters
let instantiatedWorkbench: IWorkbench | undefined = undefined;
main(domElement, options).then(workbench => {
instantiatedWorkbench = workbench;
workbenchPromiseResolve(workbench);
return toDisposable(() => {
if (instantiatedWorkbench) {
instantiatedWorkbench.shutdown();
workbenchPromise.then(instantiatedWorkbench => instantiatedWorkbench.shutdown());
//#region API Facade
namespace commands {
* Allows to execute any command if known with the provided arguments.
* @param command Identifier of the command to execute.
* @param rest Parameters passed to the command function.
* @return A promise that resolves to the returned value of the given command.
export async function executeCommand(command: string, ...args: any[]): Promise<unknown> {
const workbench = await workbenchPromise;
return workbench.commands.executeCommand(command, ...args);
export {
// Factory
create,
IWorkbenchConstructionOptions,
IWorkbench,
// Basic Types
URI,
UriComponents,
Event,
Emitter,
IDisposable,
Disposable,
// Workspace
IWorkspace,
IWorkspaceProvider,
// FileSystem
IFileSystemProvider,
FileSystemProviderCapabilities,
IFileChange,
FileChangeType,
// WebSockets
IWebSocketFactory,
IWebSocket,
// Resources
IResourceUriProvider,
// Credentials
ICredentialsProvider,
// Static Extensions
IStaticExtension,
IExtensionManifest,
// Callbacks
IURLCallbackProvider,
// LogLevel
LogLevel,
// SettingsSync
ISettingsSyncOptions,
// Updates/Quality
IUpdateProvider,
IUpdate,
IProductQualityChangeHandler,
// Telemetry
ICommonTelemetryPropertiesResolver,
// External Uris
IExternalUriResolver,
// Tunnel
ITunnelProvider,
ITunnelFactory,
ITunnel,
ITunnelOptions,
// Ports
IShowPortCandidate,
// Commands
ICommand,
commands,
// Branding
IHomeIndicator,
IProductConfiguration,
IWindowIndicator,
IInitialColorTheme,
// Default layout
IDefaultView,
IDefaultEditor,
IDefaultLayout,
IDefaultPanelLayout,
IDefaultSideBarLayout
};