Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adopt StorageScope.WORKSPACE and StorageTarget.USER #183449

Closed
6 of 7 tasks
joyceerhl opened this issue May 25, 2023 · 18 comments
Closed
6 of 7 tasks

Adopt StorageScope.WORKSPACE and StorageTarget.USER #183449

joyceerhl opened this issue May 25, 2023 · 18 comments
Assignees
Labels
feature-request Request for new features or functionality on-testplan

Comments

@joyceerhl
Copy link
Contributor

joyceerhl commented May 25, 2023

We now support transferring additional workspace-specific state beyond uncommitted changes in a Continue Working On transition, e.g. from web to a local clone but for the same repository like microsoft/vscode (ref #179898). This allows us to provide continuity when a user needs to work on the same repo while transitioning across different development environments.

Ask: We generally want to transfer any state that is user-generated and ephemeral, such as user queries and drafted changes. Not all state needs to be transferred, and I've compiled an initial list that could make sense to adopt this for below. If I missed any or if you have any questions, please reach out.

Area owners:

Details: Your component can opt into this by using the IStorageService under the StorageScope.WORKSPACE and StorageTarget.USER combination to store and retrieve state based on onWillSaveState and onDidChangeValue, e.g.

// in environment A e.g. github.dev
this.storageService.onWillSaveState(() => {
    // no need to serialize objects before storing
    const myObj = { resourceUri };
    this.storageService.store('myKey', myObj, StorageScope.WORKSPACE, StorageTarget.USER);
})

// in environment B e.g. desktop clone of repo
this.storageService.onDidChangeValue((v) => {
    if (v.key === 'myKey') {
        const restoredObj = this.storageService.getObject('myKey', StorageScope.WORKSPACE);
        // apply restored state for your component
    }
});

Any URIs in your stored object values that originated in another instance of VS Code but for the same workspace, e.g. vscode-vfs to file, will be automatically converted for you (if a conversion is possible) before onDidChangeValue is emitted.

Note: The key that you use to retrieve your state should not include non-portable data like URI paths or serialized URIs, since keys will not be automatically converted.

If you have any state already in the workspace and the restored state might step on it, as much as possible your component should try to merge that state (e.g. append new history to existing history) without showing the user a confirmation UI, since the goal is to provide a seamless transition. Again please reach out if this is infeasible.

@joyceerhl joyceerhl added the feature-request Request for new features or functionality label May 25, 2023
@joyceerhl joyceerhl added this to the May 2023 milestone May 25, 2023
@roblourens
Copy link
Member

So in this scenario, environment B might be already open, and that's why we should listen to onDidChangeValue, right? Currently I only read stored data on startup

@bpasero
Copy link
Member

bpasero commented May 26, 2023

You need to listen for onDidChangeValue because the edit session is applied after the window has opened, possibly after the restored phase. Similar to settings sync, these changes are applied while you are already inside the workbench and thus require the event from being used.

We had to do this kind of adoption for global state already back when settings sync got introduced.

@alexr00
Copy link
Member

alexr00 commented May 26, 2023

Can this be a June item? I will not get to it today.

@lszomoru lszomoru modified the milestones: May 2023, June 2023 May 26, 2023
@connor4312
Copy link
Member

connor4312 commented May 26, 2023

I suggest that we add a reason field to the IStorageValueChangeEvent, otherwise we may spend a good deal of complexity reconciling things. At least in debug land, we've never listened to this event before and would exclusively be interested in changes that happen via sync.

@bpasero
Copy link
Member

bpasero commented May 26, 2023

@connor4312 can you clarify what you mean, I am not sure I follow that reasoning. Why would you ever not want to react to storage changes?

This issue is about workspace scoped storage. So far, it never changed unless through the component itself in the current window. With settings sync roaming workspace scope, it may now change when the synced data is applied.

@connor4312
Copy link
Member

connor4312 commented May 26, 2023

With the addition of a listener, I get events both for sync and as a result of the component itself making changes to the stored values.

In the latter case, I now need to deal with deduplicating these events to avoid doing extra work. In some cases, doing this is simple, but in others it's a little more complex. For example, for breakpoint changes, we need to diff the array of breakpoints (or replace it) and trigger rendering as needed. The requisite diffing for every component and prone to error since it's not easy to locally test "continue working on" (as far as I know)

If there was a reason on the event, I could check for that instead of having to do more complex logic to figure out that I actually don't need to react to this event, and the logic could usually reuse the 'initialization' logic which would reduce the opportunity for error.

@bpasero
Copy link
Member

bpasero commented May 26, 2023

I see the problem but I would argue that its good to deduplicate even when state comes in from a roamed session because it may not be any different from what is already there.

@connor4312
Copy link
Member

Perhaps, but I would tend to replace for simplicity if I had that reason. In the breakpoint case, it's an event that will happen at most once per session versus something that happens every time a user modifies a breakpoint.

@andreamah
Copy link
Contributor

@rebornix I think that the search/replace text history and the findInput history both use HistoryInputBox. That contains HistoryNavigator, which is where we store history in memory. Should we sync about how we should listen for changes in history and store properly?

@rebornix
Copy link
Member

rebornix commented Jun 7, 2023

@andreamah yes let's meet, I wonder if it can be handled by HistoryNavigator by giving it an unique id for each component to make it persistent.

Update

With that said, I wonder if it makes sense to transfer the find history though. It will increase the roaming data size but I'm not sure if we are adding enough value.

@andreamah
Copy link
Contributor

That's true, perhaps if find isn't transferred, it makes sense for search to also not be transferred (and vice versa)?
As for the implementation, that seems like a good way; we could have an optional storageServiceID when initializing the HistoryNavigator

@andreamah
Copy link
Contributor

Currently, how much history do we store?

@joyceerhl
Copy link
Contributor Author

@connor4312 is the addition of a reason property to the onDidChangeValue event a blocker for you to adopt StorageScope.WORKSPACE with StorageTarget.USER?

@connor4312
Copy link
Member

It would definitely make adopting it way easier

connor4312 added a commit that referenced this issue Aug 16, 2023
For #183449

Also adds the leak detector to debug tests and fixes some usages of it (#190503)
connor4312 added a commit that referenced this issue Aug 16, 2023
For #183449

Also adds the leak detector to debug tests and fixes some usages of it (#190503)
rebornix added a commit that referenced this issue Aug 23, 2023
@rebornix rebornix removed their assignment Aug 23, 2023
rebornix added a commit that referenced this issue Aug 24, 2023
@joaomoreno joaomoreno assigned lszomoru and joaomoreno and unassigned joaomoreno and lszomoru Sep 6, 2023
@joaomoreno
Copy link
Member

joaomoreno commented Sep 13, 2023

@joyceerhl, looked into tackling this for SCM history and need some guidance.

Today, we store SCM history in StorageScope.APPLICATION and StorageTarget.MACHINE.

  • We chose StorageScope.APPLICATION since SCM history belongs to a repository, which can appear in multiple workspaces; a repository's history should be preserved even if that repository appears in a different repo workspace.
  • We chose StorageTarget.MACHINE since we store URIs that do not translate well between machines. Until now, that is.

I believe we have to drop the repo history preserves across workspaces feature under this new model. Is this a fair assumption? I don't mind if so, I suspect most users won't either.

Also, looking at this from the desired state perspective, and considering that we need to use StorageScope.WORKSPACE and StorageTarget.USER, I see no other viable storage key than something all-encompassing like scm.history, holding one single object with all histories of all repositories within a workspace. If so, would such a schema be reasonable for the stored object?

type SCMHistory = { repositoryRoot: URI, history: string[] }[];

If that's the case, will those repositoryRoot URIs be properly migrated, when roaming? Note that we get those URIs from source control providers.

Thanks for your help!

@joyceerhl
Copy link
Contributor Author

Yes this is all correct @joaomoreno and the repositoryRoot URIs should be properly migrated as part of the roaming transition.

@joaomoreno
Copy link
Member

joaomoreno commented Sep 15, 2023

SCM commit history done: #193142

Most work was in figuring out what the storage format would end up being and then writing the migration code.

@joaomoreno joaomoreno removed their assignment Sep 15, 2023
Krzysztof-Cieslak pushed a commit to githubnext/vscode that referenced this issue Sep 18, 2023
For microsoft#183449

Also adds the leak detector to debug tests and fixes some usages of it (microsoft#190503)
@bpasero bpasero removed their assignment Sep 22, 2023
@github-actions github-actions bot locked and limited conversation to collaborators Nov 5, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
feature-request Request for new features or functionality on-testplan
Projects
None yet
Development

No branches or pull requests

10 participants