Class ThreadedTableModel<ROW_OBJECT,DATA_SOURCE>
- Type Parameters:
ROW_OBJECT- the row object class for this table model.DATA_SOURCE- the type of data that will be returned fromGDynamicColumnTableModel.getDataSource(). This object will be given to theDynamicTableColumnobjects used by this table model whenDynamicTableColumn.getValue(Object, ghidra.docking.settings.Settings, Object, ServiceProvider)is called.
- All Implemented Interfaces:
ConfigurableColumnTableModel,DynamicColumnTableModel<ROW_OBJECT>,RowObjectFilterModel<ROW_OBJECT>,RowObjectTableModel<ROW_OBJECT>,SelectionStorage<ROW_OBJECT>,SortedTableModel,VariableColumnTableModel,Serializable,EventListener,ChangeListener,TableModel
- Direct Known Subclasses:
DbSmallTableModel,GhidraProgramTableModel,ProjectDataTableModel,ThreadedTableModelStub
You can optionally set this model to load data incrementally by passing the correct
constructor argument. Note, if you make this model incremental, then you need to set an
incremental task monitor in order to get feedback about loading
(see setIncrementalTaskMonitor(TaskMonitor). Alternatively, you can use
a GThreadedTablePanel, which will install the proper monitor for you.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected classA special internal listener for the model to know when incremental jobs begin and end. -
Field Summary
FieldsFields inherited from class docking.widgets.table.GDynamicColumnTableModel
columnSettings, serviceProvider, tableColumnsFields inherited from class docking.widgets.table.AbstractSortedTableModel
hasEverSortedFields inherited from class docking.widgets.table.AbstractGTableModel
isDisposed, WIDTH_UNDEFINEDFields inherited from class javax.swing.table.AbstractTableModel
listenerListFields inherited from interface docking.widgets.table.RowObjectFilterModel
SUB_FILTERING_DISABLED_PROPERTYFields inherited from interface docking.widgets.table.SortedTableModel
ASCENDING_ORDER, DESCENDING_ORDER -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedThreadedTableModel(String modelName, ServiceProvider serviceProvider) protectedThreadedTableModel(String modelName, ServiceProvider serviceProvider, TaskMonitor monitor) protectedThreadedTableModel(String modelName, ServiceProvider serviceProvider, TaskMonitor monitor, boolean loadIncrementally) The constructor through which all others pass. -
Method Summary
Modifier and TypeMethodDescriptionvoidAdds a listener that will be notified of the first table load of this model.voidaddInitialLoadListener(Consumer<Boolean> completedLoadingConsumer) Adds a consumer that will be notified when the model finishes loading.voidaddObject(ROW_OBJECT obj) Adds the specified object to this model and schedules an update.voidThis is a way to know about updates from the table.protected voidCalled when aTableUpdateJobis cancelled by the user via the Gui.voidCancels all current and pending updates to the model.protected voidThis method will clear all data and trigger fire a table data changed.protected ListAccumulator<ROW_OBJECT> protected IncrementalLoadJob<ROW_OBJECT> protected Comparator<ROW_OBJECT> createSortComparator(int columnIndex) An extension point for subclasses to insert their own comparator objects for their data.voiddispose()Disposes this model.protected List<ROW_OBJECT> doFilter(List<ROW_OBJECT> data, TableSortingContext<ROW_OBJECT> lastSortingContext, TaskMonitor monitor) Override this to change how filtering is performed.protected abstract voiddoLoad(Accumulator<ROW_OBJECT> accumulator, TaskMonitor monitor) The basic method that all children must implement.voidprotected TableAddRemoveStrategy<ROW_OBJECT> Returns the strategy to use for performing adds and removes to this table.protected List<ROW_OBJECT> Implementors should return the current data of the model.intReturns the model index of the given item.intgetModelRow(int viewRow) Given a row index for the view (filtered) model, return the corresponding index in the raw (unfiltered) model.getName()Returns the name of this model.intgetRowObjects(int[] rows) Returns the corresponding row objects for the specified rows.Returns the filter for this model.protected intgetUnfilteredIndexForRowObject(ROW_OBJECT rowObject) Performs a quick search for the given item in the unfiltered data of this model.intprotected ROW_OBJECTgetUnfilteredRowObjectForIndex(int row) Returns the row object at the given index in the unfiltered data of this model; null if the index is negative or larger than the list.getValueAt(int rowIndex, int columnIndex) The default implementation ofTableModel.getValueAt(int, int)that calls the abstractRowObjectTableModel.getColumnValueForRow(Object, int).intReturns the view index of the given item.intgetViewRow(int modelRow) Given a row index for the raw (unfiltered) model, return the corresponding index in the view (filtered) model.booleanReturns true if there is a table filter set that is not theNullTableFilter.protected voidThis method is an attempt to help models that forget to call fireTableDataChanged().booleanisBusy()Returns true if the model is busy.booleanbooleanvoidreFilter()Triggers this class to filter the contents of the data.voidreload()Schedules the model to completely reload its underlying data.voidremoveObject(ROW_OBJECT obj) Removes the specified object from this model and schedules an update.voidvoidreSort()Resort the table using the current sort criteria.voidsetIncrementalTaskMonitor(TaskMonitor monitor) protected voidsetModelState(TableData<ROW_OBJECT> allData, TableData<ROW_OBJECT> filteredData) voidsetTableFilter(TableFilter<ROW_OBJECT> tableFilter) Sets the givenTableFilteron this model.protected voidsort(List<ROW_OBJECT> data, TableSortingContext<ROW_OBJECT> tableSortingContext) A default sort method that uses theCollections.sort(List, Comparator)method for sorting.protected voidprotected voidvoidupdateObject(ROW_OBJECT obj) Schedules an update for the specified object.Methods inherited from class docking.widgets.table.GDynamicColumnTableModel
addTableColumn, addTableColumn, addTableColumns, addTableColumns, createSortComparatorForColumn, createTableColumnDescriptor, disposeDynamicColumnData, getColumn, getColumnClass, getColumnCount, getColumnDescription, getColumnDisplayName, getColumnIndex, getColumnIndex, getColumnName, getColumnSettings, getColumnSettingsDefinitions, getColumnValueForRow, getDataSource, getDefaultColumnCount, getHeaderRenderer, getMaxLines, getPreferredColumnWidth, getRenderer, getTableColumnDescriptor, getUniqueIdentifier, isDefaultColumn, isSortable, isVisibleByDefault, loadDiscoveredTableColumns, reloadColumns, removeTableColumn, removeTableColumns, setAllColumnSettings, stateChangedMethods inherited from class docking.widgets.table.AbstractSortedTableModel
addSortListener, cleanupTableSortState, createSortingContext, getIndexForRowObject, getIndexForRowObject, getPendingSortState, getPrimarySortColumnIndex, getRowIndex, getRowObject, getTableSortState, isSorted, isSortPending, notifyModelSorted, setDefaultTableSortState, setTableSortState, sortCompletedMethods inherited from class docking.widgets.table.AbstractGTableModel
getLastSelectedObjects, isDisposed, refresh, setLastSelectedObjectsMethods inherited from class javax.swing.table.AbstractTableModel
addTableModelListener, findColumn, fireTableCellUpdated, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getListeners, getTableModelListeners, isCellEditable, removeTableModelListener, setValueAtMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface docking.widgets.table.RowObjectTableModel
fireTableDataChanged, getColumnValueForRow, getRowIndex, getRowObjectMethods inherited from interface javax.swing.table.TableModel
addTableModelListener, getColumnClass, getColumnCount, getColumnName, isCellEditable, removeTableModelListener, setValueAt
-
Field Details
-
allData
-
filteredData
-
-
Constructor Details
-
ThreadedTableModel
-
ThreadedTableModel
protected ThreadedTableModel(String modelName, ServiceProvider serviceProvider, TaskMonitor monitor) -
ThreadedTableModel
protected ThreadedTableModel(String modelName, ServiceProvider serviceProvider, TaskMonitor monitor, boolean loadIncrementally) The constructor through which all others pass.This class must be created on the Swing Thread (see
SwingUtilities.isEventDispatchThread()).- Parameters:
modelName- The name of the table model. This value will appear as the name of the thread that manipulates the table data.serviceProvider- The service provider of the environment. This will be used to allow column objects to have access to services. This man not be null.monitor- The task monitor to use when manipulating table data (i.e., loading, sorting, filtering).loadIncrementally- When true, the table's results will be displayed as they are loaded; when false, the table's results will be displayed after all items have been loaded. Passing true is helpful for models that take a long time to run and periodically find data. Alternatively, for quick loading tables, the overhead of loading incrementally is wasteful.
-
-
Method Details
-
startInitialLoad
protected void startInitialLoad() -
isLoadIncrementally
public boolean isLoadIncrementally() -
initializeSorting
protected void initializeSorting()Description copied from class:AbstractSortedTableModelThis method is an attempt to help models that forget to call fireTableDataChanged(). It is expected that tables will fire the notification when they are ready to display data, even if they have that data at construction time. We put this call here so that the forgetful subclasses will have their data sorted for them the first time that this table tries to render itself.- Overrides:
initializeSortingin classAbstractSortedTableModel<ROW_OBJECT>
-
createAccumulator
-
createIncrementalLoadJob
-
doLoad
protected abstract void doLoad(Accumulator<ROW_OBJECT> accumulator, TaskMonitor monitor) throws CancelledException The basic method that all children must implement. This is where children load their data.- Parameters:
accumulator- the datastructure into which you should incrementally place you table row datamonitor- the task monitor to check for cancellations and to update progress- Throws:
CancelledException- if the task monitor has been cancelled and a call is made tomonitor.checkCancelled();.
-
getModelData
Description copied from interface:RowObjectTableModelImplementors should return the current data of the model. For models that support filtering, this will be the filtered version of the data. Furthermore, the data should be the underlying data and not a copy, as this method will potentially sort the given data.For those subclasses using an array, you may use the
Arraysclass to create a list backed by the array (Arrays.asList(Object...)).- Specified by:
getModelDatain interfaceRowObjectTableModel<ROW_OBJECT>- Returns:
- the model data.
-
getUnfilteredData
- Specified by:
getUnfilteredDatain interfaceRowObjectFilterModel<ROW_OBJECT>
-
getUnfilteredIndexForRowObject
Performs a quick search for the given item in the unfiltered data of this model. To search only for object that are visible in the GUI, useAbstractSortedTableModel.getIndexForRowObject(Object).- Parameters:
rowObject- The object for which to search- Returns:
- The index for the given object; a negative value if the object is not in the list
- See Also:
-
getUnfilteredRowObjectForIndex
Returns the row object at the given index in the unfiltered data of this model; null if the index is negative or larger than the list. To search only for object that are visible in the GUI, useAbstractSortedTableModel.getRowObject(int).- Parameters:
row- The row index for which to get a row object- Returns:
- Returns the row object at the given index in the unfiltered data of this model; null if the index is negative or larger than the list.
- See Also:
-
createSortComparator
Description copied from class:AbstractSortedTableModelAn extension point for subclasses to insert their own comparator objects for their data. Subclasses can create comparators for a single or multiple columns, as desired.- Overrides:
createSortComparatorin classGDynamicColumnTableModel<ROW_OBJECT,DATA_SOURCE> - Parameters:
columnIndex- the column index- Returns:
- the comparator
-
getValueAt
Description copied from class:AbstractSortedTableModelThe default implementation ofTableModel.getValueAt(int, int)that calls the abstractRowObjectTableModel.getColumnValueForRow(Object, int).- Specified by:
getValueAtin interfaceTableModel- Overrides:
getValueAtin classAbstractSortedTableModel<ROW_OBJECT>
-
sort
Description copied from class:AbstractSortedTableModelA default sort method that uses theCollections.sort(List, Comparator)method for sorting. Implementors with reasonably sized data sets can rely on this method. For data sets that can become large, theThreadedTableModelis the recommended base class, as it handles loading/sorting/filtering in a threaded way.- Overrides:
sortin classAbstractSortedTableModel<ROW_OBJECT>- Parameters:
data- The data to be sortedtableSortingContext- The context required to sort (it contains the sorting columns, a comparator for sorting, etc...).
-
getTableFilter
Returns the filter for this model. The value returned from this method will not be null, but will instead be an instanceofNullTableFilterwhen no filter is applied. The value returned from this method may not actually yet be applied, depending upon when the background thread finishes loading.- Specified by:
getTableFilterin interfaceRowObjectFilterModel<ROW_OBJECT>- Returns:
- the filter
-
hasFilter
public boolean hasFilter()Returns true if there is a table filter set that is not theNullTableFilter.- Returns:
- true if there is a table filter set.
-
doFilter
protected List<ROW_OBJECT> doFilter(List<ROW_OBJECT> data, TableSortingContext<ROW_OBJECT> lastSortingContext, TaskMonitor monitor) throws CancelledException Override this to change how filtering is performed. This implementation will do nothing if aTableFilterhas not been set via a call tosetTableFilter(TableFilter).- Parameters:
data- The list of data to be filtered.lastSortingContext- the comparator used to sort data. This can be used by overridden filter methods that need to query data about how the table is sorted.monitor- the progress monitor to check for cancellation.- Returns:
- The new filtered list of data. If no filtering takes place, then the original list should be returned.
- Throws:
CancelledException- If the filter operation is cancelled.
-
getUnfilteredRowCount
public int getUnfilteredRowCount()- Specified by:
getUnfilteredRowCountin interfaceRowObjectFilterModel<ROW_OBJECT>
-
isFiltered
public boolean isFiltered()- Specified by:
isFilteredin interfaceRowObjectFilterModel<ROW_OBJECT>
-
setTableFilter
Sets the givenTableFilteron this model. This table filter will then be used by this model in the defaultdoFilter(List, TableSortingContext, TaskMonitor)method.- Specified by:
setTableFilterin interfaceRowObjectFilterModel<ROW_OBJECT>- Parameters:
tableFilter- The filter to use for table filtering.
-
updateObject
Schedules an update for the specified object.- Parameters:
obj- the object for which to schedule the update
-
addObject
Adds the specified object to this model and schedules an update.- Parameters:
obj- the object to add
-
removeObject
Removes the specified object from this model and schedules an update.Note: for this method to function correctly, the given object must compare as
Object.equals(Object)and have the sameObject.hashCode()as the object to be removed from the table data. This allows clients to create proxy objects to pass into this method, as long as they honor those requirements.If this model's data is sorted, then a binary search will be used to locate the item to be removed. However, for this to work, all field used to sort the data must still be available from the original object and must be the same values. If this is not true, then the binary search will not work and a brute force search will be used.
- Parameters:
obj- the object to remove
-
updateNow
protected void updateNow() -
backgroundWorkCancelled
protected void backgroundWorkCancelled()Called when aTableUpdateJobis cancelled by the user via the Gui. (Disposing of the table takes a different path.) This is not called when using an incrementally loading table model. -
setModelState
-
getAllData
-
isBusy
public boolean isBusy()Returns true if the model is busy. "Busy" means the model is either loading or updating.- Returns:
- true if the model is busy
-
reSort
public void reSort()Resort the table using the current sort criteria. This is useful if the data in the table has changed and is no longer sorted properly. If the setSort method is used, nothing will happen because the table will think it is already sorted on that criteria.- Overrides:
reSortin classAbstractSortedTableModel<ROW_OBJECT>
-
reFilter
public void reFilter()Triggers this class to filter the contents of the data. -
reload
public void reload()Schedules the model to completely reload its underlying data. -
fireTableChanged
- Overrides:
fireTableChangedin classAbstractSortedTableModel<ROW_OBJECT>
-
dispose
public void dispose()Disposes this model. Once a model has been disposed, it cannot be reused.- Overrides:
disposein classGDynamicColumnTableModel<ROW_OBJECT,DATA_SOURCE>
-
clearData
protected void clearData()This method will clear all data and trigger fire a table data changed. Use this method to immediately clear all data. This is useful when you want to reload your table data and not have any old data hanging around being painted, which can produce odd results. -
cancelAllUpdates
public void cancelAllUpdates()Cancels all current and pending updates to the model. -
getRowCount
public int getRowCount()- Specified by:
getRowCountin interfaceTableModel- Overrides:
getRowCountin classAbstractGTableModel<ROW_OBJECT>
-
getViewRow
public int getViewRow(int modelRow) Given a row index for the raw (unfiltered) model, return the corresponding index in the view (filtered) model.- Specified by:
getViewRowin interfaceRowObjectFilterModel<ROW_OBJECT>- Parameters:
modelRow- The row index that corresponds to unfiltered data- Returns:
- the index of that row in the filtered data
- See Also:
-
getModelRow
public int getModelRow(int viewRow) Given a row index for the view (filtered) model, return the corresponding index in the raw (unfiltered) model.- Specified by:
getModelRowin interfaceRowObjectFilterModel<ROW_OBJECT>- Parameters:
viewRow- The row index that corresponds to filtered data- Returns:
- the index of that row in the unfiltered data
- See Also:
-
getViewIndex
Description copied from interface:RowObjectFilterModelReturns the view index of the given item. When filtered, this is the index is the smaller, visible set of data; when unfiltered, this index is the same as that returned byRowObjectFilterModel.getModelIndex(Object).This operation will be O(n) unless the implementation is sorted, in which case the operation is O(log n), as it uses a binary search.
- Specified by:
getViewIndexin interfaceRowObjectFilterModel<ROW_OBJECT>- Parameters:
t- the item- Returns:
- the view index
-
getModelIndex
Description copied from interface:RowObjectFilterModelReturns the model index of the given item. When filtered, this is the index is the larger, set of data; when unfiltered, this index is the same as that returned byRowObjectFilterModel.getModelIndex(Object).This operation will be O(n) unless the implementation is sorted, in which case the operation is O(log n), as it uses a binary search.
- Specified by:
getModelIndexin interfaceRowObjectFilterModel<ROW_OBJECT>- Parameters:
t- the item- Returns:
- the model index
-
getName
Returns the name of this model.- Specified by:
getNamein interfaceRowObjectTableModel<ROW_OBJECT>- Returns:
- the name of this model.
-
getRowObjects
Returns the corresponding row objects for the specified rows.- Parameters:
rows- the table rows- Returns:
- the corresponding database keys.
-
getAddRemoveStrategy
Returns the strategy to use for performing adds and removes to this table. Subclasses can override this method to customize this process for their particular type of data. See the implementations ofTableAddRemoveStrategyfor details.Note: The default add/remove strategy assumes that objects to be removed will be the same instance that is in the list of this model. This allows the
Object.equals(Object)andObject.hashCode()to be used when removing the object from the list. If you model does not pass the same instance intoremoveObject(Object), then you will need to update your add/remove strategy accordingly.- Returns:
- the strategy
-
setIncrementalTaskMonitor
-
addInitialLoadListener
Adds a listener that will be notified of the first table load of this model. After the initial load, the listener is removed.- Parameters:
listener- the listener
-
addInitialLoadListener
Adds a consumer that will be notified when the model finishes loading. The consumer is passed a boolean that indicates is true if the loading was cancelled. After the table completes loading, the listener is removed.- Parameters:
completedLoadingConsumer- the consumer to be notified when the table is done loading
-
addThreadedTableModelListener
This is a way to know about updates from the table.- Parameters:
listener- the listener to add- See Also:
-
removeThreadedTableModelListener
-