-
Notifications
You must be signed in to change notification settings - Fork 12
/
memory-widget.tsx
151 lines (140 loc) · 6.89 KB
/
memory-widget.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/********************************************************************************
* Copyright (C) 2022 Ericsson, Arm and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the Eclipse
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
* with the GNU Classpath Exception which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
********************************************************************************/
import React from 'react';
import { WebviewIdMessageParticipant } from 'vscode-messenger-common';
import * as manifest from '../../common/manifest';
import { Memory } from '../../common/memory';
import { WebviewSelection } from '../../common/messaging';
import { MemoryOptions, ReadMemoryArguments, SessionContext } from '../../common/messaging';
import { MemoryDataDisplaySettings } from '../../common/webview-configuration';
import { ColumnStatus } from '../columns/column-contribution-service';
import { HoverService } from '../hovers/hover-service';
import { Decoration, MemoryState } from '../utils/view-types';
import { createAppVscodeContext, VscodeContext } from '../utils/vscode-contexts';
import { MemoryTable } from './memory-table';
import { OptionsWidget } from './options-widget';
interface MemoryWidgetProps extends MemoryDataDisplaySettings {
messageParticipant: WebviewIdMessageParticipant;
sessionContext: SessionContext;
configuredReadArguments: Required<ReadMemoryArguments>;
activeReadArguments: Required<ReadMemoryArguments>;
memory?: Memory;
title: string;
decorations: Decoration[];
hoverService: HoverService;
columns: ColumnStatus[];
effectiveAddressLength: number;
isMemoryFetching: boolean;
hasDebuggerDefaults?: boolean;
settingsContributionMessage?: string;
updateMemoryState: (state: Partial<MemoryState>) => void;
toggleColumn(id: string, active: boolean): void;
isFrozen: boolean;
toggleFrozen: () => void;
updateMemoryDisplaySettings: (memoryArguments: Partial<MemoryDataDisplaySettings>) => void;
updateTitle: (title: string) => void;
fetchMemory(partialOptions?: MemoryOptions): Promise<void>;
storeMemory(): void;
applyMemory(): void;
}
interface MemoryWidgetState {
}
const defaultOptions: MemoryWidgetState = {
};
export class MemoryWidget extends React.Component<MemoryWidgetProps, MemoryWidgetState> {
protected optionsWidget = React.createRef<OptionsWidget>();
protected memoryTable = React.createRef<MemoryTable>();
constructor(props: MemoryWidgetProps) {
super(props);
this.state = { ...defaultOptions };
}
protected createVscodeContext(): VscodeContext {
const visibleColumns = this.props.columns.filter(candidate => candidate.active).map(column => column.contribution.id);
const { messageParticipant, showRadixPrefix, endianness, bytesPerMau, activeReadArguments, hasDebuggerDefaults } = this.props;
return createAppVscodeContext({
messageParticipant,
showRadixPrefix,
showAsciiColumn: visibleColumns.includes(manifest.CONFIG_SHOW_ASCII_COLUMN),
showVariablesColumn: visibleColumns.includes(manifest.CONFIG_SHOW_VARIABLES_COLUMN),
activeReadArguments,
hasDebuggerDefaults,
endianness,
bytesPerMau,
});
}
override render(): React.ReactNode {
return (<div className='flex flex-column h-full' {...this.createVscodeContext()}>
<OptionsWidget
ref={this.optionsWidget}
sessionContext={this.props.sessionContext}
title={this.props.title}
updateTitle={this.props.updateTitle}
columnOptions={this.props.columns}
configuredReadArguments={this.props.configuredReadArguments}
activeReadArguments={this.props.activeReadArguments}
endianness={this.props.endianness}
bytesPerMau={this.props.bytesPerMau}
mausPerGroup={this.props.mausPerGroup}
groupsPerRow={this.props.groupsPerRow}
refreshOnStop={this.props.refreshOnStop}
periodicRefresh={this.props.periodicRefresh}
periodicRefreshInterval={this.props.periodicRefreshInterval}
updateMemoryState={this.props.updateMemoryState}
updateRenderOptions={this.props.updateMemoryDisplaySettings}
addressPadding={this.props.addressPadding}
addressRadix={this.props.addressRadix}
showRadixPrefix={this.props.showRadixPrefix}
settingsContributionMessage={this.props.settingsContributionMessage}
fetchMemory={this.props.fetchMemory}
toggleColumn={this.props.toggleColumn}
toggleFrozen={this.props.toggleFrozen}
isFrozen={this.props.isFrozen}
storeMemory={this.props.storeMemory}
applyMemory={this.props.applyMemory}
/>
<MemoryTable
ref={this.memoryTable}
configuredReadArguments={this.props.configuredReadArguments}
activeReadArguments={this.props.activeReadArguments}
decorations={this.props.decorations}
hoverService={this.props.hoverService}
columnOptions={this.props.columns.filter(candidate => candidate.active)}
memory={this.props.memory}
endianness={this.props.endianness}
bytesPerMau={this.props.bytesPerMau}
mausPerGroup={this.props.mausPerGroup}
groupsPerRow={this.props.groupsPerRow}
refreshOnStop={this.props.refreshOnStop}
periodicRefresh={this.props.periodicRefresh}
periodicRefreshInterval={this.props.periodicRefreshInterval}
effectiveAddressLength={this.props.effectiveAddressLength}
fetchMemory={this.props.fetchMemory}
isMemoryFetching={this.props.isMemoryFetching}
scrollingBehavior={this.props.scrollingBehavior}
addressPadding={this.props.addressPadding}
addressRadix={this.props.addressRadix}
showRadixPrefix={this.props.showRadixPrefix}
isFrozen={this.props.isFrozen}
/>
</div>);
}
public showAdvancedOptions(): void {
this.optionsWidget.current?.showAdvancedOptions();
}
public getWebviewSelection(): WebviewSelection {
return this.memoryTable.current?.getWebviewSelection() ?? {};
}
}