2019-12-09 11:57:37 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2019-12-09 11:57:37 +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
|
2021-01-17 15:55:32 +00:00
|
|
|
#include <stratosphere/sf/sf_common.hpp>
|
|
|
|
#include <stratosphere/sf/sf_out.hpp>
|
|
|
|
#include <stratosphere/sf/sf_shared_object.hpp>
|
2019-12-09 11:57:37 +00:00
|
|
|
|
|
|
|
namespace ams::sf {
|
|
|
|
|
2021-01-17 15:55:32 +00:00
|
|
|
class IServiceObject : public ISharedObject {
|
2019-12-09 11:57:37 +00:00
|
|
|
public:
|
|
|
|
virtual ~IServiceObject() { /* ... */ }
|
|
|
|
};
|
|
|
|
|
2020-07-08 00:07:23 +00:00
|
|
|
template<typename T>
|
|
|
|
concept IsServiceObject = std::derived_from<T, IServiceObject>;
|
|
|
|
|
2019-12-09 11:57:37 +00:00
|
|
|
class IMitmServiceObject : public IServiceObject {
|
2020-07-08 00:07:23 +00:00
|
|
|
public:
|
|
|
|
virtual ~IMitmServiceObject() { /* ... */ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MitmServiceImplBase {
|
2019-12-09 11:57:37 +00:00
|
|
|
protected:
|
|
|
|
std::shared_ptr<::Service> forward_service;
|
|
|
|
sm::MitmProcessInfo client_info;
|
|
|
|
public:
|
2020-07-08 00:07:23 +00:00
|
|
|
MitmServiceImplBase(std::shared_ptr<::Service> &&s, const sm::MitmProcessInfo &c) : forward_service(std::move(s)), client_info(c) { /* ... */ }
|
2019-12-09 11:57:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
2020-07-08 00:07:23 +00:00
|
|
|
concept IsMitmServiceObject = IsServiceObject<T> && std::derived_from<T, IMitmServiceObject>;
|
2019-12-09 11:57:37 +00:00
|
|
|
|
2020-07-08 00:07:23 +00:00
|
|
|
template<typename T>
|
|
|
|
concept IsMitmServiceImpl = requires (std::shared_ptr<::Service> &&s, const sm::MitmProcessInfo &c) {
|
|
|
|
{ T(std::forward<std::shared_ptr<::Service>>(s), c) };
|
|
|
|
{ T::ShouldMitm(c) } -> std::same_as<bool>;
|
2019-12-09 11:57:37 +00:00
|
|
|
};
|
|
|
|
|
2020-10-31 10:22:01 +00:00
|
|
|
}
|