123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- #pragma once
- //
- // UnlockedDelegate
- //
- class UnlockedDelegate : public Delegate
- {
- public:
- inline UnlockedDelegate ()
- {
- }
- inline UnlockedDelegate (const char * DelegateID) : Delegate (DelegateID)
- {
- }
- inline virtual ~UnlockedDelegate ()
- {
- }
- inline virtual void Invoke (const void * sender, DelegateArgs * arg)
- {
- int Size = GetSize ();
- if (Size == 0)
- return;
- DSingleLock Lock (& m_handlers.GetMutex (), true);
- if (Size <= DelegateMaxHandler)
- {
- DelegateHandler * arTemp [DelegateMaxHandler];
- const Array <DelegateHandler *> & ar = m_handlers;
- int NbOfElem = ar.CopyTo (arTemp, DelegateMaxHandler);
- Lock.Unlock ();
- for (int Index=0; Index<NbOfElem; Index++)
- {
- DelegateHandler * h = arTemp[Index];
- try
- {
- h->Invoke (sender, arg);
- }
- catch (...)
- {
- #ifdef _DEBUG
- Beep (1000, 1000);
- OnDelegateInvokeFailed (h);
- #endif
- }
- }
- }
- else
- {
- FixArray <DelegateHandler *> arTemp (m_handlers.GetSize ());
- const Array <DelegateHandler *> & ar = m_handlers;
- int NbOfElem = ar.CopyTo (arTemp);
- Lock.Unlock ();
- for (int Index=0; Index<NbOfElem; Index++)
- {
- DelegateHandler * h = arTemp[Index];
- try
- {
- h->Invoke (sender, arg);
- }
- catch (...)
- {
- #ifdef _DEBUG
- Beep (1000, 1000);
- OnDelegateInvokeFailed (h);
- #endif
- }
- }
- }
- }
- template <class pfnForEach> void ForEach (pfnForEach pFunction)
- {
- int Size = GetSize ();
- if (Size == 0)
- return;
- DSingleLock Lock (& m_handlers.GetMutex (), true);
- m_ForEachBreak = false;
- if (Size <= DelegateMaxHandler)
- {
- DelegateHandler * arTemp [DelegateMaxHandler];
- // int NbOfElem = m_handlers.CopyTo (arTemp, DelegateMaxHandler);
- const Array <DelegateHandler *> & ar = m_handlers;
- int NbOfElem = ar.CopyTo (arTemp, DelegateMaxHandler);
- Lock.Unlock ();
- for (int Index=0; Index<NbOfElem; Index++)
- {
- if (m_ForEachBreak)
- break;
- DelegateHandler * h = arTemp[Index];
- try
- {
- pFunction (h);
- }
- catch (...)
- {
- #ifdef _DEBUG
- Beep (1000, 1000);
- OnDelegateInvokeFailed (h);
- #endif
- }
- }
- }
- else
- {
- FixArray <DelegateHandler *> arTemp (m_handlers.GetSize ());
- // int NbOfElem = m_handlers.CopyTo (arTemp, DelegateMaxHandler);
- const Array <DelegateHandler *> & ar = m_handlers;
- int NbOfElem = ar.CopyTo (arTemp);
- Lock.Unlock ();
- for (int Index=0; Index<NbOfElem; Index++)
- {
- if (m_ForEachBreak)
- break;
- DelegateHandler * h = arTemp[Index];
- try
- {
- pFunction (h);
- }
- catch (...)
- {
- #ifdef _DEBUG
- Beep (1000, 1000);
- OnDelegateInvokeFailed (h);
- #endif
- }
- }
- }
- }
- template <class pfnForEach, class Parameter> void ForEach (pfnForEach pFunction, Parameter para)
- {
- int Size = GetSize ();
- if (Size == 0)
- return;
- DSingleLock Lock (& m_handlers.GetMutex (), true);
- m_ForEachBreak = false;
- if (Size <= DelegateMaxHandler)
- {
- DelegateHandler * arTemp [DelegateMaxHandler];
- // int NbOfElem = m_handlers.CopyTo (arTemp, DelegateMaxHandler);
- const Array <DelegateHandler *> & ar = m_handlers;
- int NbOfElem = ar.CopyTo (arTemp, DelegateMaxHandler);
- Lock.Unlock ();
- for (int Index=0; Index<NbOfElem; Index++)
- {
- if (m_ForEachBreak)
- break;
- DelegateHandler * h = arTemp[Index];
- try
- {
- pFunction (h, para);
- }
- catch (...)
- {
- #ifdef _DEBUG
- Beep (1000, 1000);
- OnDelegateInvokeFailed (h);
- #endif
- }
- }
- }
- else
- {
- FixArray <DelegateHandler *> arTemp (m_handlers.GetSize ());
- // int NbOfElem = m_handlers.CopyTo (arTemp, DelegateMaxHandler);
- const Array <DelegateHandler *> & ar = m_handlers;
- int NbOfElem = ar.CopyTo (arTemp);
- Lock.Unlock ();
- for (int Index=0; Index<NbOfElem; Index++)
- {
- if (m_ForEachBreak)
- break;
- DelegateHandler * h = arTemp[Index];
- try
- {
- pFunction (h, para);
- }
- catch (...)
- {
- #ifdef _DEBUG
- Beep (1000, 1000);
- OnDelegateInvokeFailed (h);
- #endif
- }
- }
- }
- }
- template <class pfnForEach> void ForEach (pfnForEach pFunction, Delegate * SThis)
- {
- int Size = GetSize ();
- if (Size == 0)
- return;
- DSingleLock Lock (& m_handlers.GetMutex (), true);
- m_ForEachBreak = false;
- if (Size <= DelegateMaxHandler)
- {
- DelegateHandler * arTemp [DelegateMaxHandler];
- // int NbOfElem = m_handlers.CopyTo (arTemp, DelegateMaxHandler);
- const Array <DelegateHandler *> & ar = m_handlers;
- int NbOfElem = ar.CopyTo (arTemp, DelegateMaxHandler);
- Lock.Unlock ();
- for (int Index=0; Index<NbOfElem; Index++)
- {
- if (m_ForEachBreak)
- break;
- DelegateHandler * h = arTemp[Index];
- try
- {
- pFunction (SThis, h);
- }
- catch (...)
- {
- #ifdef _DEBUG
- Beep (1000, 1000);
- OnDelegateInvokeFailed (h);
- #endif
- }
- }
- }
- else
- {
- FixArray <DelegateHandler *> arTemp (m_handlers.GetSize ());
- // int NbOfElem = m_handlers.CopyTo (arTemp, DelegateMaxHandler);
- const Array <DelegateHandler *> & ar = m_handlers;
- int NbOfElem = ar.CopyTo (arTemp);
- Lock.Unlock ();
- for (int Index=0; Index<NbOfElem; Index++)
- {
- if (m_ForEachBreak)
- break;
- DelegateHandler * h = arTemp[Index];
- try
- {
- pFunction (SThis, h);
- }
- catch (...)
- {
- #ifdef _DEBUG
- Beep (1000, 1000);
- OnDelegateInvokeFailed (h);
- #endif
- }
- }
- }
- }
- template <class pfnForEach, class Parameter> void ForEach (pfnForEach pFunction, Delegate * SThis, Parameter para)
- {
- int Size = GetSize ();
- if (Size == 0)
- return;
- DSingleLock Lock (& m_handlers.GetMutex (), true);
- m_ForEachBreak = false;
- if (Size <= DelegateMaxHandler)
- {
- DelegateHandler * arTemp [DelegateMaxHandler];
- // int NbOfElem = m_handlers.CopyTo (arTemp, DelegateMaxHandler);
- const Array <DelegateHandler *> & ar = m_handlers;
- int NbOfElem = ar.CopyTo (arTemp, DelegateMaxHandler);
- Lock.Unlock ();
- for (int Index=0; Index<NbOfElem; Index++)
- {
- if (m_ForEachBreak)
- break;
- DelegateHandler * h = arTemp[Index];
- try
- {
- pFunction (SThis, h, para);
- }
- catch (...)
- {
- #ifdef _DEBUG
- Beep (1000, 1000);
- OnDelegateInvokeFailed (h);
- #endif
- }
- }
- }
- else
- {
- FixArray <DelegateHandler *> arTemp (m_handlers.GetSize ());
- // int NbOfElem = m_handlers.CopyTo (arTemp, DelegateMaxHandler);
- const Array <DelegateHandler *> & ar = m_handlers;
- int NbOfElem = ar.CopyTo (arTemp);
- Lock.Unlock ();
- for (int Index=0; Index<NbOfElem; Index++)
- {
- if (m_ForEachBreak)
- break;
- DelegateHandler * h = arTemp[Index];
- try
- {
- pFunction (SThis, h, para);
- }
- catch (...)
- {
- #ifdef _DEBUG
- Beep (1000, 1000);
- OnDelegateInvokeFailed (h);
- #endif
- }
- }
- }
- }
- };
|