Class V45Transcoder
java.lang.Object
com.illumon.iris.gui.workspace.compatability.V45Transcoder
- All Implemented Interfaces:
WorkspaceTranscoder
public class V45Transcoder extends Object implements WorkspaceTranscoder
In the V5 workspace, we added the ability export and import shared workspace (partial workspaces).
This transcoder adds the meta data for SaveType to the workspace file.
-
Constructor Summary
Constructors Constructor Description V45Transcoder(com.fishlib.io.logger.Logger log)
-
Method Summary
Modifier and Type Method Description SavedWorkspace
convertWorkspace(SavedWorkspace workspace, Path destination, boolean isStandalone)
Convert the specified workspace toWorkspaceTranscoder.getToVersion()
.int
getFromVersion()
SavedWorkspace
getMostRecentWorkspace(String pathStr)
Get the most recent workspace this transcoder understands at the specified path.int
getToVersion()
Collection<SavedWorkspace>
getWorkspaces(String pathStr, WorkspaceManager.SaveType saveType)
Get all of the workspaces this transcoder understands at the specified path.SavedWorkspace
tryGetSavedWorkspace(Path path)
Try to create a SavedWorkspace at this transcoder version from the specified path.
-
Constructor Details
-
V45Transcoder
public V45Transcoder(com.fishlib.io.logger.Logger log)
-
-
Method Details
-
getFromVersion
public int getFromVersion()- Specified by:
getFromVersion
in interfaceWorkspaceTranscoder
- Returns:
- The workspace version this transcoder converts from.
-
getToVersion
public int getToVersion()- Specified by:
getToVersion
in interfaceWorkspaceTranscoder
- Returns:
- The workspace version this transcoder converts to.
-
getMostRecentWorkspace
Description copied from interface:WorkspaceTranscoder
Get the most recent workspace this transcoder understands at the specified path.- Specified by:
getMostRecentWorkspace
in interfaceWorkspaceTranscoder
- Parameters:
pathStr
- The path to search in- Returns:
- The most recent workspace this transcoder understands or null if there are none.
-
getWorkspaces
public Collection<SavedWorkspace> getWorkspaces(String pathStr, WorkspaceManager.SaveType saveType)Description copied from interface:WorkspaceTranscoder
Get all of the workspaces this transcoder understands at the specified path.- Specified by:
getWorkspaces
in interfaceWorkspaceTranscoder
- Parameters:
pathStr
- The path to search in.saveType
- The type of workspace save to get- Returns:
- All of the workspaces this transcoder understands.
-
convertWorkspace
public SavedWorkspace convertWorkspace(SavedWorkspace workspace, Path destination, boolean isStandalone) throws TranscodingExceptionDescription copied from interface:WorkspaceTranscoder
Convert the specified workspace toWorkspaceTranscoder.getToVersion()
.- Specified by:
convertWorkspace
in interfaceWorkspaceTranscoder
- Parameters:
workspace
- The workspace to convert. Must be atWorkspaceTranscoder.getFromVersion()
destination
- The path for writing out the new file, this may be adjusted by the transcoder as necessaryisStandalone
- if the console is in standalone mode- Returns:
- A new
SavedWorkspace
at versionWorkspaceTranscoder.getToVersion()
- Throws:
TranscodingException
- If there was an error during conversion
-
tryGetSavedWorkspace
Description copied from interface:WorkspaceTranscoder
Try to create a SavedWorkspace at this transcoder version from the specified path.- Specified by:
tryGetSavedWorkspace
in interfaceWorkspaceTranscoder
- Parameters:
path
- The path to the workspace to try to parse- Returns:
- A SavedWorkspace or null if the workspace couldn't be parsed.
-