mirror of https://github.com/Icinga/icinga2.git
Renamed event/condvar/mutex/thread classes to match other class names.
This commit is contained in:
parent
8f7fb9699d
commit
40b45c3d91
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
using namespace icinga;
|
using namespace icinga;
|
||||||
|
|
||||||
condvar::condvar(void)
|
CondVar::CondVar(void)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
InitializeConditionVariable(&m_CondVar);
|
InitializeConditionVariable(&m_CondVar);
|
||||||
|
@ -11,7 +11,7 @@ condvar::condvar(void)
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
}
|
}
|
||||||
|
|
||||||
condvar::~condvar(void)
|
CondVar::~CondVar(void)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
/* nothing to do here */
|
/* nothing to do here */
|
||||||
|
@ -20,16 +20,16 @@ condvar::~condvar(void)
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
}
|
}
|
||||||
|
|
||||||
void condvar::wait(mutex *mtx)
|
void CondVar::Wait(Mutex& mtx)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
SleepConditionVariableCS(&m_CondVar, mtx->get(), INFINITE);
|
SleepConditionVariableCS(&m_CondVar, mtx.Get(), INFINITE);
|
||||||
#else /* _WIN32 */
|
#else /* _WIN32 */
|
||||||
pthread_cond_wait(&m_CondVar, mtx->get());
|
pthread_cond_wait(&m_CondVar, mtx.Get());
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
}
|
}
|
||||||
|
|
||||||
void condvar::signal(void)
|
void CondVar::Signal(void)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
WakeConditionVariable(&m_CondVar);
|
WakeConditionVariable(&m_CondVar);
|
||||||
|
@ -38,7 +38,7 @@ void condvar::signal(void)
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
}
|
}
|
||||||
|
|
||||||
void condvar::broadcast(void)
|
void CondVar::Broadcast(void)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
WakeAllConditionVariable(&m_CondVar);
|
WakeAllConditionVariable(&m_CondVar);
|
||||||
|
@ -49,9 +49,9 @@ void condvar::broadcast(void)
|
||||||
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
CONDITION_VARIABLE *condvar::get(void)
|
CONDITION_VARIABLE *CondVar::Get(void)
|
||||||
#else /* _WIN32 */
|
#else /* _WIN32 */
|
||||||
pthread_cond_t *condvar::get(void)
|
pthread_cond_t *CondVar::Get(void)
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
{
|
{
|
||||||
return &m_CondVar;
|
return &m_CondVar;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
namespace icinga
|
namespace icinga
|
||||||
{
|
{
|
||||||
|
|
||||||
class I2_BASE_API condvar
|
class I2_BASE_API CondVar
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
@ -14,17 +14,17 @@ private:
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
|
|
||||||
public:
|
public:
|
||||||
condvar(void);
|
CondVar(void);
|
||||||
~condvar(void);
|
~CondVar(void);
|
||||||
|
|
||||||
void wait(mutex *mtx);
|
void Wait(Mutex& mtx);
|
||||||
void signal(void);
|
void Signal(void);
|
||||||
void broadcast(void);
|
void Broadcast(void);
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
CONDITION_VARIABLE *get(void);
|
CONDITION_VARIABLE *Get(void);
|
||||||
#else /* _WIN32 */
|
#else /* _WIN32 */
|
||||||
pthread_cond_t *get(void);
|
pthread_cond_t *Get(void);
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -27,9 +27,9 @@ public:
|
||||||
|
|
||||||
void ForEachObject(function<int (ConfigObjectEventArgs::Ptr)> callback);
|
void ForEachObject(function<int (ConfigObjectEventArgs::Ptr)> callback);
|
||||||
|
|
||||||
event<ConfigObjectEventArgs::Ptr> OnObjectCreated;
|
Event<ConfigObjectEventArgs::Ptr> OnObjectCreated;
|
||||||
event<ConfigObjectEventArgs::Ptr> OnObjectRemoved;
|
Event<ConfigObjectEventArgs::Ptr> OnObjectRemoved;
|
||||||
event<ConfigObjectEventArgs::Ptr> OnPropertyChanged;
|
Event<ConfigObjectEventArgs::Ptr> OnPropertyChanged;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,9 +20,9 @@ public:
|
||||||
|
|
||||||
void ForEachObject(const string& type, function<int (ConfigObjectEventArgs::Ptr)> callback);
|
void ForEachObject(const string& type, function<int (ConfigObjectEventArgs::Ptr)> callback);
|
||||||
|
|
||||||
event<ConfigObjectEventArgs::Ptr> OnObjectCreated;
|
Event<ConfigObjectEventArgs::Ptr> OnObjectCreated;
|
||||||
event<ConfigObjectEventArgs::Ptr> OnObjectRemoved;
|
Event<ConfigObjectEventArgs::Ptr> OnObjectRemoved;
|
||||||
event<ConfigObjectEventArgs::Ptr> OnPropertyChanged;
|
Event<ConfigObjectEventArgs::Ptr> OnPropertyChanged;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
14
base/event.h
14
base/event.h
|
@ -13,7 +13,7 @@ struct I2_BASE_API EventArgs : public Object
|
||||||
};
|
};
|
||||||
|
|
||||||
template<class TArgs>
|
template<class TArgs>
|
||||||
class event
|
class Event
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef function<int (TArgs)> DelegateType;
|
typedef function<int (TArgs)> DelegateType;
|
||||||
|
@ -22,25 +22,25 @@ private:
|
||||||
list<DelegateType> m_Delegates;
|
list<DelegateType> m_Delegates;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void hook(const DelegateType& delegate)
|
void Hook(const DelegateType& delegate)
|
||||||
{
|
{
|
||||||
m_Delegates.push_front(delegate);
|
m_Delegates.push_front(delegate);
|
||||||
}
|
}
|
||||||
|
|
||||||
void unhook(const DelegateType& delegate)
|
void Unhook(const DelegateType& delegate)
|
||||||
{
|
{
|
||||||
m_Delegates.remove(delegate);
|
m_Delegates.remove(delegate);
|
||||||
}
|
}
|
||||||
|
|
||||||
event<TArgs>& operator +=(const DelegateType& rhs)
|
Event<TArgs>& operator +=(const DelegateType& rhs)
|
||||||
{
|
{
|
||||||
hook(rhs);
|
Hook(rhs);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
event<TArgs>& operator -=(const DelegateType& rhs)
|
Event<TArgs>& operator -=(const DelegateType& rhs)
|
||||||
{
|
{
|
||||||
unhook(rhs);
|
Unhook(rhs);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
using namespace icinga;
|
using namespace icinga;
|
||||||
|
|
||||||
mutex::mutex(void)
|
Mutex::Mutex(void)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
InitializeCriticalSection(&m_Mutex);
|
InitializeCriticalSection(&m_Mutex);
|
||||||
|
@ -11,7 +11,7 @@ mutex::mutex(void)
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
}
|
}
|
||||||
|
|
||||||
mutex::~mutex(void)
|
Mutex::~Mutex(void)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
DeleteCriticalSection(&m_Mutex);
|
DeleteCriticalSection(&m_Mutex);
|
||||||
|
@ -20,7 +20,7 @@ mutex::~mutex(void)
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
}
|
}
|
||||||
|
|
||||||
bool mutex::tryenter(void)
|
bool Mutex::TryEnter(void)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
return (TryEnterCriticalSection(&m_Mutex) == TRUE);
|
return (TryEnterCriticalSection(&m_Mutex) == TRUE);
|
||||||
|
@ -29,7 +29,7 @@ bool mutex::tryenter(void)
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
}
|
}
|
||||||
|
|
||||||
void mutex::enter(void)
|
void Mutex::Enter(void)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
EnterCriticalSection(&m_Mutex);
|
EnterCriticalSection(&m_Mutex);
|
||||||
|
@ -38,7 +38,7 @@ void mutex::enter(void)
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
}
|
}
|
||||||
|
|
||||||
void mutex::exit(void)
|
void Mutex::Exit(void)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
LeaveCriticalSection(&m_Mutex);
|
LeaveCriticalSection(&m_Mutex);
|
||||||
|
@ -48,9 +48,9 @@ void mutex::exit(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
CRITICAL_SECTION *mutex::get(void)
|
CRITICAL_SECTION *Mutex::Get(void)
|
||||||
#else /* _WIN32 */
|
#else /* _WIN32 */
|
||||||
pthread_mutex_t *mutex::get(void)
|
pthread_mutex_t *Mutex::Get(void)
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
{
|
{
|
||||||
return &m_Mutex;
|
return &m_Mutex;
|
||||||
|
|
16
base/mutex.h
16
base/mutex.h
|
@ -4,7 +4,7 @@
|
||||||
namespace icinga
|
namespace icinga
|
||||||
{
|
{
|
||||||
|
|
||||||
class I2_BASE_API mutex
|
class I2_BASE_API Mutex
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
@ -14,17 +14,17 @@ private:
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
|
|
||||||
public:
|
public:
|
||||||
mutex(void);
|
Mutex(void);
|
||||||
~mutex(void);
|
~Mutex(void);
|
||||||
|
|
||||||
bool tryenter(void);
|
bool TryEnter(void);
|
||||||
void enter(void);
|
void Enter(void);
|
||||||
void exit(void);
|
void Exit(void);
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
CRITICAL_SECTION *get(void);
|
CRITICAL_SECTION *Get(void);
|
||||||
#else /* _WIN32 */
|
#else /* _WIN32 */
|
||||||
pthread_mutex_t *get(void);
|
pthread_mutex_t *Get(void);
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -40,12 +40,12 @@ public:
|
||||||
|
|
||||||
static void CloseAllSockets(void);
|
static void CloseAllSockets(void);
|
||||||
|
|
||||||
event<EventArgs::Ptr> OnReadable;
|
Event<EventArgs::Ptr> OnReadable;
|
||||||
event<EventArgs::Ptr> OnWritable;
|
Event<EventArgs::Ptr> OnWritable;
|
||||||
event<EventArgs::Ptr> OnException;
|
Event<EventArgs::Ptr> OnException;
|
||||||
|
|
||||||
event<SocketErrorEventArgs::Ptr> OnError;
|
Event<SocketErrorEventArgs::Ptr> OnError;
|
||||||
event<EventArgs::Ptr> OnClosed;
|
Event<EventArgs::Ptr> OnClosed;
|
||||||
|
|
||||||
virtual bool WantsToRead(void) const;
|
virtual bool WantsToRead(void) const;
|
||||||
virtual bool WantsToWrite(void) const;
|
virtual bool WantsToWrite(void) const;
|
||||||
|
|
|
@ -35,7 +35,7 @@ public:
|
||||||
virtual bool WantsToRead(void) const;
|
virtual bool WantsToRead(void) const;
|
||||||
virtual bool WantsToWrite(void) const;
|
virtual bool WantsToWrite(void) const;
|
||||||
|
|
||||||
event<EventArgs::Ptr> OnDataAvailable;
|
Event<EventArgs::Ptr> OnDataAvailable;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,7 +32,7 @@ public:
|
||||||
|
|
||||||
void Listen(void);
|
void Listen(void);
|
||||||
|
|
||||||
event<NewClientEventArgs::Ptr> OnNewClient;
|
Event<NewClientEventArgs::Ptr> OnNewClient;
|
||||||
|
|
||||||
virtual bool WantsToRead(void) const;
|
virtual bool WantsToRead(void) const;
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,7 +4,7 @@ using namespace icinga;
|
||||||
|
|
||||||
typedef struct threadparam_s
|
typedef struct threadparam_s
|
||||||
{
|
{
|
||||||
void (*callback)(void*);
|
ThreadProc callback;
|
||||||
void *param;
|
void *param;
|
||||||
} threadparam_t;
|
} threadparam_t;
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ static void *ThreadStartProc(void *param)
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
|
|
||||||
|
|
||||||
thread::thread(void (*callback)(void *))
|
Thread::Thread(ThreadProc callback)
|
||||||
{
|
{
|
||||||
threadparam_t *tparam = new threadparam_t();
|
threadparam_t *tparam = new threadparam_t();
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ thread::thread(void (*callback)(void *))
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
}
|
}
|
||||||
|
|
||||||
thread::~thread(void)
|
Thread::~Thread(void)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
CloseHandle(m_Thread);
|
CloseHandle(m_Thread);
|
||||||
|
@ -49,17 +49,8 @@ thread::~thread(void)
|
||||||
/* nothing to do here */
|
/* nothing to do here */
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void thread::terminate(void)
|
|
||||||
{
|
|
||||||
#ifdef _WIN32
|
|
||||||
TerminateThread(m_Thread, 0);
|
|
||||||
#else /* _WIN32 */
|
|
||||||
/* nothing to do here */
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
void thread::join(void)
|
void Thread::Join(void)
|
||||||
{
|
{
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
WaitForSingleObject(m_Thread, INFINITE);
|
WaitForSingleObject(m_Thread, INFINITE);
|
||||||
|
|
|
@ -4,7 +4,9 @@
|
||||||
namespace icinga
|
namespace icinga
|
||||||
{
|
{
|
||||||
|
|
||||||
class I2_BASE_API thread
|
typedef void (*ThreadProc)(void *);
|
||||||
|
|
||||||
|
class I2_BASE_API Thread
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
@ -14,12 +16,11 @@ private:
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
public:
|
public:
|
||||||
thread(void (*callback)(void *));
|
Thread(void (*callback)(void *));
|
||||||
~thread(void);
|
~Thread(void);
|
||||||
|
|
||||||
void start(void);
|
void Start(void);
|
||||||
void terminate(void);
|
void Join(void);
|
||||||
void join(void);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,7 +49,7 @@ public:
|
||||||
|
|
||||||
void Reschedule(time_t next);
|
void Reschedule(time_t next);
|
||||||
|
|
||||||
event<TimerEventArgs::Ptr> OnTimerExpired;
|
Event<TimerEventArgs::Ptr> OnTimerExpired;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,7 +30,7 @@ void VirtualEndpoint::UnregisterMethodSource(string method)
|
||||||
|
|
||||||
void VirtualEndpoint::SendMessage(Endpoint::Ptr source, JsonRpcMessage::Ptr message)
|
void VirtualEndpoint::SendMessage(Endpoint::Ptr source, JsonRpcMessage::Ptr message)
|
||||||
{
|
{
|
||||||
map<string, event<NewMessageEventArgs::Ptr> >::iterator i;
|
map<string, Event<NewMessageEventArgs::Ptr> >::iterator i;
|
||||||
i = m_MethodHandlers.find(message->GetMethod());
|
i = m_MethodHandlers.find(message->GetMethod());
|
||||||
|
|
||||||
if (i == m_MethodHandlers.end()) {
|
if (i == m_MethodHandlers.end()) {
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace icinga
|
||||||
class I2_ICINGA_API VirtualEndpoint : public Endpoint
|
class I2_ICINGA_API VirtualEndpoint : public Endpoint
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
map< string, event<NewMessageEventArgs::Ptr> > m_MethodHandlers;
|
map< string, Event<NewMessageEventArgs::Ptr> > m_MethodHandlers;
|
||||||
list<string> m_MethodSources;
|
list<string> m_MethodSources;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -25,7 +25,7 @@ public:
|
||||||
|
|
||||||
virtual void Start(void);
|
virtual void Start(void);
|
||||||
|
|
||||||
event<NewMessageEventArgs::Ptr> OnNewMessage;
|
Event<NewMessageEventArgs::Ptr> OnNewMessage;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue