歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Lua 架構構建多線程事物性線程

Lua與C++的調用本文雖然有涉及但是,這不是我今天向大家推薦的內容,今天向大家寫的示例代碼是Lua如何構建控制和任務邏輯以及與主線程進行控制子線程程執行的方式。

不熟悉Windows下多線程的童鞋可以翻翻本人的多線程的相關文章,也可以自己從網上學習下多線程的編寫,以及如何合理的退出線程。這樣編寫代碼可以做到,架構靈活,業務可變更性非常強,只要實現好底層算法性代碼,業務邏輯盡量交給腳本語言吧,查錯方便,直接可以定位到具體的行數,這是C++不具備的,當然上層用Lua方便的同時,增加了編寫C++注冊到Lua的函數的人負擔,他必須非常清楚的了解Lua和C++的特性,但是對於分別編寫Lua和C++的兩撥人將非常輕松,這樣團隊只需要一個C++能人和一些中級的C++程序員,和一堆對編程了解不多的Lua程序員就可以完成復雜的業務邏輯工作。最適合團隊中只要一個技術大神的團隊或者團隊中的大神非常少的情況。這樣設計從根本上屏蔽了對C++多線程的了解,Lua程序員就可以處理多線程並發事物,他可以不知道何為原子操作,可以不知道何為關鍵段何為等待事物,這些全部交給一個去編寫完成,其他Lua程序員只需要調用即可,而不是神級的C++程序員只用來開發底層費時間的運算即可。非常適合快速開發。若後期覺得提高效率非常必要,那就將Lua寫成C++。

  1. #include <stdio.h> 
  2. #include <iostream> 
  3. #include <Windows.h> 
  4. #include <vector> 
  5.  
  6.  
  7. #pragma comment(lib,"lua.lib") 
  8. using namespace std; 
  9.  
  10.  
  11. extern "C" { 
  12. #include "lua/lua.h" 
  13. #include "lua/lualib.h" 
  14. #include "lua/lauxlib.h" 
  15.  
  16.  
  17. lua_State* L; 
  18. lua_State* L2; 
  19.  
  20.  
  21. int average(lua_State *L) 
  22.     int n=lua_gettop(L); 
  23.     double sum=0; 
  24.     for (int i=0;i<=n;i++) 
  25.     { 
  26.         sum+=lua_tonumber(L,i); 
  27.     } 
  28.     lua_pushnumber(L,sum/n); 
  29.     lua_pushnumber(L,sum); 
  30.     lua_pushnumber(L,n); 
  31.     /*標識函數有幾個返回值*/ 
  32.     return 3; 
  33. HANDLE MyEvent; 
  34. HANDLE MyExit; 
  35. volatile unsigned long threadRun; 
  36.  
  37.  
  38. struct ThreadInfo 
  39.     string Text; 
  40.      
  41.     string DataPath; 
  42.  
  43.  
  44.     int    NextPosition; 
  45.  
  46.  
  47.     bool   boolValue; 
  48. }; 
  49.  
  50.  
  51. vector <int(*)(ThreadInfo InputThreadInfo,ThreadInfo &OutputThreadInfo)> FunctionVector; 
  52.  
  53.  
  54. int AddFunction(int(*_ProcesseFunction)(ThreadInfo InputThreadInfo,ThreadInfo &OutputThreadInfo)) 
  55.     FunctionVector.push_back(_ProcesseFunction); 
  56.     return 0; 
  57.  
  58.  
  59. ThreadInfo myInputInfo; 
  60.  
  61.  
  62. static unsigned long WINAPI MyThreadFunction(LPVOID lpvoid) 
  63.     myInputInfo.boolValue    = false; 
  64.     myInputInfo.DataPath     = "kji"; 
  65.     myInputInfo.NextPosition = 0; 
  66.     myInputInfo.Text         = "Hello World!"; 
  67.     ThreadInfo myOutPutInfo; 
  68.      
  69.     while(1) 
  70.     { 
  71.         WaitForSingleObject(MyEvent,INFINITE); 
  72.         ResetEvent(MyEvent); 
  73.         if(0==threadRun) 
  74.         { 
  75.             break; 
  76.         } 
  77.         for (int i=0;i<(int)(FunctionVector.size());i++) 
  78.         { 
  79.             if (NULL!=(FunctionVector[i])) 
  80.             { 
  81.                 (*FunctionVector[i])(myInputInfo,myOutPutInfo); 
  82.             } 
  83.         }         
  84.     } 
  85.     SetEvent(MyExit); 
  86.     return 0; 
  87.  
  88.  
  89. int PointFunction(ThreadInfo InputThreadInfo,ThreadInfo &OutputThreadInfo) 
  90.     OutputThreadInfo.boolValue=!InputThreadInfo.boolValue; 
  91.     OutputThreadInfo.DataPath= InputThreadInfo.DataPath; 
  92.     OutputThreadInfo.NextPosition = InputThreadInfo.NextPosition+1; 
  93.     OutputThreadInfo.Text = InputThreadInfo.Text; 
  94.  
  95.  
  96.     printf("%s \n",OutputThreadInfo.Text); 
  97.     /* 運行腳本 */ 
  98.     luaL_dofile(L2, "2.lua"); 
  99.  
  100.  
  101. int startWork(lua_State *L) 
  102.     SetEvent(MyEvent); 
  103.     return 0; 
  104.  
  105.  
  106. int Exit(lua_State *L) 
  107.     InterlockedExchange(&threadRun,0); 
  108.     SetEvent(MyEvent); 
  109.     return 0; 
  110.  
  111.  
  112. int CreateMythread(LPVOID lpvoid) 
  113.     MyEvent = CreateEvent(NULL,TRUE,FALSE,L"startProcess"); 
  114.     MyExit  = CreateEvent(NULL,TRUE,FALSE,L"ExitEvent"); 
  115.     InterlockedExchange(&threadRun,1); 
  116.     DWORD dwthreadID; 
  117.     HANDLE ThreadHandle = CreateThread(NULL,NULL,MyThreadFunction,lpvoid,0,&dwthreadID); 
  118.     if (NULL==ThreadHandle) 
  119.     { 
  120.         CloseHandle(ThreadHandle); 
  121.         return 1; 
  122.     } 
  123.     CloseHandle(ThreadHandle); 
  124.     return 0; 
  125.  
  126.  
  127.  
  128.  
  129. int main ( int argc, char *argv[] ) 
  130.     AddFunction(PointFunction); 
  131.     CreateMythread(NULL); 
  132.  
  133.  
  134.     /* 初始化Lua */ 
  135.     L=luaL_newstate(); 
  136.     lua_status(L); 
  137.  
  138.  
  139.     /* 載入Lua基本庫 */ 
  140.     luaL_openlibs(L); 
  141.  
  142.  
  143.     /*注冊函數*/ 
  144.      
  145.     L2=luaL_newstate(); 
  146.     lua_status(L2); 
  147.  
  148.  
  149.     /* 載入Lua基本庫 */ 
  150.     luaL_openlibs(L2); 
  151.  
  152.  
  153.     /*注冊函數*/ 
  154.  
  155.  
  156.     lua_register(L2,"average",average); 
  157.  
  158.  
  159.     lua_register(L,"startWork",startWork); 
  160.  
  161.  
  162.     lua_register(L,"ExitAllThread",Exit); 
  163.     /* 運行腳本 */ 
  164.     luaL_dofile(L, "1.lua"); 
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.     WaitForSingleObject(MyExit,INFINITE); 
  172.     ResetEvent(MyExit); 
  173.     CloseHandle(MyExit); 
  174.     CloseHandle(MyEvent); 
  175.     /* 清除Lua */ 
  176.     lua_close(L); 
  177.     lua_close(L2); 
  178.     /* 暫停 */ 
  179.     system("pause"); 
  180.  
  181.  
  182.     return 0; 
Copyright © Linux教程網 All Rights Reserved