edb15b5565
* Simplified the notification framework: removed the updater stuff completely; it was only there to account for some peculiarities of the node monitor which we now solved differently. * NotificationListener no longer includes a doubly linked list link for convenience; it might want to listen to more than just one service. * NotificationService cannot have an abstract destructor. * Changed the _user_stop_watching() syscall to mirror the Be API; ie. it's no longer possible to just remove some flags separately, just to stop listening completely. * Adapted the node monitor implementation to live in the NodeMonitorService class that uses the new notification framework. * Removed the public kernel node monitor API - it wasn't useful that way since you couldn't do a lot with the KMessage in the kernel without using a private API. Now you will have to use the (private) notification manager to use the node monitor from inside the kernel. At a later point, we might introduce a public API for that, too. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21780 a95241bf-73f2-0310-859d-f6bbb57e9c96
163 lines
4.1 KiB
C++
163 lines
4.1 KiB
C++
/*
|
|
* Copyright 2007, Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Axel Dörfler, axeld@pinc-software.de
|
|
* Ingo Weinhold, bonefish@cs.tu-berlin.de
|
|
*/
|
|
#ifndef _KERNEL_NOTIFICATIONS_H
|
|
#define _KERNEL_NOTIFICATIONS_H
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
#include <lock.h>
|
|
#include <messaging.h>
|
|
#include <util/khash.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include <Referenceable.h>
|
|
|
|
#include <util/AutoLock.h>
|
|
#include <util/KMessage.h>
|
|
#include <util/OpenHashTable.h>
|
|
|
|
|
|
class NotificationService;
|
|
|
|
class NotificationListener {
|
|
public:
|
|
virtual ~NotificationListener();
|
|
|
|
virtual void EventOccured(NotificationService& service,
|
|
const KMessage* event);
|
|
virtual void AllListenersNotified(NotificationService& service);
|
|
|
|
virtual bool operator==(const NotificationListener& other) const;
|
|
|
|
bool operator!=(const NotificationListener& other) const
|
|
{ return !(*this == other); }
|
|
};
|
|
|
|
class UserMessagingMessageSender {
|
|
public:
|
|
UserMessagingMessageSender();
|
|
|
|
void SendMessage(const KMessage* message, port_id port, int32 token);
|
|
void FlushMessage();
|
|
|
|
private:
|
|
enum {
|
|
MAX_MESSAGING_TARGET_COUNT = 16,
|
|
};
|
|
|
|
const KMessage* fMessage;
|
|
messaging_target fTargets[MAX_MESSAGING_TARGET_COUNT];
|
|
int32 fTargetCount;
|
|
};
|
|
|
|
class UserMessagingListener : public NotificationListener {
|
|
public:
|
|
UserMessagingListener(UserMessagingMessageSender& sender, port_id port,
|
|
int32 token);
|
|
virtual ~UserMessagingListener();
|
|
|
|
virtual void EventOccured(NotificationService& service,
|
|
const KMessage* event);
|
|
virtual void AllListenersNotified(NotificationService& service);
|
|
|
|
port_id Port() const { return fPort; }
|
|
int32 Token() const { return fToken; }
|
|
|
|
private:
|
|
UserMessagingMessageSender& fSender;
|
|
port_id fPort;
|
|
int32 fToken;
|
|
};
|
|
|
|
class NotificationService : public Referenceable {
|
|
public:
|
|
virtual ~NotificationService();
|
|
|
|
virtual status_t AddListener(const KMessage* eventSpecifier,
|
|
NotificationListener& listener) = 0;
|
|
virtual status_t RemoveListener(const KMessage* eventSpecifier,
|
|
NotificationListener& listener) = 0;
|
|
virtual status_t UpdateListener(const KMessage* eventSpecifier,
|
|
NotificationListener& listener) = 0;
|
|
|
|
virtual const char* Name() = 0;
|
|
HashTableLink<NotificationService>& Link() { return fLink; }
|
|
|
|
private:
|
|
HashTableLink<NotificationService> fLink;
|
|
};
|
|
|
|
class NotificationManager {
|
|
public:
|
|
static NotificationManager& Manager();
|
|
static status_t CreateManager();
|
|
|
|
status_t RegisterService(NotificationService& service);
|
|
void UnregisterService(NotificationService& service);
|
|
|
|
NotificationService* GetService(const char* name);
|
|
void PutService(NotificationService* service);
|
|
|
|
status_t AddListener(const char* service, uint32 eventMask,
|
|
NotificationListener& listener);
|
|
status_t AddListener(const char* service,
|
|
const KMessage* eventSpecifier, NotificationListener& listener);
|
|
|
|
status_t UpdateListener(const char* service,
|
|
uint32 eventMask, NotificationListener& listener);
|
|
status_t UpdateListener(const char* service,
|
|
const KMessage* eventSpecifier, NotificationListener& listener);
|
|
|
|
status_t RemoveListener(const char* service,
|
|
const KMessage* eventSpecifier, NotificationListener& listener);
|
|
|
|
private:
|
|
NotificationManager();
|
|
~NotificationManager();
|
|
|
|
status_t _Init();
|
|
NotificationService* _ServiceFor(const char* name);
|
|
|
|
struct HashDefinition {
|
|
typedef const char* KeyType;
|
|
typedef NotificationService ValueType;
|
|
|
|
size_t HashKey(const char* key) const
|
|
{ return hash_hash_string(key); }
|
|
size_t Hash(NotificationService *service) const
|
|
{ return hash_hash_string(service->Name()); }
|
|
bool Compare(const char* key, NotificationService* service) const
|
|
{ return !strcmp(key, service->Name()); }
|
|
HashTableLink<NotificationService>* GetLink(
|
|
NotificationService* service) const
|
|
{ return &service->Link(); }
|
|
};
|
|
|
|
static NotificationManager sManager;
|
|
|
|
mutex fLock;
|
|
typedef OpenHashTable<HashDefinition> ServiceHash;
|
|
ServiceHash fServiceHash;
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
#endif // __cplusplus
|
|
|
|
void notifications_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // __cplusplus
|
|
|
|
#endif // _KERNEL_NOTIFICATIONS_H
|