2021-02-08 07:13:04 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2021-02-08 07:13:04 +00:00
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
#include "htclow_mux_task_manager.hpp"
|
|
|
|
#include "htclow_mux_channel_impl_map.hpp"
|
|
|
|
#include "htclow_mux_global_send_buffer.hpp"
|
|
|
|
|
|
|
|
namespace ams::htclow::mux {
|
|
|
|
|
2021-02-09 11:21:45 +00:00
|
|
|
enum class MuxState {
|
|
|
|
Normal,
|
|
|
|
Sleep,
|
|
|
|
};
|
|
|
|
|
2021-02-08 07:13:04 +00:00
|
|
|
class Mux {
|
2021-02-09 11:21:45 +00:00
|
|
|
private:
|
2021-02-08 07:13:04 +00:00
|
|
|
private:
|
|
|
|
PacketFactory *m_packet_factory;
|
|
|
|
ctrl::HtcctrlStateMachine *m_state_machine;
|
|
|
|
TaskManager m_task_manager;
|
2021-02-09 09:05:43 +00:00
|
|
|
os::Event m_event;
|
2021-02-08 07:13:04 +00:00
|
|
|
ChannelImplMap m_channel_impl_map;
|
|
|
|
GlobalSendBuffer m_global_send_buffer;
|
|
|
|
os::SdkMutex m_mutex;
|
2021-02-09 11:21:45 +00:00
|
|
|
MuxState m_state;
|
2021-02-08 11:37:30 +00:00
|
|
|
s16 m_version;
|
2021-02-08 07:13:04 +00:00
|
|
|
public:
|
|
|
|
Mux(PacketFactory *pf, ctrl::HtcctrlStateMachine *sm);
|
2021-02-08 09:25:10 +00:00
|
|
|
|
|
|
|
void SetVersion(u16 version);
|
2021-02-08 13:45:23 +00:00
|
|
|
|
2021-02-09 09:05:43 +00:00
|
|
|
os::EventType *GetSendPacketEvent() { return m_event.GetBase(); }
|
|
|
|
|
2021-02-08 22:11:01 +00:00
|
|
|
Result CheckReceivedHeader(const PacketHeader &header) const;
|
|
|
|
Result ProcessReceivePacket(const PacketHeader &header, const void *body, size_t body_size);
|
|
|
|
|
2021-02-09 09:05:43 +00:00
|
|
|
bool QuerySendPacket(PacketHeader *header, PacketBody *body, int *out_body_size);
|
|
|
|
void RemovePacket(const PacketHeader &header);
|
|
|
|
|
2021-02-08 13:45:23 +00:00
|
|
|
void UpdateChannelState();
|
|
|
|
void UpdateMuxState();
|
2021-02-09 20:36:37 +00:00
|
|
|
public:
|
|
|
|
Result Open(impl::ChannelInternalType channel);
|
2021-02-10 03:07:51 +00:00
|
|
|
Result Close(impl::ChannelInternalType channel);
|
|
|
|
|
|
|
|
Result ConnectBegin(u32 *out_task_id, impl::ChannelInternalType channel);
|
|
|
|
Result ConnectEnd(impl::ChannelInternalType channel, u32 task_id);
|
|
|
|
|
|
|
|
ChannelState GetChannelState(impl::ChannelInternalType channel);
|
|
|
|
os::EventType *GetChannelStateEvent(impl::ChannelInternalType channel);
|
|
|
|
|
|
|
|
Result FlushBegin(u32 *out_task_id, impl::ChannelInternalType channel);
|
|
|
|
Result FlushEnd(u32 task_id);
|
2021-02-09 20:36:37 +00:00
|
|
|
|
|
|
|
os::EventType *GetTaskEvent(u32 task_id);
|
2021-02-10 01:42:39 +00:00
|
|
|
|
2021-02-10 03:51:52 +00:00
|
|
|
Result ReceiveBegin(u32 *out_task_id, impl::ChannelInternalType channel, size_t size);
|
2021-02-10 03:07:51 +00:00
|
|
|
Result ReceiveEnd(size_t *out, void *dst, size_t dst_size, impl::ChannelInternalType channel, u32 task_id);
|
|
|
|
|
|
|
|
Result SendBegin(u32 *out_task_id, size_t *out, const void *src, size_t src_size, impl::ChannelInternalType channel);
|
|
|
|
Result SendEnd(u32 task_id);
|
|
|
|
|
2021-02-11 06:52:12 +00:00
|
|
|
Result WaitReceiveBegin(u32 *out_task_id, impl::ChannelInternalType channel, size_t size);
|
|
|
|
Result WaitReceiveEnd(u32 task_id);
|
|
|
|
|
|
|
|
void SetConfig(impl::ChannelInternalType channel, const ChannelConfig &config);
|
|
|
|
|
2021-02-10 01:42:39 +00:00
|
|
|
void SetSendBuffer(impl::ChannelInternalType channel, void *buf, size_t buf_size, size_t max_packet_size);
|
|
|
|
void SetReceiveBuffer(impl::ChannelInternalType channel, void *buf, size_t buf_size);
|
|
|
|
void SetSendBufferWithData(impl::ChannelInternalType channel, const void *buf, size_t buf_size, size_t max_packet_size);
|
2021-02-10 03:07:51 +00:00
|
|
|
|
|
|
|
Result Shutdown(impl::ChannelInternalType channel);
|
2021-02-08 22:11:01 +00:00
|
|
|
private:
|
|
|
|
Result CheckChannelExist(impl::ChannelInternalType channel);
|
|
|
|
|
|
|
|
Result SendErrorPacket(impl::ChannelInternalType channel);
|
2021-02-09 11:21:45 +00:00
|
|
|
|
|
|
|
bool IsSendable(PacketType packet_type) const;
|
2021-02-08 07:13:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|