microsoft / vscode

Visual Studio Code
https://code.visualstudio.com
MIT License
164.1k stars 29.26k forks source link

Proposal: Canonical URI identity provider #180582

Open joyceerhl opened 1 year ago

joyceerhl commented 1 year ago

In both edit sessions and workspace trust, we need to solve the problem of disambiguating URIs across filesystems. The approaches currently taken are:

This results in friction for users, who must repeatedly trust the same repository across different filesystems, and who are unable to roam workspace state for the same repository across two different filesystems if they have been cloned with different remotes.

To address both these scenarios, we would like to introduce an API proposal for transforming URIs if a URI has one or more alternate identities. This is not an inherently source control-specific concept, since you could have a folder on a local filesystem which is mounted into a container and not backed by source control, and in that scenario it should be possible to say that the local file:// URI is equivalent to the vscode-remote:// URI. It is also not an inherently remote-specific concept, since two file:// URIs for the same repository on two different filesystems should be resolvable to the same identity.

Prior art: https://github.com/microsoft/vscode/blob/5df31a17c8559bdb61bda296e5e7677c57a5a0e8/src/vscode-dts/vscode.proposed.resolvers.d.ts#L133-L138

https://github.com/microsoft/vscode/blob/5df31a17c8559bdb61bda296e5e7677c57a5a0e8/src/vscode-dts/vscode.proposed.editSessionIdentityProvider.d.ts#L25-L32

Initial proposal:


declare module 'vscode' {
    export namespace workspace {
        export function registerCanonicalUriIdentityProvider(scheme: string, provider: CanonicalUriIdentityProvider): Disposable; // There can be multiple providers for the same scheme
    }

    export interface CanonicalUriIdentityProvider {
        provideCanonicalUriIdentity(uri: Uri, token: CancellationToken): ProviderResult<CanonicalUriIdentity | CanonicalUriIdentity[]>;
    }

    export interface CanonicalUriIdentity {
        host: string;
        metadata: string;
    }
}

Example usage:

Provider URI scheme URI authority Identity
Remote extensions vscode-remote containers { host: 'file', metadata: 'filepath' }
Builtin GitHub extension file ` |{ host: 'github', metadata: 'microsoft/vscode' }`
GitHub Repositories extension vscode-vfs github { host: 'github', metadata: 'owner/repo' }
Azure Repos extension vscode-vfs azurerepos { host: 'azurerepos', metadata: 'org/project/repo' }

An alternative solution for workspace trust is to instead leverage https://github.com/microsoft/vscode/issues/179898 and declare that a workspace has been trusted before by storing this information for StorageScope.Workspace and StorageTarget.User, which will lead to that information roamed via edit sessions. However that won't allow workspace trust to move away from the hack it does for vscode-vfs URIs, since edit sessions takes the branch and SHA into account, and vscode-vfs URIs bake that information in as well.

joyceerhl commented 1 year ago

Feedback from API sync

Additional feedback from @sbatten

Updated proposal shape:


declare module 'vscode' {

    export namespace workspace {
        /**
         *
         * @param scheme The URI scheme that this provider can provide canonical URI identities for.
         * A canonical URI represents the conversion of a resource's alias into a source of truth URI.
         * Multiple aliases may convert to the same source of truth URI.
         * @param provider A provider which can convert URIs for workspace folders of scheme @param scheme to
         * a canonical URI identifier which is stable across machines.
         */
        export function registerCanonicalUriIdentityProvider(scheme: string, provider: CanonicalUriIdentityProvider): Disposable;

        /**
         *
         * @param uri The URI to provide a canonical URI identity for.
         * @param token A cancellation token for the request.
         */
        export function getCanonicalUri(uri: Uri, options: CanonicalUriRequestOptions, token: CancellationToken): ProviderResult<Uri>;
    }

    export interface CanonicalUriIdentityProvider {
        /**
         *
         * @param uri The URI to provide a canonical URI identity for.
         * @param token A cancellation token for the request.
         * @returns The canonical URI identity for the requested URI.
         */
        provideCanonicalUriIdentity(uri: Uri, options: CanonicalUriRequestOptions, token: CancellationToken): ProviderResult<Uri>;
    }

    export interface CanonicalUriRequestOptions {
        targetScheme: string;
    }
}