• <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>

            戰(zhàn)魂小筑

            討論群:309800774 知乎關(guān)注:http://zhihu.com/people/sunicdavy 開源項(xiàng)目:https://github.com/davyxu

               :: 首頁 :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
              257 隨筆 :: 0 文章 :: 506 評(píng)論 :: 0 Trackbacks

            以下代碼使用luabind進(jìn)行l(wèi)ua的coroutine測試

               1: void ScriptManagedChannel::OnServiceInitialize()
               2: {    
               3:     try
               4:     {        
               5:         mThread = lua_newthread( GScriptScriptContext->GetVM() );
               6:  
               7:         luabind::resume_function<void>( mThread, "ScriptMain", this );
               8:  
               9:         Resume();
              10:     }
              11:     catch (std::exception& e)
              12:     {
              13:         const char* ErrorMsg = lua_tostring( GScriptScriptContext->GetVM(), -1 );            
              14:         printf("%s\n", e.what() );
              15:     }
              16:  
              17:     
              18: }
              19:  
              20: void ScriptManagedChannel::Resume( )
              21: {
              22:     luabind::resume<void>( mThread );
              23: }
              24:  
              25: void ScriptManagedChannel::StopTest( )
              26: {
              27:     lua_yield( mThread, 0 );
              28: }
              29:  
              30:  

            代碼中, mThread類型為lua_State*類型

            GScriptScriptContext->GetVM()是加載了代碼的lua_State*

            StopTest為注冊(cè)為ScriptManagedChannel類成員函數(shù)到lua中的定義

            接下來看lua端的測試代碼:

               1: function ScriptMain( Channel )
               2:  
               3:     
               4:     for i = 1, 5 do
               5:     
               6:     print("done", i)
               7:     
               8:     Channel:StopTest( )
               9:     
              10:     
              11:     
              12:     end
              13: end

            剛開始,在測試代碼時(shí), lua中有個(gè)手誤而造成的錯(cuò)誤, 導(dǎo)致C++代碼運(yùn)行到第7行時(shí)彈出assert

            位于:luabind-0.9.1\luabind\detail\call_function.hpp 第264行,對(duì)應(yīng)以下代碼第13行

               1: ~proxy_function_void_caller()
               2: {
               3:     if (m_called) return;
               4:  
               5:     m_called = true;
               6:     lua_State* L = m_state;
               7:  
               8:     int top = lua_gettop(L);
               9:  
              10:     push_args_from_tuple<1>::apply(L, m_args);
              11:     if (m_fun(L, boost::tuples::length<Tuple>::value, 0))
              12:     {
              13:         assert(lua_gettop(L) == top - m_params + 1);
              14:  
              15: NO_EXCEPTIONS
              16:         throw luabind::error(L);
              17: #else
              18:         error_callback_fun e = get_error_callback();
              19:         if (e) e(L);
              20:     
              21:         assert(0 && "the lua function threw an error and exceptions are disabled."
              22:                 " If you want to handle the error you can use luabind::set_error_callback()");
              23:         std::terminate();
              24: #endif
              25:     }
              26:     // pops the return values from the function call
              27:     stack_pop pop(L, lua_gettop(L) - top + m_params);
              28: }

            11行代碼中調(diào)用的是lua_resume, 返回的是運(yùn)行錯(cuò)誤, 但是被13行的assert擋住了, 無法通過第16行拋出異常被外面捕獲.

            因此,嘗試注釋第13行, 再測試, 可以在lua拋出錯(cuò)誤后, 在棧頂捕獲到coroutine函數(shù)resume時(shí)報(bào)出的錯(cuò)誤信息.問題解決

             

            對(duì)于lua的coroutine, 網(wǎng)上資料不多, 這里有一篇比較詳細(xì)的代碼

            我比較疑惑的是, 有沒有必要將代碼在dofile或者dobuffer時(shí), 必須傳入newthread出的state? 如果還是傳入原始的state會(huì)有什么影響?

            歡迎各位有此經(jīng)驗(yàn)的討論

            posted on 2012-03-27 10:38 戰(zhàn)魂小筑 閱讀(1532) 評(píng)論(2)  編輯 收藏 引用 所屬分類: 腳本技術(shù)C++/ 編程語言

            評(píng)論

            # re: luabind使用coroutine時(shí)的一處善意提示導(dǎo)致的BUG[未登錄] 2012-03-27 15:36 陳梓瀚(vczh)
            assert和exception是不一樣的。assert是絕對(duì)不能發(fā)生的錯(cuò)誤,exception只是用來替換類似HRESULT這種COM的返回值而已。發(fā)生了assert則一定要修改代碼使之不發(fā)生(對(duì)于你的情況就是修改你傳入的參數(shù)),而exception你可以處理或者不處理。

            所以這個(gè)不是lua的問題,是你的問題。  回復(fù)  更多評(píng)論
              

            # re: luabind使用coroutine時(shí)的一處善意提示導(dǎo)致的BUG 2012-03-27 17:30 戰(zhàn)魂小筑
            @陳梓瀚(vczh)
            大哥,我說了嘛,故意錯(cuò)誤而導(dǎo)致的, 把a(bǔ)ssert跳過就能正確拋出代碼中錯(cuò)誤信息
            如果代碼正確,壓根不會(huì)有assert  回復(fù)  更多評(píng)論
              

            香蕉久久影院| 国产一区二区三区久久精品| 9191精品国产免费久久| 国内精品免费久久影院| 国产精品青草久久久久福利99 | 99久久夜色精品国产网站| 精品伊人久久大线蕉色首页| 午夜天堂精品久久久久| 久久精品国产免费| 久久AV高潮AV无码AV| 国内精品久久九九国产精品| 日本精品久久久久久久久免费| 亚洲AV无码久久精品色欲| 久久综合狠狠综合久久激情 | 亚洲国产成人久久综合碰| 69久久精品无码一区二区| 久久久无码精品午夜| 久久久久亚洲AV无码专区体验| 久久精品国产一区二区三区 | 99久久无色码中文字幕| 一本色道久久88综合日韩精品| av国内精品久久久久影院| 久久综合色老色| 性高湖久久久久久久久AAAAA | 久久久久亚洲AV成人网| 99精品国产在热久久| 综合久久国产九一剧情麻豆| 久久亚洲国产精品123区| 青青草原综合久久| 久久久久四虎国产精品| 国产国产成人精品久久| 久久久久久亚洲Av无码精品专口 | 欧美久久一级内射wwwwww.| 国产精品综合久久第一页| 久久本道伊人久久| 潮喷大喷水系列无码久久精品| 久久久久久久女国产乱让韩| 深夜久久AAAAA级毛片免费看| 久久综合精品国产一区二区三区 | 久久精品人人做人人妻人人玩| 奇米综合四色77777久久|