mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-04-10 14:27:13 +02:00
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
115 lines
2.5 KiB
C++
115 lines
2.5 KiB
C++
//
|
|
// SocketNotifier.h
|
|
//
|
|
// Library: Net
|
|
// Package: Reactor
|
|
// Module: SocketNotifier
|
|
//
|
|
// Definition of the SocketNotifier class.
|
|
//
|
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef Net_SocketNotifier_INCLUDED
|
|
#define Net_SocketNotifier_INCLUDED
|
|
|
|
|
|
#include "Poco/Net/Net.h"
|
|
#include "Poco/Net/Socket.h"
|
|
#include "Poco/RefCountedObject.h"
|
|
#include "Poco/NotificationCenter.h"
|
|
#include "Poco/Observer.h"
|
|
#include <set>
|
|
|
|
|
|
namespace Poco {
|
|
namespace Net {
|
|
|
|
|
|
class Socket;
|
|
class SocketReactor;
|
|
class SocketNotification;
|
|
|
|
|
|
class Net_API SocketNotifier: public Poco::RefCountedObject
|
|
/// This class is used internally by SocketReactor
|
|
/// to notify registered event handlers of socket events.
|
|
{
|
|
public:
|
|
explicit SocketNotifier(const Socket& socket);
|
|
/// Creates the SocketNotifier for the given socket.
|
|
|
|
void addObserver(SocketReactor* pReactor, const Poco::AbstractObserver& observer);
|
|
/// Adds the given observer.
|
|
|
|
void removeObserver(SocketReactor* pReactor, const Poco::AbstractObserver& observer);
|
|
/// Removes the given observer.
|
|
|
|
bool hasObserver(const Poco::AbstractObserver& observer) const;
|
|
/// Returns true if the given observer is registered.
|
|
|
|
bool accepts(SocketNotification* pNotification);
|
|
/// Returns true if there is at least one observer for the given notification.
|
|
|
|
void dispatch(SocketNotification* pNotification);
|
|
/// Dispatches the notification to all observers.
|
|
|
|
bool hasObservers() const;
|
|
/// Returns true if there are subscribers.
|
|
|
|
std::size_t countObservers() const;
|
|
/// Returns the number of subscribers;
|
|
|
|
protected:
|
|
~SocketNotifier();
|
|
/// Destroys the SocketNotifier.
|
|
|
|
private:
|
|
typedef std::multiset<SocketNotification*> EventSet;
|
|
typedef Poco::FastMutex MutexType;
|
|
typedef MutexType::ScopedLock ScopedLock;
|
|
|
|
EventSet _events;
|
|
Poco::NotificationCenter _nc;
|
|
Socket _socket;
|
|
MutexType _mutex;
|
|
};
|
|
|
|
|
|
//
|
|
// inlines
|
|
//
|
|
inline bool SocketNotifier::accepts(SocketNotification* pNotification)
|
|
{
|
|
ScopedLock l(_mutex);
|
|
return _events.find(pNotification) != _events.end();
|
|
}
|
|
|
|
|
|
inline bool SocketNotifier::hasObserver(const Poco::AbstractObserver& observer) const
|
|
{
|
|
return _nc.hasObserver(observer);
|
|
}
|
|
|
|
|
|
inline bool SocketNotifier::hasObservers() const
|
|
{
|
|
return _nc.hasObservers();
|
|
}
|
|
|
|
|
|
inline std::size_t SocketNotifier::countObservers() const
|
|
{
|
|
return _nc.countObservers();
|
|
}
|
|
|
|
|
|
} } // namespace Poco::Net
|
|
|
|
|
|
#endif // Net_SocketNotifier_INCLUDED
|