mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 21:11:25 +12:00
VFS: Add device_info to vfs config
This commit is contained in:
parent
de988f6a76
commit
b888a6ba37
7 changed files with 180 additions and 23 deletions
|
@ -37,7 +37,8 @@ namespace cfg
|
|||
string, // cfg::string type
|
||||
set, // cfg::set_entry type
|
||||
map, // cfg::map_entry type
|
||||
log,
|
||||
log, // cfg::log_entry type
|
||||
device, // cfg::device_entry type
|
||||
};
|
||||
|
||||
// Config tree entry abstract base class
|
||||
|
@ -521,4 +522,40 @@ namespace cfg
|
|||
|
||||
void from_default() override;
|
||||
};
|
||||
|
||||
struct device_info
|
||||
{
|
||||
std::string path;
|
||||
std::string serial;
|
||||
std::string vid;
|
||||
std::string pid;
|
||||
};
|
||||
|
||||
class device_entry final : public _base
|
||||
{
|
||||
map_of_type<device_info> m_map{};
|
||||
map_of_type<device_info> m_def{};
|
||||
|
||||
public:
|
||||
device_entry(node* owner, const std::string& name, map_of_type<device_info> def = {})
|
||||
: _base(type::device, owner, name, true)
|
||||
, m_map(std::move(def))
|
||||
{
|
||||
m_def = m_map;
|
||||
}
|
||||
|
||||
const map_of_type<device_info>& get_map() const
|
||||
{
|
||||
return m_map;
|
||||
}
|
||||
|
||||
const map_of_type<device_info>& get_default() const
|
||||
{
|
||||
return m_def;
|
||||
}
|
||||
|
||||
void set_map(map_of_type<device_info>&& map);
|
||||
|
||||
void from_default() override;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue