Package ghidra.app.merge
Class MergeManagerPlugin
java.lang.Object
ghidra.framework.plugintool.Plugin
ghidra.app.merge.MergeManagerPlugin
- All Implemented Interfaces:
ProgramaticUseOnly
,DomainObjectListener
,PluginEventListener
,ServiceListener
,ExtensionPoint
,EventListener
- Direct Known Subclasses:
DataTypeArchiveMergeManagerPlugin
,ProgramMergeManagerPlugin
public abstract class MergeManagerPlugin
extends Plugin
implements ProgramaticUseOnly, DomainObjectListener
Plugin that provides a merge component provider.
-
Field Summary
Modifier and TypeFieldDescriptionprotected DomainObject
protected MergeManager
protected ghidra.app.merge.MergeManagerProvider
Fields inherited from class ghidra.framework.plugintool.Plugin
name, pluginDescription, tool
-
Constructor Summary
ConstructorDescriptionMergeManagerPlugin
(PluginTool tool, MergeManager mergeManager, DomainObject domainObject) Constructor for plugin that handles multi-user merge of programs. -
Method Summary
Modifier and TypeMethodDescriptionprotected boolean
canClose()
Called to force this plugin to terminate any tasks it has running and apply any unsaved data to domain objects or files.boolean
closeAllDomainObjects
(boolean ignoreChanges) boolean
boolean
closeDomainObject
(DomainObject domainObject, boolean ignoreChanges) abstract ghidra.app.merge.MergeManagerProvider
Creates the provider that will be displayed in the merge tool.protected void
dispose()
Tells a plugin that it is no longer needed.void
Method called when a change is made to the domain object.static String
static String
static String
int
getSearchPriority
(DomainObject domainObject) boolean
isVisible
(DomainObject domainObject) openDomainObject
(DomainFile domainFile) openDomainObject
(DomainFile df, int version) openDomainObject
(DomainFile domainFile, int version, int state) void
openDomainObject
(DomainObject domainObject) void
openDomainObject
(DomainObject domainObject, boolean current) void
openDomainObject
(DomainObject domainObject, int state) abstract void
processEvent
(PluginEvent event) Method called to process a plugin event.void
releaseDomainObject
(DomainObject domainObject, Object persistentOwner) void
setCurrentDomainObject
(DomainObject domainObject) boolean
setPersistentOwner
(DomainObject domainObject, Object owner) void
setSearchPriority
(DomainObject domainObject, int priority) Methods inherited from class ghidra.framework.plugintool.Plugin
accept, acceptData, canCloseDomainObject, cleanup, close, dataStateRestoreCompleted, dependsUpon, deregisterService, equals, eventSent, firePluginEvent, getData, getMissingRequiredServices, getName, getPluginDescription, getServicesRequired, getSupportedDataTypes, getTool, getTransientState, getUndoRedoState, hashCode, hasMissingRequiredService, hasUnsaveData, init, internalRegisterEventConsumed, isDisposed, prepareToSave, readConfigState, readDataState, registerDynamicServiceProvided, registerServiceProvided, restoreTransientState, restoreUndoRedoState, saveData, serviceAdded, serviceRemoved, writeConfigState, writeDataState
-
Field Details
-
mergeManager
-
provider
protected ghidra.app.merge.MergeManagerProvider provider -
currentDomainObject
-
-
Constructor Details
-
MergeManagerPlugin
Constructor for plugin that handles multi-user merge of programs.- Parameters:
tool
- the tool with the active program to be mergedmergeManager
- the merge manager that will control the merge processdomainObject
- the current domain object
-
-
Method Details
-
createProvider
public abstract ghidra.app.merge.MergeManagerProvider createProvider()Creates the provider that will be displayed in the merge tool. This shows the merge progress to the user and lets the user resolve conflicts. Any class that extends this plugin must provide its own MergeManagerProvider here that will be shown to the user for the merge.- Returns:
- the merge provider associated with this plugin.
-
processEvent
Description copied from class:Plugin
Method called to process a plugin event. Plugins should override this method if the plugin processes PluginEvents;- Overrides:
processEvent
in classPlugin
- Parameters:
event
- plugin to process
-
dispose
protected void dispose()Description copied from class:Plugin
Tells a plugin that it is no longer needed. The plugin should release any resources that it has. All actions, components, services will automatically be cleaned up. -
getDescription
-
getDescriptiveName
-
getCategory
-
canClose
protected boolean canClose()Description copied from class:Plugin
Called to force this plugin to terminate any tasks it has running and apply any unsaved data to domain objects or files. If it can't do this or the user cancels then this returns false. -
domainObjectChanged
Description copied from interface:DomainObjectListener
Method called when a change is made to the domain object.- Specified by:
domainObjectChanged
in interfaceDomainObjectListener
- Parameters:
ev
- event containing the change record and type of change that was made
-
closeAllDomainObjects
public boolean closeAllDomainObjects(boolean ignoreChanges) -
closeDomainObject
public boolean closeDomainObject() -
closeDomainObject
-
getAllOpenDomainObjects
-
getCurrentDomainObject
-
getSearchPriority
-
isVisible
-
openDomainObject
-
openDomainObject
-
openDomainObject
-
openDomainObject
-
openDomainObject
-
openDomainObject
-
releaseDomainObject
-
setCurrentDomainObject
-
setPersistentOwner
-
setSearchPriority
-