mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-31 18:36:24 -05:00
7dab487bde
This should bit by bit substitute RsNotify which would be very difficult to support properly in JSON API. The new system is much simpler to use also from the C++ side of the moon. BroadcastDiscovery take advantage of the new system to notify about new non friend peer discovered, tested successfully also in JSON API.
78 lines
3.1 KiB
C++
78 lines
3.1 KiB
C++
/*******************************************************************************
|
|
* Retroshare events service *
|
|
* *
|
|
* libretroshare: retroshare core library *
|
|
* *
|
|
* Copyright (C) 2019 Gioacchino Mazzurco <gio@eigenlab.org> *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Lesser General Public License as *
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <cstdint>
|
|
#include <deque>
|
|
|
|
#include "retroshare/rsevents.h"
|
|
#include "util/rsthreads.h"
|
|
|
|
class RsEventsService :
|
|
public RsEvents, public RsTickingThread
|
|
{
|
|
public:
|
|
RsEventsService():
|
|
mHandlerMapMtx("RsEventsService::mHandlerMapMtx"), mLastHandlerId(1),
|
|
mEventQueueMtx("RsEventsService::mEventQueueMtx") {}
|
|
|
|
/// @see RsEvents
|
|
bool postEvent(
|
|
std::unique_ptr<RsEvent> event,
|
|
std::string& errorMessage = RS_DEFAULT_STORAGE_PARAM(std::string)
|
|
) override;
|
|
|
|
/// @see RsEvents
|
|
bool sendEvent(
|
|
const RsEvent& event,
|
|
std::string& errorMessage = RS_DEFAULT_STORAGE_PARAM(std::string)
|
|
) override;
|
|
|
|
/// @see RsEvents
|
|
RsEventsHandlerId_t generateUniqueHandlerId() override;
|
|
|
|
/// @see RsEvents
|
|
bool registerEventsHandler(
|
|
std::function<void(const RsEvent&)> multiCallback,
|
|
RsEventsHandlerId_t& hId = RS_DEFAULT_STORAGE_PARAM(RsEventsHandlerId_t, 0)
|
|
) override;
|
|
|
|
/// @see RsEvents
|
|
bool unregisterEventsHandler(RsEventsHandlerId_t hId) override;
|
|
|
|
protected:
|
|
RsMutex mHandlerMapMtx;
|
|
RsEventsHandlerId_t mLastHandlerId;
|
|
std::map< RsEventsHandlerId_t, std::function<void(const RsEvent&)> >
|
|
mHandlerMap;
|
|
|
|
RsMutex mEventQueueMtx;
|
|
std::deque< std::unique_ptr<RsEvent> > mEventQueue;
|
|
|
|
/// @see RsTickingThread
|
|
void data_tick() override;
|
|
|
|
void handleEvent(const RsEvent& event);
|
|
RsEventsHandlerId_t generateUniqueHandlerId_unlocked();
|
|
};
|