2018-02-15 03:22:41 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2019-04-22 21:53:58 +00:00
|
|
|
namespace Service {
|
|
|
|
|
|
|
|
namespace FileSystem {
|
|
|
|
class FileSystemController;
|
|
|
|
} // namespace FileSystem
|
|
|
|
|
|
|
|
namespace NS {
|
2018-02-15 03:22:41 +00:00
|
|
|
|
2019-05-23 07:55:56 +00:00
|
|
|
class IAccountProxyInterface final : public ServiceFramework<IAccountProxyInterface> {
|
|
|
|
public:
|
|
|
|
explicit IAccountProxyInterface();
|
2019-06-05 20:20:24 +00:00
|
|
|
~IAccountProxyInterface() override;
|
2019-05-23 07:55:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class IApplicationManagerInterface final : public ServiceFramework<IApplicationManagerInterface> {
|
|
|
|
public:
|
|
|
|
explicit IApplicationManagerInterface();
|
2019-06-05 20:20:24 +00:00
|
|
|
~IApplicationManagerInterface() override;
|
2019-05-23 07:55:56 +00:00
|
|
|
|
|
|
|
ResultVal<u8> GetApplicationDesiredLanguage(u32 supported_languages);
|
|
|
|
ResultVal<u64> ConvertApplicationLanguageToLanguageCode(u8 application_language);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void GetApplicationControlData(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetApplicationDesiredLanguage(Kernel::HLERequestContext& ctx);
|
|
|
|
void ConvertApplicationLanguageToLanguageCode(Kernel::HLERequestContext& ctx);
|
|
|
|
};
|
|
|
|
|
|
|
|
class IApplicationVersionInterface final : public ServiceFramework<IApplicationVersionInterface> {
|
|
|
|
public:
|
|
|
|
explicit IApplicationVersionInterface();
|
2019-06-05 20:20:24 +00:00
|
|
|
~IApplicationVersionInterface() override;
|
2019-05-23 07:55:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class IContentManagerInterface final : public ServiceFramework<IContentManagerInterface> {
|
|
|
|
public:
|
|
|
|
explicit IContentManagerInterface();
|
2019-06-05 20:20:24 +00:00
|
|
|
~IContentManagerInterface() override;
|
2019-05-23 07:55:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class IDocumentInterface final : public ServiceFramework<IDocumentInterface> {
|
|
|
|
public:
|
|
|
|
explicit IDocumentInterface();
|
2019-06-05 20:20:24 +00:00
|
|
|
~IDocumentInterface() override;
|
2019-05-23 07:55:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class IDownloadTaskInterface final : public ServiceFramework<IDownloadTaskInterface> {
|
|
|
|
public:
|
|
|
|
explicit IDownloadTaskInterface();
|
2019-06-05 20:20:24 +00:00
|
|
|
~IDownloadTaskInterface() override;
|
2019-05-23 07:55:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class IECommerceInterface final : public ServiceFramework<IECommerceInterface> {
|
|
|
|
public:
|
|
|
|
explicit IECommerceInterface();
|
2019-06-05 20:20:24 +00:00
|
|
|
~IECommerceInterface() override;
|
2019-05-23 07:55:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class IFactoryResetInterface final : public ServiceFramework<IFactoryResetInterface> {
|
|
|
|
public:
|
|
|
|
explicit IFactoryResetInterface();
|
2019-06-05 20:20:24 +00:00
|
|
|
~IFactoryResetInterface() override;
|
2019-05-23 07:55:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class NS final : public ServiceFramework<NS> {
|
|
|
|
public:
|
|
|
|
explicit NS(const char* name);
|
2019-06-05 20:20:24 +00:00
|
|
|
~NS() override;
|
2019-05-23 07:55:56 +00:00
|
|
|
|
2019-05-23 08:28:27 +00:00
|
|
|
std::shared_ptr<IApplicationManagerInterface> GetApplicationManagerInterface() const;
|
2019-05-23 07:55:56 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
template <typename T>
|
|
|
|
void PushInterface(Kernel::HLERequestContext& ctx) {
|
|
|
|
LOG_DEBUG(Service_NS, "called");
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.PushIpcInterface<T>();
|
|
|
|
}
|
|
|
|
|
2019-05-23 08:14:11 +00:00
|
|
|
template <typename T>
|
2019-05-23 08:28:27 +00:00
|
|
|
std::shared_ptr<T> GetInterface() const {
|
2019-05-23 07:55:56 +00:00
|
|
|
static_assert(std::is_base_of_v<Kernel::SessionRequestHandler, T>,
|
|
|
|
"Not a base of ServiceFrameworkBase");
|
|
|
|
|
|
|
|
return std::make_shared<T>();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-02-15 03:22:41 +00:00
|
|
|
/// Registers all NS services with the specified service manager.
|
2019-09-22 06:40:58 +00:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system);
|
2019-04-22 21:53:58 +00:00
|
|
|
|
|
|
|
} // namespace NS
|
|
|
|
} // namespace Service
|