2018-01-16 21:32:59 -05:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-06-27 02:44:42 -04:00
|
|
|
#include "core/hle/service/glue/manager.h"
|
2018-01-16 21:32:59 -05:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
namespace Service::Account {
|
2018-01-16 21:32:59 -05:00
|
|
|
|
2018-08-20 19:00:58 -04:00
|
|
|
class ProfileManager;
|
|
|
|
|
2018-04-10 03:18:52 -04:00
|
|
|
class Module final {
|
|
|
|
public:
|
|
|
|
class Interface : public ServiceFramework<Interface> {
|
|
|
|
public:
|
2018-08-10 23:17:06 -04:00
|
|
|
explicit Interface(std::shared_ptr<Module> module,
|
2019-06-16 06:18:35 -04:00
|
|
|
std::shared_ptr<ProfileManager> profile_manager, Core::System& system,
|
|
|
|
const char* name);
|
2018-08-20 19:00:58 -04:00
|
|
|
~Interface() override;
|
2018-04-10 03:18:52 -04:00
|
|
|
|
2018-08-07 22:39:12 -04:00
|
|
|
void GetUserCount(Kernel::HLERequestContext& ctx);
|
2018-04-10 03:18:52 -04: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-27 02:44:42 -04:00
|
|
|
void InitializeApplicationInfo(Kernel::HLERequestContext& ctx);
|
|
|
|
void InitializeApplicationInfoRestricted(Kernel::HLERequestContext& ctx);
|
2018-04-10 03:18:52 -04:00
|
|
|
void GetBaasAccountManagerForApplication(Kernel::HLERequestContext& ctx);
|
2018-08-10 20:33:11 -04:00
|
|
|
void IsUserRegistrationRequestPermitted(Kernel::HLERequestContext& ctx);
|
2018-11-06 19:45:01 -05:00
|
|
|
void TrySelectUserWithoutInteraction(Kernel::HLERequestContext& ctx);
|
2019-06-16 05:06:33 -04:00
|
|
|
void IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx);
|
2019-07-03 08:57:41 -04:00
|
|
|
void GetProfileEditor(Kernel::HLERequestContext& ctx);
|
2020-04-28 10:37:47 -04:00
|
|
|
void ListQualifiedUsers(Kernel::HLERequestContext& ctx);
|
2020-06-28 02:44:36 -04:00
|
|
|
void ListOpenContextStoredUsers(Kernel::HLERequestContext& ctx);
|
2018-04-10 03:18:52 -04:00
|
|
|
|
2019-06-27 02:44:42 -04:00
|
|
|
private:
|
2020-04-29 06:38:07 -04:00
|
|
|
ResultCode InitializeApplicationInfoBase();
|
2019-06-27 02:44:42 -04: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 03:18:52 -04:00
|
|
|
protected:
|
|
|
|
std::shared_ptr<Module> module;
|
2018-08-10 23:17:06 -04:00
|
|
|
std::shared_ptr<ProfileManager> profile_manager;
|
2019-06-16 06:18:35 -04:00
|
|
|
Core::System& system;
|
2018-04-10 03:18:52 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-01-16 21:32:59 -05:00
|
|
|
/// Registers all ACC services with the specified service manager.
|
2019-06-16 18:17:26 -04:00
|
|
|
void InstallInterfaces(Core::System& system);
|
2018-01-16 21:32:59 -05:00
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
} // namespace Service::Account
|