| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- // Copyright 2018 yuzu emulator team
- // Licensed under GPLv2 or any later version
- // Refer to the license.txt file included.
- #include <queue>
- #include "common/logging/log.h"
- #include "common/uuid.h"
- #include "core/hle/ipc_helpers.h"
- #include "core/hle/kernel/readable_event.h"
- #include "core/hle/kernel/writable_event.h"
- #include "core/hle/service/friend/errors.h"
- #include "core/hle/service/friend/friend.h"
- #include "core/hle/service/friend/interface.h"
- namespace Service::Friend {
- class IFriendService final : public ServiceFramework<IFriendService> {
- public:
- IFriendService() : ServiceFramework("IFriendService") {
- // clang-format off
- static const FunctionInfo functions[] = {
- {0, nullptr, "GetCompletionEvent"},
- {1, nullptr, "Cancel"},
- {10100, nullptr, "GetFriendListIds"},
- {10101, nullptr, "GetFriendList"},
- {10102, nullptr, "UpdateFriendInfo"},
- {10110, nullptr, "GetFriendProfileImage"},
- {10200, nullptr, "SendFriendRequestForApplication"},
- {10211, nullptr, "AddFacedFriendRequestForApplication"},
- {10400, nullptr, "GetBlockedUserListIds"},
- {10500, nullptr, "GetProfileList"},
- {10600, nullptr, "DeclareOpenOnlinePlaySession"},
- {10601, &IFriendService::DeclareCloseOnlinePlaySession, "DeclareCloseOnlinePlaySession"},
- {10610, &IFriendService::UpdateUserPresence, "UpdateUserPresence"},
- {10700, nullptr, "GetPlayHistoryRegistrationKey"},
- {10701, nullptr, "GetPlayHistoryRegistrationKeyWithNetworkServiceAccountId"},
- {10702, nullptr, "AddPlayHistory"},
- {11000, nullptr, "GetProfileImageUrl"},
- {20100, nullptr, "GetFriendCount"},
- {20101, nullptr, "GetNewlyFriendCount"},
- {20102, nullptr, "GetFriendDetailedInfo"},
- {20103, nullptr, "SyncFriendList"},
- {20104, nullptr, "RequestSyncFriendList"},
- {20110, nullptr, "LoadFriendSetting"},
- {20200, nullptr, "GetReceivedFriendRequestCount"},
- {20201, nullptr, "GetFriendRequestList"},
- {20300, nullptr, "GetFriendCandidateList"},
- {20301, nullptr, "GetNintendoNetworkIdInfo"},
- {20302, nullptr, "GetSnsAccountLinkage"},
- {20303, nullptr, "GetSnsAccountProfile"},
- {20304, nullptr, "GetSnsAccountFriendList"},
- {20400, nullptr, "GetBlockedUserList"},
- {20401, nullptr, "SyncBlockedUserList"},
- {20500, nullptr, "GetProfileExtraList"},
- {20501, nullptr, "GetRelationship"},
- {20600, nullptr, "GetUserPresenceView"},
- {20700, nullptr, "GetPlayHistoryList"},
- {20701, nullptr, "GetPlayHistoryStatistics"},
- {20800, nullptr, "LoadUserSetting"},
- {20801, nullptr, "SyncUserSetting"},
- {20900, nullptr, "RequestListSummaryOverlayNotification"},
- {21000, nullptr, "GetExternalApplicationCatalog"},
- {30100, nullptr, "DropFriendNewlyFlags"},
- {30101, nullptr, "DeleteFriend"},
- {30110, nullptr, "DropFriendNewlyFlag"},
- {30120, nullptr, "ChangeFriendFavoriteFlag"},
- {30121, nullptr, "ChangeFriendOnlineNotificationFlag"},
- {30200, nullptr, "SendFriendRequest"},
- {30201, nullptr, "SendFriendRequestWithApplicationInfo"},
- {30202, nullptr, "CancelFriendRequest"},
- {30203, nullptr, "AcceptFriendRequest"},
- {30204, nullptr, "RejectFriendRequest"},
- {30205, nullptr, "ReadFriendRequest"},
- {30210, nullptr, "GetFacedFriendRequestRegistrationKey"},
- {30211, nullptr, "AddFacedFriendRequest"},
- {30212, nullptr, "CancelFacedFriendRequest"},
- {30213, nullptr, "GetFacedFriendRequestProfileImage"},
- {30214, nullptr, "GetFacedFriendRequestProfileImageFromPath"},
- {30215, nullptr, "SendFriendRequestWithExternalApplicationCatalogId"},
- {30216, nullptr, "ResendFacedFriendRequest"},
- {30217, nullptr, "SendFriendRequestWithNintendoNetworkIdInfo"},
- {30300, nullptr, "GetSnsAccountLinkPageUrl"},
- {30301, nullptr, "UnlinkSnsAccount"},
- {30400, nullptr, "BlockUser"},
- {30401, nullptr, "BlockUserWithApplicationInfo"},
- {30402, nullptr, "UnblockUser"},
- {30500, nullptr, "GetProfileExtraFromFriendCode"},
- {30700, nullptr, "DeletePlayHistory"},
- {30810, nullptr, "ChangePresencePermission"},
- {30811, nullptr, "ChangeFriendRequestReception"},
- {30812, nullptr, "ChangePlayLogPermission"},
- {30820, nullptr, "IssueFriendCode"},
- {30830, nullptr, "ClearPlayLog"},
- {49900, nullptr, "DeleteNetworkServiceAccountCache"},
- };
- // clang-format on
- RegisterHandlers(functions);
- }
- private:
- void DeclareCloseOnlinePlaySession(Kernel::HLERequestContext& ctx) {
- // Stub used by Splatoon 2
- LOG_WARNING(Service_ACC, "(STUBBED) called");
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(RESULT_SUCCESS);
- }
- void UpdateUserPresence(Kernel::HLERequestContext& ctx) {
- // Stub used by Retro City Rampage
- LOG_WARNING(Service_ACC, "(STUBBED) called");
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(RESULT_SUCCESS);
- }
- };
- class INotificationService final : public ServiceFramework<INotificationService> {
- public:
- INotificationService(Common::UUID uuid) : ServiceFramework("INotificationService"), uuid(uuid) {
- // clang-format off
- static const FunctionInfo functions[] = {
- {0, &INotificationService::GetEvent, "GetEvent"},
- {1, &INotificationService::Clear, "Clear"},
- {2, &INotificationService::Pop, "Pop"}
- };
- // clang-format on
- RegisterHandlers(functions);
- }
- private:
- void GetEvent(Kernel::HLERequestContext& ctx) {
- LOG_DEBUG(Service_ACC, "called");
- IPC::ResponseBuilder rb{ctx, 2, 1};
- rb.Push(RESULT_SUCCESS);
- if (is_event_created) {
- rb.PushCopyObjects(notification_event.readable);
- } else {
- auto& kernel = Core::System::GetInstance().Kernel();
- notification_event = Kernel::WritableEvent::CreateEventPair(
- kernel, Kernel::ResetType::Manual, "INotificationService:NotifyEvent");
- is_event_created = true;
- rb.PushCopyObjects(notification_event.readable);
- }
- }
- void Clear(Kernel::HLERequestContext& ctx) {
- LOG_DEBUG(Service_ACC, "called");
- while (!notifications.empty()) {
- notifications.pop();
- }
- states.has_received_friend_request = false;
- states.has_updated_friends = false;
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(RESULT_SUCCESS);
- }
- void Pop(Kernel::HLERequestContext& ctx) {
- LOG_DEBUG(Service_ACC, "called");
- if (notifications.empty()) {
- LOG_ERROR(Service_ACC, "No notifications in queue!");
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(ERR_NO_NOTIFICATIONS);
- return;
- }
- IPC::ResponseBuilder rb{ctx, 6};
- auto notification = notifications.front();
- notifications.pop();
- switch (notification.notification_type) {
- case NotificationTypes::HasUpdatedFriendsList:
- states.has_updated_friends = false;
- break;
- case NotificationTypes::HasReceivedFriendRequest:
- states.has_received_friend_request = false;
- break;
- default:
- // HOS seems not have an error case for an unknown notification
- LOG_WARNING(Service_ACC, "Unknown notification {:08X}",
- static_cast<u32>(notification.notification_type));
- break;
- }
- rb.Push(RESULT_SUCCESS);
- rb.PushRaw<SizedNotificationInfo>(notification);
- }
- enum class NotificationTypes : u32_le {
- HasUpdatedFriendsList = 0x65,
- HasReceivedFriendRequest = 0x1
- };
- struct SizedNotificationInfo {
- NotificationTypes notification_type;
- INSERT_PADDING_WORDS(
- 1); // TODO(ogniK): This doesn't seem to be used within any IPC returns as of now
- Common::UUID user_uuid;
- };
- struct States {
- bool has_updated_friends;
- bool has_received_friend_request;
- };
- Common::UUID uuid{};
- bool is_event_created = false;
- Kernel::EventPair notification_event;
- std::queue<SizedNotificationInfo> notifications{};
- States states{};
- };
- void Module::Interface::CreateFriendService(Kernel::HLERequestContext& ctx) {
- IPC::ResponseBuilder rb{ctx, 2, 0, 1};
- rb.Push(RESULT_SUCCESS);
- rb.PushIpcInterface<IFriendService>();
- LOG_DEBUG(Service_ACC, "called");
- }
- void Module::Interface::CreateNotificationService(Kernel::HLERequestContext& ctx) {
- IPC::RequestParser rp{ctx};
- auto uuid = rp.PopRaw<Common::UUID>();
- IPC::ResponseBuilder rb{ctx, 2, 0, 1};
- rb.Push(RESULT_SUCCESS);
- rb.PushIpcInterface<INotificationService>(uuid);
- LOG_DEBUG(Service_ACC, "called");
- }
- Module::Interface::Interface(std::shared_ptr<Module> module, const char* name)
- : ServiceFramework(name), module(std::move(module)) {}
- Module::Interface::~Interface() = default;
- void InstallInterfaces(SM::ServiceManager& service_manager) {
- auto module = std::make_shared<Module>();
- std::make_shared<Friend>(module, "friend:a")->InstallAsService(service_manager);
- std::make_shared<Friend>(module, "friend:m")->InstallAsService(service_manager);
- std::make_shared<Friend>(module, "friend:s")->InstallAsService(service_manager);
- std::make_shared<Friend>(module, "friend:u")->InstallAsService(service_manager);
- std::make_shared<Friend>(module, "friend:v")->InstallAsService(service_manager);
- }
- } // namespace Service::Friend
|