Package ghidra.app.merge.memory
Class MemoryMergeManager
java.lang.Object
ghidra.app.merge.memory.MemoryMergeManager
- All Implemented Interfaces:
MergeResolver
Merge memory blocks that have changes to the name, permissions or comments.
-
Constructor Summary
ConstructorDescriptionMemoryMergeManager
(ProgramMultiUserMergeManager mergeManager, Program resultProgram, Program myProgram, Program originalProgram, Program latestProgram) Constructor -
Method Summary
Modifier and TypeMethodDescriptionvoid
apply()
Notification that the apply button was hit.void
cancel()
Notification that the merge process was canceled.Get the description of what this MergeResolver does.getName()
Get the name of this MergeResolver.String[][]
Gets identifiers for the merge phases handled by this MergeResolver.void
merge
(TaskMonitor monitor) Perform the merge process.
-
Constructor Details
-
MemoryMergeManager
public MemoryMergeManager(ProgramMultiUserMergeManager mergeManager, Program resultProgram, Program myProgram, Program originalProgram, Program latestProgram) Constructor- Parameters:
mergeManager
- merge managerresultProgram
- program where changes will be applied tomyProgram
- source program with changes that will be applied to result programoriginalProgram
- original program that was checked outlatestProgram
- latest program that was checked in; the result program and latest program are initially identical
-
-
Method Details
-
getName
Description copied from interface:MergeResolver
Get the name of this MergeResolver.- Specified by:
getName
in interfaceMergeResolver
-
getDescription
Description copied from interface:MergeResolver
Get the description of what this MergeResolver does.- Specified by:
getDescription
in interfaceMergeResolver
-
apply
public void apply()Description copied from interface:MergeResolver
Notification that the apply button was hit.- Specified by:
apply
in interfaceMergeResolver
-
cancel
public void cancel()Description copied from interface:MergeResolver
Notification that the merge process was canceled.- Specified by:
cancel
in interfaceMergeResolver
-
merge
Description copied from interface:MergeResolver
Perform the merge process.- Specified by:
merge
in interfaceMergeResolver
- Parameters:
monitor
- monitor that allows the user to cancel the merge operation
-
getPhases
Description copied from interface:MergeResolver
Gets identifiers for the merge phases handled by this MergeResolver. If the merge has no sub-phases then return an array with a single string array. Each inner String array indicates a path for a single merge phase. Each outer array element represents a phase whose progress we wish to indicate.
Examples:
So for a simple phase which has no sub-phases returnnew String[][] {new String[] {"Phase A"}}
So for a phase with 2 sub-phases returnnew String[][] { new String[] {"Phase A"}, new String[] {"Phase A", "Sub-Phase 1}, new String[] {"Phase A", "Sub-Phase 2} }
.- Specified by:
getPhases
in interfaceMergeResolver
- Returns:
- an array of phases.
-