2021-02-11 02:54:40 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
#include "../../htclow/htclow_manager.hpp"
|
|
|
|
#include "../../htc/server/driver/htc_htclow_driver.hpp"
|
|
|
|
#include "../../htc/server/driver/htc_driver_manager.hpp"
|
|
|
|
#include "../../htc/server/rpc/htc_rpc_client.hpp"
|
|
|
|
#include "rpc/htcs_data_channel_manager.hpp"
|
|
|
|
#include "htcs_service.hpp"
|
|
|
|
#include "htcs_monitor.hpp"
|
|
|
|
|
|
|
|
namespace ams::htcs::impl {
|
|
|
|
|
|
|
|
class HtcsManagerImpl {
|
|
|
|
private:
|
|
|
|
mem::StandardAllocator *m_allocator;
|
|
|
|
htc::server::driver::HtclowDriver m_driver;
|
|
|
|
htc::server::driver::DriverManager m_driver_manager;
|
|
|
|
htc::server::rpc::RpcClient m_rpc_client;
|
|
|
|
rpc::DataChannelManager m_data_channel_manager;
|
|
|
|
HtcsService m_service;
|
|
|
|
HtcsMonitor m_monitor;
|
|
|
|
public:
|
|
|
|
HtcsManagerImpl(mem::StandardAllocator *allocator, htclow::HtclowManager *htclow_manager);
|
|
|
|
~HtcsManagerImpl();
|
|
|
|
public:
|
|
|
|
os::EventType *GetServiceAvailabilityEvent();
|
|
|
|
|
|
|
|
bool IsServiceAvailable();
|
2021-02-18 03:14:59 +00:00
|
|
|
public:
|
|
|
|
Result CreateSocket(s32 *out_err, s32 *out_desc, bool enable_disconnection_emulation);
|
2021-02-18 12:15:23 +00:00
|
|
|
Result DestroySocket(s32 desc);
|
2021-02-18 03:14:59 +00:00
|
|
|
Result Connect(s32 *out_err, s32 desc, const SockAddrHtcs &address);
|
|
|
|
Result Bind(s32 *out_err, s32 desc, const SockAddrHtcs &address);
|
|
|
|
Result Listen(s32 *out_err, s32 desc, s32 backlog_count);
|
2021-02-18 06:34:05 +00:00
|
|
|
Result Receive(s32 *out_err, s64 *out_size, char *buffer, size_t size, s32 desc, s32 flags);
|
2021-02-18 03:14:59 +00:00
|
|
|
Result Send(s32 *out_err, s64 *out_size, const char *buffer, size_t size, s32 desc, s32 flags);
|
|
|
|
Result Shutdown(s32 *out_err, s32 desc, s32 how);
|
|
|
|
Result Fcntl(s32 *out_err, s32 *out_res, s32 desc, s32 command, s32 value);
|
|
|
|
|
|
|
|
Result AcceptStart(u32 *out_task_id, Handle *out_handle, s32 desc);
|
|
|
|
Result AcceptResults(s32 *out_err, s32 *out_desc, SockAddrHtcs *out_address, u32 task_id, s32 desc);
|
|
|
|
|
|
|
|
Result RecvStart(u32 *out_task_id, Handle *out_handle, s64 size, s32 desc, s32 flags);
|
|
|
|
Result RecvResults(s32 *out_err, s64 *out_size, char *buffer, s64 buffer_size, u32 task_id, s32 desc);
|
|
|
|
|
|
|
|
Result SendStart(u32 *out_task_id, Handle *out_handle, const char *buffer, s64 size, s32 desc, s32 flags);
|
|
|
|
Result SendLargeStart(u32 *out_task_id, Handle *out_handle, const char **buffers, const s64 *sizes, s32 count, s32 desc, s32 flags);
|
|
|
|
Result SendResults(s32 *out_err, s64 *out_size, u32 task_id, s32 desc);
|
|
|
|
|
|
|
|
Result StartSend(u32 *out_task_id, Handle *out_handle, s32 desc, s64 size, s32 flags);
|
|
|
|
Result ContinueSend(s64 *out_size, const char *buffer, s64 buffer_size, u32 task_id, s32 desc);
|
|
|
|
Result EndSend(s32 *out_err, s64 *out_size, u32 task_id, s32 desc);
|
|
|
|
|
|
|
|
Result StartRecv(u32 *out_task_id, Handle *out_handle, s64 size, s32 desc, s32 flags);
|
|
|
|
Result EndRecv(s32 *out_err, s64 *out_size, char *buffer, s64 buffer_size, u32 task_id, s32 desc);
|
|
|
|
|
|
|
|
Result StartSelect(u32 *out_task_id, Handle *out_handle, Span<const int> read_handles, Span<const int> write_handles, Span<const int> exception_handles, s64 tv_sec, s64 tv_usec);
|
2021-02-19 05:24:30 +00:00
|
|
|
Result EndSelect(s32 *out_err, bool *out_empty, Span<int> read_handles, Span<int> write_handles, Span<int> exception_handles, u32 task_id);
|
2021-02-11 02:54:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|