Theia API Documentation v1.65.0
    Preparing search index...

    Module @theia/memory-inspector


    theia-ext-logo

    ECLIPSE THEIA - MEMORY-INSPECTOR EXTENSION


    This extension contributes a set of widgets for viewing memory in different ways.

    This extension must be used in conjunction with a Debug Adapter that implements a ReadMemoryRequest handler or alternative custom request that returns memory data. It has been tested against the CDT-GDB Adapter used as the backend for the CDT-GDB VSCode plugin. This repository is configured to download that plugin as part of its build routine. If you intend to use this extension with a different debug adapter, you may need to implement a custom MemoryProvider to handle any peculiarities of the requests and responses used by your adapter.

    The basic MemoryWidget class is a wrapper around two functional widgets, a MemoryOptionsWidget and aMemoryTableWidget. The MemoryOptionsWidget is responsible for configuring the display and fetching memory, and the MemoryTableWidget renders the memory according to the options specified by the user in the MemoryOptionsWidget. The basic combination of these three classes offers variable highlighting, ascii display, and dynamic updating in response to events from the debug session, as well as the option to lock the view to ignore changes from the session.

    The MemoryDiffWidget is an elaboration of the MemoryWidget type that allows side-by-side comparison of the contents of two MemoryWidgets.

    The RegisterWidget offers functionality to view and manipulate those values when using a debug adapter that reports register contents.

    The MemoryEditableTableWidget adds UI functionality to allow users to modify values in the table display and send them to a backend that supports that operation.

    The widgets are created by the MemoryWidgetManager, and modifying the createNewMemoryWidget() method of that service allows you to change what kind of widget is instantiated and under what circumstances. The widgets get memory through the MemoryProviderService, which delegates to implementations MemoryProvider interface that are bound as MemoryProvider contributions.

    "Theia" is a trademark of the Eclipse Foundation https://www.eclipse.org/theia

    Modules

    browser/diff-widget/memory-diff-options-widget
    browser/diff-widget/memory-diff-select-widget
    browser/diff-widget/memory-diff-table-widget
    browser/diff-widget/memory-diff-widget-types
    browser/editable-widget/memory-editable-table-widget
    browser/memory-inspector-frontend-contribution
    browser/memory-inspector-frontend-module
    browser/memory-provider/cdt-gdb-memory-provider
    browser/memory-provider/memory-provider
    browser/memory-provider/memory-provider-service
    browser/memory-widget/memory-options-widget
    browser/memory-widget/memory-table-widget
    browser/memory-widget/memory-widget
    browser/register-widget/register-filter-service
    browser/register-widget/register-options-widget
    browser/register-widget/register-table-widget
    browser/register-widget/register-widget-types
    browser/utils/memory-commands
    browser/utils/memory-hover-renderer
    browser/utils/memory-recents
    browser/utils/memory-widget-components
    browser/utils/memory-widget-manager
    browser/utils/memory-widget-utils
    browser/utils/memory-widget-variable-utils
    browser/utils/multi-select-bar
    browser/wrapper-widgets/memory-dock-panel
    browser/wrapper-widgets/memory-dockpanel-placeholder-widget
    browser/wrapper-widgets/memory-layout-widget
    common/util