RFR: JDK-8324950: IGV: save the state to a file
Tobias Holenstein
tholenstein at openjdk.org
Fri Feb 16 13:07:26 UTC 2024
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
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

- Imports an XML file (group and graphs) into the current workspace

- saves the state of the current workspace

- imported graphs (_graphs.xml_)
- opened graph tabs + extracted nodes (_state.igv_)
- Export the selected groups to a separate XML file

- Delete the selected groups and graphs

- Clear the workspace and delete all groups and graphs

---------
### Progress
- [ ] Change must be properly reviewed (1 review required, with at least 1 [Reviewer](https://openjdk.org/bylaws#reviewer))
- [x] Change must not contain extraneous whitespace
- [x] Commit message must refer to an issue
### Reviewing
<details><summary>Using <code>git</code></summary>
Checkout this PR locally: \
`$ git fetch https://git.openjdk.org/jdk.git pull/17630/head:pull/17630` \
`$ git checkout pull/17630`
Update a local copy of the PR: \
`$ git checkout pull/17630` \
`$ git pull https://git.openjdk.org/jdk.git pull/17630/head`
</details>
<details><summary>Using Skara CLI tools</summary>
Checkout this PR locally: \
`$ git pr checkout 17630`
View PR using the GUI difftool: \
`$ git pr show -t 17630`
</details>
<details><summary>Using diff file</summary>
Download this PR as a diff file: \
<a href="https://git.openjdk.org/jdk/pull/17630.diff">https://git.openjdk.org/jdk/pull/17630.diff</a>
</details>
-------------
Commit messages:
- USERDIR to WORKSPACE
- invokeLater and correct getWorkspaceGraphsPath
- clear() in loadWorkspace()
- setWorkspacePath
- import description
- saveall.gif
- temp
- workspace button
- missing saveas image
- Compile again
- ... and 8 more: https://git.openjdk.org/jdk/compare/bccd823c...96aba834
Changes: https://git.openjdk.org/jdk/pull/17630/files
Webrev: https://webrevs.openjdk.org/?repo=jdk&pr=17630&range=00
Issue: https://bugs.openjdk.org/browse/JDK-8324950
Stats: 516 lines in 28 files changed: 359 ins; 93 del; 64 mod
Patch: https://git.openjdk.org/jdk/pull/17630.diff
Fetch: git fetch https://git.openjdk.org/jdk.git pull/17630/head:pull/17630
PR: https://git.openjdk.org/jdk/pull/17630
More information about the hotspot-compiler-dev
mailing list