• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            Leo

            <2007年5月>
            293012345
            6789101112
            13141516171819
            20212223242526
            272829303112
            3456789

            統計

            • 隨筆 - 2
            • 文章 - 0
            • 評論 - 2
            • 引用 - 0

            常用鏈接

            留言簿(1)

            隨筆檔案

            搜索

            •  

            最新評論

            閱讀排行榜

            評論排行榜

            How to use SetTimer() with callback to a non-static member function

            Quick update...

            After reviewing the comments and suggestions from a few people, I made the solution better. Look for an update to this article which uses a better approach, namely using the functions:

            • CreateWaitableTimer()
            • SetWaitableTimer()
            • WaitForMultipleObjects()

            The solution based on these functions will allow multiple instances of the CSleeperThread class to run (instead of just one using the current example). So stay tuned, I'll have this article updated as soon as possible. :-)

            Introduction

            I have seen many questions on the boards about how to properly use SetTimer(). I've also noticed that most of these questions are around how to put a thread to sleep for X seconds. One obvious answer would be to use the Sleep() function. The main drawback is, how do you gracefully shut down your thread, or cancel the Sleep() operation before the time expires.

            This article is meant to address all of the above. I give an example of putting a thread to sleep using SetTimer(). The SetTimer() calls back to a non-static function. This is key, because normally you have to pass a static member to SetTimer() which means it can't access any other non-static variables or member functions of the class.

            Details

            Since implementing a non-static callback member is key to this, we'll go into this first. Implementing a callback to a static member function doesn't require anything different from implementing a regular C callback function. Since static member functions have the same signature as C functions with the same calling conventions, they can be referenced using just the function name.

            Making a non-static callback member function is a different story, because they have a different signature than a C function. To make a non-static member function, it requires the use of two additional items:

            • A global (void*) pointer, referencing the class of the callback function
            • A wrapper function which will be passed to SetTimer()

            This is actually a fairly simple implementation. First, you need to define your class:

            class CSleeperThread : public CWinThread {
            public:
            static VOID CALLBACK TimerProc_Wrapper( HWND hwnd, UINT uMsg,
            UINT idEvent, DWORD dwTime );
            VOID CALLBACK TimerProc( HWND hwnd,
            UINT uMsg, UINT idEvent, DWORD dwTime );
            void ThreadMain();
            void WakeUp();
            private:
            static void * pObject;
            UINT_PTR pTimer;
            CRITICAL_SECTION lock;
            };

            Then, don't forget to include the following line in your class implementation file:

            void * CSleeperThread::pObject;

            Now that we have our class declared, we can look at the wrapper function, the non-static member function and the member function that will call SetTimer():

            VOID CALLBACK CSleeperThread::TimerProc_Wrapper( HWND hwnd, UINT uMsg,
            UINT idEvent, DWORD dwTime ) {
            CSleeperThread *pSomeClass = (CSleeperThread*)pObject; // cast the void pointer
            pSomeClass->TimerProc(hwnd, uMsg, idEvent, dwTime); // call non-static function
            }

            The wrapper function first initializes a CSleeperThread pointer with pObject. Since pSomeClass is a local pointer, we can access it within the static wrapper function.

            VOID CALLBACK CSleeperThread::TimerProc(HWND hwnd,
            UINT uMsg, UINT idEvent, DWORD dwTime) {
            ::EnterCriticalSection(&lock);
            if(idEvent == pTimer) {
            KillTimer(NULL, pTimer);  // kill the timer so it won't fire again
            ResumeThread();  // resume the main thread function
            }
            ::LeaveCriticalSection(&lock);
            }

            The TimerProc member function isn't static, so we can access other non-static functions like ResumeThread() and we can access the private variable lock. Notice that I've entered a critical section which prevents a second timer event to enter the callback, thus ensuring that the first execution of TimerProc() will cancel out the timer.

            Next, let's take a look at the main execution function, ThreadMain().

            void CSleeperThread::ThreadMain()
            {
            pObject = this; // VERY IMPORTANT, must be initialized before
            // calling SetTimer()
            // call SetTimer, passing the wrapper function as the callback
            pTimer = SetTimer(NULL, NULL, 10000, TimerProc_Wrapper);
            // suspend until the timer expires
            SuspendThread();
            // the timer has expired, continue processing 
            }

            The first step in ThreadMain() is absolutely critical. We need to assign the class instance pointer (this) to the pObject variable. This is how the wrapper callback function will gain access to execute the non-static member function.

            Next, we just call SetTimer() passing in a function pointer to our wrapper function. SetTimer() will call the wrapper function when the timer expires. The wrapper function in turn, will execute the non-static function TimerProc(), by accessing the static variable pSomeClass.

            NOTE: I chose to implement a main function that will create the timer, go to sleep, continue processing and then exit when finished. This is in effect a function that will only execute once per timer. You could easily add a loop to ThreadMain() which would execute once for each timer event.

            One last little function. Since we used SuspendThread() in ThreadMain(), if we need to wake up the thread (for whatever reason), all we have to do is make a call to ResumeThread(). So, I've added an access function like so:

            void WakeUp() {
            ::EnterCriticalSection(&lock);
            KillTimer(NULL, pTimer);
            ResumeThread(); // wake the thread up
            }

            Buh dee buh dee, that's all folks...

            And there we have it. A thread safe class that goes to sleep using SetTimer() and a non-static callback function; which also has the ability to wake up before the timer expires.

            Hopefully, you have found this helpful. I've actually used this code in a project I'm working on now, and was in hopes someone else would get some good use out of it.

            Someone once told me "you'll like programming if you like banging your head against the wall repeatedly". I've found that to be true, it took me literally several days to figure out what I've put into this article, I'm just slow I guess.

            Whew, my head hurts, time for some Advil...or Ibooprofin.. or asssprin.... or something.

            Credits...

            I probably learned way more in the process of writing this article. So, much thanks goes to Lars Haendel for creating a web-site dedicated to understanding function pointers, without which I wouldn't know didley.

            www.function-pointer.org.

            posted on 2007-05-16 10:31 LeoChen 閱讀(1642) 評論(0)  編輯 收藏 引用

            亚洲伊人久久综合影院| 国产ww久久久久久久久久| 久久99热这里只频精品6| 亚洲AV日韩精品久久久久久| 国产美女亚洲精品久久久综合| av国内精品久久久久影院| 国产精品日韩深夜福利久久| 波多野结衣久久一区二区| 99久久精品国内| 久久国产AVJUST麻豆| 国产成人精品久久二区二区| 亚洲一级Av无码毛片久久精品| 久久99国产综合精品女同| 香港aa三级久久三级老师2021国产三级精品三级在 | 久久人人爽人人人人片av| 国产Av激情久久无码天堂| 亚洲国产成人久久综合区| 香蕉久久夜色精品国产小说| 久久人人爽人人爽人人片AV东京热 | 无码8090精品久久一区| 亚洲va中文字幕无码久久| 国产高清国内精品福利99久久| 亚洲av伊人久久综合密臀性色| 麻豆国内精品久久久久久| 久久电影网2021| 中文字幕久久久久人妻| 亚洲国产精品狼友中文久久久| 94久久国产乱子伦精品免费| 久久精品国产亚洲AV大全| 77777亚洲午夜久久多喷| 少妇熟女久久综合网色欲| 久久久久亚洲AV成人网人人软件| 久久精品嫩草影院| 久久99国产精品久久| 99久久精品日本一区二区免费| 无码人妻精品一区二区三区久久久 | Xx性欧美肥妇精品久久久久久| 久久精品国产亚洲AV大全| 久久精品国产清高在天天线| 久久99精品久久久久子伦| 99精品久久精品一区二区|