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
|
// Copyright 2018 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include "Common/Debug/Watches.h"
#include <algorithm>
#include <locale>
#include <sstream>
#include <fmt/format.h>
namespace Common::Debug
{
Watch::Watch(u32 address_, std::string name_, State is_enabled_)
: address(address_), name(std::move(name_)), is_enabled(is_enabled_)
{
}
std::size_t Watches::SetWatch(u32 address, std::string name)
{
const std::size_t size = m_watches.size();
for (std::size_t index = 0; index < size; index++)
{
if (m_watches.at(index).address == address)
{
UpdateWatch(index, address, name);
return index;
}
}
m_watches.emplace_back(address, std::move(name), Watch::State::Enabled);
return size;
}
const Watch& Watches::GetWatch(std::size_t index) const
{
return m_watches.at(index);
}
const std::vector<Watch>& Watches::GetWatches() const
{
return m_watches;
}
void Watches::UnsetWatch(u32 address)
{
std::erase_if(m_watches, [address](const auto& watch) { return watch.address == address; });
}
void Watches::UpdateWatch(std::size_t index, u32 address, std::string name)
{
m_watches[index].address = address;
m_watches[index].name = std::move(name);
}
void Watches::UpdateWatchAddress(std::size_t index, u32 address)
{
m_watches[index].address = address;
}
void Watches::UpdateWatchName(std::size_t index, std::string name)
{
m_watches[index].name = std::move(name);
}
void Watches::UpdateWatchLockedState(std::size_t index, bool locked)
{
m_watches[index].locked = locked;
}
void Watches::EnableWatch(std::size_t index)
{
m_watches[index].is_enabled = Watch::State::Enabled;
}
void Watches::DisableWatch(std::size_t index)
{
m_watches[index].is_enabled = Watch::State::Disabled;
}
bool Watches::HasEnabledWatch(u32 address) const
{
return std::ranges::any_of(m_watches, [address](const auto& watch) {
return watch.address == address && watch.is_enabled == Watch::State::Enabled;
});
}
void Watches::RemoveWatch(std::size_t index)
{
m_watches.erase(m_watches.begin() + index);
}
void Watches::LoadFromStrings(std::span<const std::string> watches)
{
for (const std::string& watch : watches)
{
std::istringstream ss(watch);
ss.imbue(std::locale::classic());
u32 address;
std::string name;
ss >> std::hex >> address;
ss >> std::ws;
std::getline(ss, name);
SetWatch(address, name);
}
}
std::vector<std::string> Watches::SaveToStrings() const
{
std::vector<std::string> watches;
watches.reserve(m_watches.size());
for (const auto& watch : m_watches)
watches.emplace_back(fmt::format("{:x} {}", watch.address, watch.name));
return watches;
}
void Watches::Clear()
{
m_watches.clear();
}
} // namespace Common::Debug
|