Package ghidra.util.task
Class TaskMonitorAdapter
- java.lang.Object
-
- ghidra.util.task.TaskMonitorAdapter
-
- All Implemented Interfaces:
TaskMonitor
- Direct Known Subclasses:
ConsoleTaskMonitor
,DummyCancellableTaskMonitor
,UnknownProgressWrappingTaskMonitor
public class TaskMonitorAdapter extends java.lang.Object implements TaskMonitor
Create a "do nothing" task monitor that we can pass along to methods that need a task monitor. This can be used when methods provide detailed task progress information that we don't want to show the user.This monitor can be configured to allow cancelling via
setCancelEnabled(boolean)
. If this cancelling is enabled, the the monitor may be cancelled programmatically.
-
-
Field Summary
Fields Modifier and Type Field Description static TaskMonitor
DUMMY_MONITOR
Deprecated.useTaskMonitor.DUMMY
instead-
Fields inherited from interface ghidra.util.task.TaskMonitor
DUMMY, NO_PROGRESS_VALUE
-
-
Constructor Summary
Constructors Constructor Description TaskMonitorAdapter()
TaskMonitorAdapter(boolean cancelEnabled)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addCancelledListener(CancelledListener listener)
Add cancelled listenervoid
cancel()
Cancel the taskvoid
checkCanceled()
Check to see if this monitor has been canceledvoid
clearCanceled()
Clear the cancellation so that this TaskMonitor may be reusedlong
getMaximum()
Returns the current maximum value for progressjava.lang.String
getMessage()
Gets the last set message of this monitorint
getMinimum()
long
getProgress()
Returns the current progress value orTaskMonitor.NO_PROGRESS_VALUE
if there is no value setvoid
incrementProgress(long incrementAmount)
A convenience method to increment the current progress by the given valuevoid
initialize(long max)
Initialized this TaskMonitor to the given max values.boolean
isCancelEnabled()
Returns true if cancel ability is enabledboolean
isCancelled()
Returns true if the user has cancelled the operationboolean
isIndeterminate()
Returns true if this monitor shows no progressprotected void
notifyChangeListeners()
void
removeCancelledListener(CancelledListener listener)
Remove cancelled listenervoid
setCancelEnabled(boolean enable)
Set the enablement of the Cancel buttonvoid
setIndeterminate(boolean indeterminate)
An indeterminate task monitor may choose to show an animation instead of updating progressvoid
setMaximum(long max)
Set the progress maximum valuevoid
setMessage(java.lang.String message)
Sets the message displayed on the task monitorvoid
setMinimum(int min)
void
setProgress(long value)
Sets the current progress valuevoid
setShowProgressValue(boolean showProgressValue)
True (the default) signals to paint the progress information inside of the progress bar
-
-
-
Field Detail
-
DUMMY_MONITOR
@Deprecated public static final TaskMonitor DUMMY_MONITOR
Deprecated.useTaskMonitor.DUMMY
insteadProvides a static instance ofTaskMonitorAdapter
which is a non-cancellable task monitor with no visual components.
-
-
Method Detail
-
isCancelled
public boolean isCancelled()
Description copied from interface:TaskMonitor
Returns true if the user has cancelled the operation- Specified by:
isCancelled
in interfaceTaskMonitor
- Returns:
- true if the user has cancelled the operation
-
checkCanceled
public void checkCanceled() throws CancelledException
Description copied from interface:TaskMonitor
Check to see if this monitor has been canceled- Specified by:
checkCanceled
in interfaceTaskMonitor
- Throws:
CancelledException
- if monitor has been cancelled
-
setMessage
public void setMessage(java.lang.String message)
Description copied from interface:TaskMonitor
Sets the message displayed on the task monitor- Specified by:
setMessage
in interfaceTaskMonitor
- Parameters:
message
- the message to display
-
getMessage
public java.lang.String getMessage()
Description copied from interface:TaskMonitor
Gets the last set message of this monitor- Specified by:
getMessage
in interfaceTaskMonitor
- Returns:
- the message
-
setProgress
public void setProgress(long value)
Description copied from interface:TaskMonitor
Sets the current progress value- Specified by:
setProgress
in interfaceTaskMonitor
- Parameters:
value
- progress value
-
getMinimum
public int getMinimum()
-
setMinimum
public void setMinimum(int min)
-
getMaximum
public long getMaximum()
Description copied from interface:TaskMonitor
Returns the current maximum value for progress- Specified by:
getMaximum
in interfaceTaskMonitor
- Returns:
- the maximum progress value
-
initialize
public void initialize(long max)
Description copied from interface:TaskMonitor
Initialized this TaskMonitor to the given max values. The current value of this monitor will be set to zero.- Specified by:
initialize
in interfaceTaskMonitor
- Parameters:
max
- maximum value for progress
-
setMaximum
public void setMaximum(long max)
Description copied from interface:TaskMonitor
Set the progress maximum valueNote: setting this value will reset the progress to be the max if the progress is currently greater than the new new max value.
- Specified by:
setMaximum
in interfaceTaskMonitor
- Parameters:
max
- maximum value for progress
-
setShowProgressValue
public void setShowProgressValue(boolean showProgressValue)
Description copied from interface:TaskMonitor
True (the default) signals to paint the progress information inside of the progress bar- Specified by:
setShowProgressValue
in interfaceTaskMonitor
- Parameters:
showProgressValue
- true to paint the progress value; false to not
-
setIndeterminate
public void setIndeterminate(boolean indeterminate)
Description copied from interface:TaskMonitor
An indeterminate task monitor may choose to show an animation instead of updating progress- Specified by:
setIndeterminate
in interfaceTaskMonitor
- Parameters:
indeterminate
- true if indeterminate
-
isIndeterminate
public boolean isIndeterminate()
Description copied from interface:TaskMonitor
Returns true if this monitor shows no progress- Specified by:
isIndeterminate
in interfaceTaskMonitor
- Returns:
- true if this monitor shows no progress
-
setCancelEnabled
public void setCancelEnabled(boolean enable)
Description copied from interface:TaskMonitor
Set the enablement of the Cancel button- Specified by:
setCancelEnabled
in interfaceTaskMonitor
- Parameters:
enable
- true means to enable the cancel button
-
isCancelEnabled
public boolean isCancelEnabled()
Description copied from interface:TaskMonitor
Returns true if cancel ability is enabled- Specified by:
isCancelEnabled
in interfaceTaskMonitor
- Returns:
- true if cancel ability is enabled
-
cancel
public void cancel()
Description copied from interface:TaskMonitor
Cancel the task- Specified by:
cancel
in interfaceTaskMonitor
-
clearCanceled
public void clearCanceled()
Description copied from interface:TaskMonitor
Clear the cancellation so that this TaskMonitor may be reused- Specified by:
clearCanceled
in interfaceTaskMonitor
-
incrementProgress
public void incrementProgress(long incrementAmount)
Description copied from interface:TaskMonitor
A convenience method to increment the current progress by the given value- Specified by:
incrementProgress
in interfaceTaskMonitor
- Parameters:
incrementAmount
- The amount by which to increment the progress
-
getProgress
public long getProgress()
Description copied from interface:TaskMonitor
Returns the current progress value orTaskMonitor.NO_PROGRESS_VALUE
if there is no value set- Specified by:
getProgress
in interfaceTaskMonitor
- Returns:
- the current progress value or
TaskMonitor.NO_PROGRESS_VALUE
if there is no value set
-
notifyChangeListeners
protected void notifyChangeListeners()
-
addCancelledListener
public void addCancelledListener(CancelledListener listener)
Description copied from interface:TaskMonitor
Add cancelled listener- Specified by:
addCancelledListener
in interfaceTaskMonitor
- Parameters:
listener
- the cancel listener
-
removeCancelledListener
public void removeCancelledListener(CancelledListener listener)
Description copied from interface:TaskMonitor
Remove cancelled listener- Specified by:
removeCancelledListener
in interfaceTaskMonitor
- Parameters:
listener
- the cancel listener
-
-