/* * Copyright (c) 2018 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 . */ #pragma once #include #include #include "ipc_templating.hpp" #include "iserviceobject.hpp" #include "iwaitable.hpp" #include "isession.hpp" template class IPCSession final : public ISession { static_assert(std::is_base_of::value, "Service Objects must derive from IServiceObject"); public: IPCSession(size_t pbs = 0x400) : ISession(NULL, 0, 0, 0) { Result rc; if (R_FAILED((rc = svcCreateSession(&this->server_handle, &this->client_handle, 0, 0)))) { fatalSimple(rc); } this->service_object = std::make_shared(); this->pointer_buffer.resize(pbs); } IPCSession(std::shared_ptr so, size_t pbs = 0x400) : ISession(NULL, 0, 0, so, 0) { Result rc; if (R_FAILED((rc = svcCreateSession(&this->server_handle, &this->client_handle, 0, 0)))) { fatalSimple(rc); } this->pointer_buffer.resize(pbs); } };