2021-02-08 07:13:04 +00:00
|
|
|
/*
|
2021-02-08 07:37:16 +00:00
|
|
|
* Copyright (c) 2018-2020 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_i_driver.hpp"
|
2021-02-24 09:45:55 +00:00
|
|
|
#include "htclow_socket_driver.hpp"
|
2021-02-08 11:37:30 +00:00
|
|
|
#include "htclow_usb_driver.hpp"
|
2021-02-08 07:13:04 +00:00
|
|
|
|
|
|
|
namespace ams::htclow::driver {
|
|
|
|
|
|
|
|
class DriverManager {
|
|
|
|
private:
|
2021-07-08 09:37:26 +00:00
|
|
|
util::optional<htclow::impl::DriverType> m_driver_type{};
|
2021-02-24 09:45:55 +00:00
|
|
|
IDriver *m_debug_driver{};
|
|
|
|
SocketDriver m_socket_driver;
|
2021-02-08 11:37:30 +00:00
|
|
|
UsbDriver m_usb_driver{};
|
2021-02-08 07:13:04 +00:00
|
|
|
/* TODO: PlainChannelDriver m_plain_channel_driver; */
|
|
|
|
os::SdkMutex m_mutex{};
|
|
|
|
IDriver *m_open_driver{};
|
|
|
|
public:
|
2021-02-24 09:45:55 +00:00
|
|
|
DriverManager(mem::StandardAllocator *allocator) : m_socket_driver(allocator) { /* ... */ }
|
2021-02-08 11:37:30 +00:00
|
|
|
|
|
|
|
Result OpenDriver(impl::DriverType driver_type);
|
2021-02-10 03:07:51 +00:00
|
|
|
void CloseDriver();
|
2021-02-08 11:37:30 +00:00
|
|
|
|
2021-02-10 01:42:39 +00:00
|
|
|
impl::DriverType GetDriverType();
|
|
|
|
|
2021-02-08 11:37:30 +00:00
|
|
|
IDriver *GetCurrentDriver();
|
2021-02-09 20:36:37 +00:00
|
|
|
|
2021-02-10 03:07:51 +00:00
|
|
|
void Cancel();
|
|
|
|
|
2021-02-09 20:36:37 +00:00
|
|
|
void SetDebugDriver(IDriver *driver);
|
2021-02-08 07:13:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|