aqhome: started rewriting IPC module.
started with basic event interface using unix fd and timers.
This commit is contained in:
79
aqhome/events2/eventloop.c
Normal file
79
aqhome/events2/eventloop.c
Normal file
@@ -0,0 +1,79 @@
|
||||
/****************************************************************************
|
||||
* This file is part of the project AqHome.
|
||||
* AqHome (c) by 2025 Martin Preuss, all rights reserved.
|
||||
*
|
||||
* The license for this file can be found in the file COPYING which you
|
||||
* should have received along with this file.
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#include "./eventloop_p.h"
|
||||
|
||||
#include <gwenhywfar/debug.h>
|
||||
|
||||
|
||||
|
||||
|
||||
AQH_EVENT_LOOP *AQH_EventLoop_new()
|
||||
{
|
||||
AQH_EVENT_LOOP *eventLoop;
|
||||
|
||||
GWEN_NEW_OBJECT(AQH_EVENT_LOOP, eventLoop);
|
||||
eventLoop->fdObjectList=AQH_Object_List2_new();
|
||||
eventLoop->timerObjectList=AQH_Object_List2_new();
|
||||
|
||||
return eventLoop;
|
||||
}
|
||||
|
||||
|
||||
|
||||
void AQH_EventLoop_free(AQH_EVENT_LOOP *eventLoop)
|
||||
{
|
||||
if (eventLoop) {
|
||||
AQH_Object_List2_free(eventLoop->timerObjectList);
|
||||
AQH_Object_List2_free(eventLoop->fdObjectList);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
void AQH_EventLoop_AddFdObject(AQH_EVENT_LOOP *eventLoop, AQH_OBJECT *o)
|
||||
{
|
||||
if (eventLoop && o && NULL==AQH_Object_List2_Contains(eventLoop->fdObjectList, o)) {
|
||||
AQH_Object_List2_PushBack(eventLoop->fdObjectList, o);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
void AQH_EventLoop_DelFdObject(AQH_EVENT_LOOP *eventLoop, AQH_OBJECT *o)
|
||||
{
|
||||
if (eventLoop && o)
|
||||
AQH_Object_List2_Remove(eventLoop->fdObjectList, o);
|
||||
}
|
||||
|
||||
|
||||
|
||||
void AQH_EventLoop_AddTimerObject(AQH_EVENT_LOOP *eventLoop, AQH_OBJECT *o)
|
||||
{
|
||||
if (eventLoop && o && NULL==AQH_Object_List2_Contains(eventLoop->timerObjectList, o)) {
|
||||
AQH_Object_List2_PushBack(eventLoop->timerObjectList, o);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
void AQH_EventLoop_DelTimerObject(AQH_EVENT_LOOP *eventLoop, AQH_OBJECT *o)
|
||||
{
|
||||
if (eventLoop && o)
|
||||
AQH_Object_List2_Remove(eventLoop->timerObjectList, o);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user