2017-10-31 10:02:42 +01:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <atomic>
|
2017-11-07 21:51:11 +01:00
|
|
|
#include <condition_variable>
|
2017-10-31 10:02:42 +01:00
|
|
|
#include <functional>
|
|
|
|
#include <memory>
|
2017-11-07 21:51:11 +01:00
|
|
|
#include <mutex>
|
2017-10-31 10:02:42 +01:00
|
|
|
#include <set>
|
|
|
|
#include <thread>
|
|
|
|
#include "common/announce_multiplayer_room.h"
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instruments AnnounceMultiplayerRoom::Backend.
|
|
|
|
* Creates a thread that regularly updates the room information and submits them
|
|
|
|
* An async get of room information is also possible
|
|
|
|
*/
|
|
|
|
class AnnounceMultiplayerSession : NonCopyable {
|
|
|
|
public:
|
2017-11-07 21:51:11 +01:00
|
|
|
using CallbackHandle = std::shared_ptr<std::function<void(const Common::WebResult&)>>;
|
2017-10-31 10:02:42 +01:00
|
|
|
AnnounceMultiplayerSession();
|
|
|
|
~AnnounceMultiplayerSession();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows to bind a function that will get called if the announce encounters an error
|
|
|
|
* @param function The function that gets called
|
|
|
|
* @return A handle that can be used the unbind the function
|
|
|
|
*/
|
2017-11-07 21:51:11 +01:00
|
|
|
CallbackHandle BindErrorCallback(std::function<void(const Common::WebResult&)> function);
|
2017-10-31 10:02:42 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unbind a function from the error callbacks
|
|
|
|
* @param handle The handle for the function that should get unbind
|
|
|
|
*/
|
2017-11-07 21:51:11 +01:00
|
|
|
void UnbindErrorCallback(CallbackHandle handle);
|
2017-10-31 10:02:42 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts the announce of a room to web services
|
|
|
|
*/
|
|
|
|
void Start();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stops the announce to web services
|
|
|
|
*/
|
|
|
|
void Stop();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of all room information the backend got
|
|
|
|
* @param func A function that gets executed when the async get finished, e.g. a signal
|
|
|
|
* @return a list of rooms received from the web service
|
|
|
|
*/
|
|
|
|
std::future<AnnounceMultiplayerRoom::RoomList> GetRoomList(std::function<void()> func);
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::atomic<bool> announce{false};
|
2017-11-07 21:51:11 +01:00
|
|
|
|
|
|
|
/// conditional variable to notify the announce thread to end early
|
|
|
|
std::condition_variable cv;
|
|
|
|
std::mutex cv_m; ///< mutex for cv
|
2017-10-31 10:02:42 +01:00
|
|
|
std::mutex callback_mutex;
|
2017-11-07 21:51:11 +01:00
|
|
|
std::set<CallbackHandle> error_callbacks;
|
2017-10-31 10:02:42 +01:00
|
|
|
std::unique_ptr<std::thread> announce_multiplayer_thread;
|
|
|
|
|
2017-11-07 21:51:11 +01:00
|
|
|
/// Backend interface that logs fields
|
|
|
|
std::unique_ptr<AnnounceMultiplayerRoom::Backend> backend;
|
2017-10-31 10:02:42 +01:00
|
|
|
|
|
|
|
void AnnounceMultiplayerLoop();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Core
|