RFR: JDK-8324950: IGV: save the state to a file [v4]

Tobias Holenstein tholenstein at openjdk.org
Sat Feb 17 13:19:53 UTC 2024


On Sat, 17 Feb 2024 13:17:08 GMT, Tobias Holenstein <tholenstein at openjdk.org> wrote:

>> The current workflow in IGV is the following:
>> 1) import an XML file with graphs or send via network
>> 2) open or more graphs in a tab
>> 3) extract a set of nodes to be displayed in the tab
>> 4) close IGV and start from 1) again
>> 
>> The idea of this RFE is to save the important **states** of IGV to a workspace directory:
>> - imported graphs (_graphs.xml_)
>> - opened graph tabs + extracted nodes (_state.igv_)
>> 
>> 
>> ### Saving the state of IGV
>> - For IGV to save the state it needs a workspace, which can be passed in 3 different ways: 
>>   1) Using a global variable : `IGV_WORKSPACE=path/to/igv_workspace ./igv.sh`
>>   2) Passed as an argument : `./igv.sh path/to/igv_workspace `
>>   3) With default location `IdealGraphVisualizer/workspace` : `./igv.sh`
>> 
>> Open IGV with the following example workspace (unzipped) [igv_workspace.zip](https://github.com/openjdk/jdk/files/14311092/igv_workspace.zip) should look something like this:
>> ![workspace](https://github.com/openjdk/jdk/assets/71546117/58da409d-fb02-4b21-8914-1cae9752b17f)
>> 
>> 
>> ### Workspace
>> A workspace is a directory where IGV saves imported graphs  as _graphs.xml_ and  opened graph tabs to _state.igv_. A workspace is loaded when IGV is opened. The current workspace is saved when IGV is closed or when the workspace is changed to a different directory. When changing a directory the state of the new workspace is loaded.
>> - Click here to select a different workspace directory
>> ![path](https://github.com/openjdk/jdk/assets/71546117/cff50c4d-fbc1-4112-916d-00f9ce14b27d)
>> 
>> - Imports an XML file (group and graphs) into the current workspace
>> ![import XML](https://github.com/openjdk/jdk/assets/71546117/a92ae702-e599-4459-960d-849365dbaa1d)
>> 
>> - saves the state of the current workspace 
>> ![save_workspace](https://github.com/openjdk/jdk/assets/71546117/16759da6-367b-47ce-997b-f176b0cbfc0f)
>>    - imported graphs (_graphs.xml_)
>>    - opened graph tabs + extracted nodes (_state.igv_)
>> 
>> 
>> - Export the selected groups to a separate XML file
>> ![save_selected](https://github.com/openjdk/jdk/assets/71546117/20cc347c-7ff5-4181-8539-4ed585d5a0bc)
>> 
>> - Delete the selected groups and graphs
>> ![delete_selected](https://github.com/openjdk/jdk/assets/71546117/1cb14b43-9b1a-4073-8964-075fc070a0b0)
>> 
>> - Clear the workspace and delete all groups and graphs
>> ![clear_workspace](https://github.com/openjdk/jdk/assets/71546117/b40b1805-3f39-4d49-9bc2-0d538976cf25)
>> 
>> 
>> 
>> ---------
>> ### Progress
>> - ...
>
> Tobias Holenstein has updated the pull request incrementally with one additional commit since the last revision:
> 
>   userdir

> Nice idea! When I start IGV with `sh igv.sh` (no arguments), I get:
> 
> ```
> The IGV workspace in which the imported graphs are saved saved can be set as follows :
>   1) export IGV_WORKSPACE=path/to/workspace
>   2) ./igv.sh path/to/workspace
>   3) default is ./workspace
> 
> IGV workspace : /home/rocastan/git/views/JDK-8324950/open/src/utils/IdealGraphVisualizer/workspace
> ```
> 
> However, the actual workspace directory seems to be: `/home/rocastan/git/views/JDK-8324950/open/src/utils/IdealGraphVisualizer/application/target/userdir`
> 
> ![Screenshot from 2024-02-16 14-32-29](https://private-user-images.githubusercontent.com/8792647/305428820-6b1fc50d-5209-4963-88da-4fc9e005ad09.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MDgxNzYwNjEsIm5iZiI6MTcwODE3NTc2MSwicGF0aCI6Ii84NzkyNjQ3LzMwNTQyODgyMC02YjFmYzUwZC01MjA5LTQ5NjMtODhkYS00ZmM5ZTAwNWFkMDkucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI0MDIxNyUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNDAyMTdUMTMxNjAxWiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9ZTM2NzEwYWNkZjY5NWNkODkyYzdmNDA5NWM2YzQxOWY1NDg0ODg4ZGZkNzE3NTY1MjllMTc2MTIzODM3YzM5OCZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QmYWN0b3JfaWQ9MCZrZXlfaWQ9MCZyZXBvX2lkPTAifQ.gf5xWDeW858Ea0BLNOwvazfUcTvMbwdTgP6uPZ2UUzc)

You are right. There was a small mistake in the igv.sh script. It should work now

-------------

PR Comment: https://git.openjdk.org/jdk/pull/17630#issuecomment-1950145699


More information about the hotspot-compiler-dev mailing list