2018-01-16 18:32:59 -08:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-01-19 01:56:18 -08:00
|
|
|
#include "common/uuid.h"
|
2019-06-26 23:44:42 -07:00
|
|
|
#include "core/hle/service/glue/manager.h"
|
2018-01-16 18:32:59 -08:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2018-04-19 18:41:44 -07:00
|
|
|
namespace Service::Account {
|
2018-01-16 18:32:59 -08:00
|
|
|
|
2018-08-20 16:00:58 -07:00
|
|
|
class ProfileManager;
|
|
|
|
|
2018-04-10 00:18:52 -07:00
|
|
|
class Module final {
|
|
|
|
public:
|
|
|
|
class Interface : public ServiceFramework<Interface> {
|
|
|
|
public:
|
2020-11-26 12:19:08 -08:00
|
|
|
explicit Interface(std::shared_ptr<Module> module_,
|
|
|
|
std::shared_ptr<ProfileManager> profile_manager_, Core::System& system_,
|
2019-06-16 03:18:35 -07:00
|
|
|
const char* name);
|
2018-08-20 16:00:58 -07:00
|
|
|
~Interface() override;
|
2018-04-10 00:18:52 -07:00
|
|
|
|
2018-08-07 19:39:12 -07:00
|
|
|
void GetUserCount(Kernel::HLERequestContext& ctx);
|
2018-04-10 00:18:52 -07:00
|
|
|
void GetUserExistence(Kernel::HLERequestContext& ctx);
|
|
|
|
void ListAllUsers(Kernel::HLERequestContext& ctx);
|
|
|
|
void ListOpenUsers(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetLastOpenedUser(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetProfile(Kernel::HLERequestContext& ctx);
|
2019-06-26 23:44:42 -07:00
|
|
|
void InitializeApplicationInfo(Kernel::HLERequestContext& ctx);
|
|
|
|
void InitializeApplicationInfoRestricted(Kernel::HLERequestContext& ctx);
|
2018-04-10 00:18:52 -07:00
|
|
|
void GetBaasAccountManagerForApplication(Kernel::HLERequestContext& ctx);
|
2018-08-10 17:33:11 -07:00
|
|
|
void IsUserRegistrationRequestPermitted(Kernel::HLERequestContext& ctx);
|
2018-11-06 16:45:01 -08:00
|
|
|
void TrySelectUserWithoutInteraction(Kernel::HLERequestContext& ctx);
|
2019-06-16 02:06:33 -07:00
|
|
|
void IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx);
|
2019-07-03 05:57:41 -07:00
|
|
|
void GetProfileEditor(Kernel::HLERequestContext& ctx);
|
2020-04-28 07:37:47 -07:00
|
|
|
void ListQualifiedUsers(Kernel::HLERequestContext& ctx);
|
2020-09-17 17:45:33 -07:00
|
|
|
void LoadOpenContext(Kernel::HLERequestContext& ctx);
|
2020-06-27 23:44:36 -07:00
|
|
|
void ListOpenContextStoredUsers(Kernel::HLERequestContext& ctx);
|
2021-01-19 01:56:18 -08:00
|
|
|
void StoreSaveDataThumbnailApplication(Kernel::HLERequestContext& ctx);
|
|
|
|
void StoreSaveDataThumbnailSystem(Kernel::HLERequestContext& ctx);
|
2018-04-10 00:18:52 -07:00
|
|
|
|
2019-06-26 23:44:42 -07:00
|
|
|
private:
|
2020-04-29 03:38:07 -07:00
|
|
|
ResultCode InitializeApplicationInfoBase();
|
2021-01-19 01:56:18 -08:00
|
|
|
void StoreSaveDataThumbnail(Kernel::HLERequestContext& ctx, const Common::UUID& uuid,
|
|
|
|
const u64 tid);
|
2019-06-26 23:44:42 -07:00
|
|
|
|
|
|
|
enum class ApplicationType : u32_le {
|
|
|
|
GameCard = 0,
|
|
|
|
Digital = 1,
|
|
|
|
Unknown = 3,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ApplicationInfo {
|
|
|
|
Service::Glue::ApplicationLaunchProperty launch_property;
|
|
|
|
ApplicationType application_type;
|
|
|
|
|
|
|
|
constexpr explicit operator bool() const {
|
|
|
|
return launch_property.title_id != 0x0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ApplicationInfo application_info{};
|
|
|
|
|
2018-04-10 00:18:52 -07:00
|
|
|
protected:
|
|
|
|
std::shared_ptr<Module> module;
|
2018-08-10 20:17:06 -07:00
|
|
|
std::shared_ptr<ProfileManager> profile_manager;
|
2018-04-10 00:18:52 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-01-16 18:32:59 -08:00
|
|
|
/// Registers all ACC services with the specified service manager.
|
2019-06-16 15:17:26 -07:00
|
|
|
void InstallInterfaces(Core::System& system);
|
2018-01-16 18:32:59 -08:00
|
|
|
|
2018-04-19 18:41:44 -07:00
|
|
|
} // namespace Service::Account
|