/* * Copyright (c) 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 #include #include namespace ams::kern { class KServerSession; class KLightServerSession; class KPort final : public KAutoObjectWithSlabHeapAndContainer { MESOSPHERE_AUTOOBJECT_TRAITS(KPort, KAutoObject); private: enum class State : u8 { Invalid = 0, Normal = 1, ClientClosed = 2, ServerClosed = 3, }; private: KServerPort m_server; KClientPort m_client; uintptr_t m_name; State m_state; bool m_is_light; public: explicit KPort() : m_state(State::Invalid), m_is_light() { /* ... */ } static void PostDestroy(uintptr_t arg) { MESOSPHERE_UNUSED(arg); /* ... */ } void Initialize(s32 max_sessions, bool is_light, uintptr_t name); void Finalize() { /* ... */ } void OnClientClosed(); void OnServerClosed(); uintptr_t GetName() const { return m_name; } bool IsLight() const { return m_is_light; } bool IsServerClosed() const { KScopedSchedulerLock sl; return m_state == State::ServerClosed; } Result EnqueueSession(KServerSession *session); Result EnqueueSession(KLightServerSession *session); KClientPort &GetClientPort() { return m_client; } KServerPort &GetServerPort() { return m_server; } const KClientPort &GetClientPort() const { return m_client; } const KServerPort &GetServerPort() const { return m_server; } }; }