2021-09-16 04:50:06 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stratosphere.hpp>
|
2021-09-16 06:10:11 +00:00
|
|
|
#include "sprofile_srv_profile_update_observer_impl.hpp"
|
2021-09-16 04:50:06 +00:00
|
|
|
|
|
|
|
namespace ams::sprofile::srv {
|
|
|
|
|
|
|
|
class ProfileManager {
|
|
|
|
public:
|
|
|
|
struct SaveDataInfo {
|
|
|
|
u64 id;
|
|
|
|
const char *mount_name;
|
|
|
|
size_t size;
|
|
|
|
size_t journal_size;
|
|
|
|
u32 flags;
|
|
|
|
};
|
|
|
|
private:
|
|
|
|
private:
|
|
|
|
os::SdkMutex m_general_mutex;
|
|
|
|
os::SdkMutex m_fs_mutex;
|
|
|
|
SaveDataInfo m_save_data_info;
|
2021-09-16 06:10:11 +00:00
|
|
|
bool m_save_file_mounted;
|
2021-09-16 04:50:06 +00:00
|
|
|
/* TODO: util::optional<ProfileImporter> m_profile_importer; */
|
|
|
|
/* TODO: util::optional<ProfileMetadata> m_profile_metadata; */
|
|
|
|
/* TODO: util::optional<ServiceProfile> m_service_profile; */
|
2021-09-16 06:10:11 +00:00
|
|
|
ProfileUpdateObserverManager m_update_observer_manager;
|
2021-09-16 04:50:06 +00:00
|
|
|
public:
|
|
|
|
ProfileManager(const SaveDataInfo &save_data_info);
|
|
|
|
public:
|
2021-09-16 06:10:11 +00:00
|
|
|
void InitializeSaveData();
|
|
|
|
|
|
|
|
ProfileUpdateObserverManager &GetUpdateObserverManager() { return m_update_observer_manager; }
|
2021-09-16 04:50:06 +00:00
|
|
|
private:
|
|
|
|
/* TODO */
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|