Interface DataTypeManagerService


  • public interface DataTypeManagerService
    Service to provide list of cycle groups and data types identified as "favorites." Favorites will show up on the popup menu for creating data and defining function return types and parameters.
    • Method Detail

      • getFavorites

        java.util.List<DataType> getFavorites()
        Get the data types marked as favorites that will show up on a popup menu.
      • addDataTypeManagerChangeListener

        void addDataTypeManagerChangeListener​(DataTypeManagerChangeListener listener)
        Adds a listener to be notified when changes occur to any open datatype manager.
        Parameters:
        listener - the listener to be added.
      • removeDataTypeManagerChangeListener

        void removeDataTypeManagerChangeListener​(DataTypeManagerChangeListener listener)
        Removes the given listener from receiving dataTypeManger change notifications.
        Parameters:
        listener - the listener to be removed.
      • setRecentlyUsed

        void setRecentlyUsed​(DataType dt)
        Set the given data type as the most recently used to apply a data type to a Program.
        Parameters:
        dt - data type that was most recently used
      • getRecentlyUsed

        DataType getRecentlyUsed()
        Get the data type that was most recently used to apply data to a Program.
        Returns:
        data type that was most recently used
      • getEditorHelpLocation

        HelpLocation getEditorHelpLocation​(DataType dataType)
        Gets the location of the help for editing the specified data type.
        Parameters:
        dataType - the data type to be edited.
        Returns:
        the help location for editing the data type.
      • isEditable

        boolean isEditable​(DataType dt)
        Determine if the indicated data type can be edited (i.e. it has an editor that this service knows how to invoke).
        Parameters:
        dt - data type to be edited
        Returns:
        true if this service can invoke an editor for changing the data type.
      • edit

        void edit​(DataType dt)
        Pop up an editor dialog for the given data type.
        Parameters:
        dt - data type that either a Structure or a Union; built in types cannot be edited
        Throws:
        java.lang.IllegalArgumentException - if the given has not been resolved by a DataTypeManager; in other words, if DataType.getDataTypeManager() returns null.
      • getBuiltInDataTypesManager

        DataTypeManager getBuiltInDataTypesManager()
        Get the data type manager that has all of the built in types.
        Returns:
        data type manager for built in data types
      • getDataTypeManagers

        DataTypeManager[] getDataTypeManagers()
        Gets the open data type managers.
        Returns:
        the open data type managers.
      • closeArchive

        void closeArchive​(DataTypeManager dtm)
        Closes the archive for the given DataTypeManager. This will ignore request to close the open Program's manager and the built-in manager.
        Parameters:
        dtm - the data type manager of the archive to close
      • openDataTypeArchive

        DataTypeManager openDataTypeArchive​(java.lang.String archiveName)
                                     throws java.io.IOException,
                                            ghidra.app.plugin.core.datamgr.archive.DuplicateIdException
        Opens the specified data type archive contained within the Ghidra installation. NOTE: This is predicated upon all archive files having a unique name within the installation. Any path prefix specified may prevent the file from opening (or reopening) correctly.
        Parameters:
        archiveName - archive file name (i.e., "generic_C_lib")
        Returns:
        the data type archive or null if an archive with the specified name can not be found.
        Throws:
        java.io.IOException - if an i/o error occurs opening the data type archive
        ghidra.app.plugin.core.datamgr.archive.DuplicateIdException - if another archive with the same ID is already open
      • openArchive

        ghidra.app.plugin.core.datamgr.archive.Archive openArchive​(DataTypeArchive dataTypeArchive)
        A method to open an Archive for the given, pre-existing DataTypeArchive (like one that was opened during the import process.
        Parameters:
        dataTypeArchive - the archive from which to create an Archive
        Returns:
        an Archive based upon the given DataTypeArchive
      • openArchive

        ghidra.app.plugin.core.datamgr.archive.Archive openArchive​(java.io.File file,
                                                                   boolean acquireWriteLock)
                                                            throws java.io.IOException,
                                                                   ghidra.app.plugin.core.datamgr.archive.DuplicateIdException
        A method to open an Archive for the given, pre-existing archive file (*.gdt)
        Parameters:
        file - data type archive file
        acquireWriteLock - true if write lock should be acquired (i.e., open for update)
        Returns:
        an Archive based upon the given archive file
        Throws:
        LockException
        java.io.IOException - if an i/o error occurs opening the data type archive
        ghidra.app.plugin.core.datamgr.archive.DuplicateIdException - if another archive with the same ID is already open
      • getSortedDataTypeList

        java.util.List<DataType> getSortedDataTypeList()
        Gets the sorted list of all datatypes known by this service via it's owned DataTypeManagers. This method can be called frequently, as the underlying data is indexed and only updated as changes are made.
        Returns:
        the sorted list of known data types.
      • setDataTypeSelected

        void setDataTypeSelected​(DataType dataType)
        Selects the given data type in the display of data types. A null dataType value will clear the current selection.
        Parameters:
        dataType - The data type to select.
      • getDataType

        DataType getDataType​(java.lang.String filterText)
        Shows the user a dialog that allows them to choose a data type from a tree of all available data types.
        Parameters:
        filterText - If not null, this text filters the visible data types to only show those that start with the given text
        Returns:
        A data type chosen by the user
      • getDataType

        DataType getDataType​(javax.swing.tree.TreePath selectedPath)
        Shows the user a dialog that allows them to choose a data type from a tree of all available data types.
        Parameters:
        selectedPath - An optional tree path to select in the tree
        Returns:
        A data type chosen by the user
      • getPossibleEquateNames

        java.util.Set<java.lang.String> getPossibleEquateNames​(long value)
        Examines all enum dataTypes for items that match the given value. Returns a list of Strings that might make sense for the given value.
        Parameters:
        value - the value to search for.
        Returns:
        the list of enum item names that match the given value