]>
Commit | Line | Data |
---|---|---|
d01e8234 | 1 | # Copyright 2023-2025 Free Software Foundation, Inc. |
d466f749 TT |
2 | |
3 | # This program is free software; you can redistribute it and/or modify | |
4 | # it under the terms of the GNU General Public License as published by | |
5 | # the Free Software Foundation; either version 3 of the License, or | |
6 | # (at your option) any later version. | |
7 | # | |
8 | # This program is distributed in the hope that it will be useful, | |
9 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
11 | # GNU General Public License for more details. | |
12 | # | |
13 | # You should have received a copy of the GNU General Public License | |
14 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
15 | ||
16 | import base64 | |
c2cf30e7 | 17 | |
d466f749 TT |
18 | import gdb |
19 | ||
c2cf30e7 | 20 | from .server import capability, request |
06e967db | 21 | from .startup import DAPException |
d466f749 TT |
22 | |
23 | ||
24 | @request("readMemory") | |
25 | @capability("supportsReadMemoryRequest") | |
51058658 | 26 | def read_memory(*, memoryReference: str, offset: int = 0, count: int, **extra): |
d466f749 | 27 | addr = int(memoryReference, 0) + offset |
06e967db TV |
28 | try: |
29 | buf = gdb.selected_inferior().read_memory(addr, count) | |
30 | except MemoryError as e: | |
31 | raise DAPException("Out of memory") from e | |
d466f749 TT |
32 | return { |
33 | "address": hex(addr), | |
c98921b2 | 34 | "data": base64.b64encode(buf).decode("ASCII"), |
d466f749 TT |
35 | } |
36 | ||
37 | ||
d466f749 TT |
38 | @request("writeMemory") |
39 | @capability("supportsWriteMemoryRequest") | |
51058658 | 40 | def write_memory(*, memoryReference: str, offset: int = 0, data: str, **extra): |
d466f749 | 41 | addr = int(memoryReference, 0) + offset |
c98921b2 TT |
42 | buf = base64.b64decode(data) |
43 | gdb.selected_inferior().write_memory(addr, buf) |