最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Lua編程示例(八):生產(chǎn)者-消費(fèi)者問題

 更新時(shí)間:2015年07月09日 10:51:36   投稿:junjie  
這篇文章主要介紹了Lua編程示例(八):生產(chǎn)者-消費(fèi)者問題,本文直接給出實(shí)例代碼,需要的朋友可以參考下

這個(gè)問題是比較經(jīng)典的啦,基本所有語言的多線程都會(huì)涉及到,但是沒想到Lua的這個(gè)這么復(fù)雜 抓狂
  看了好長(zhǎng)時(shí)間才算看明白,先上個(gè)邏輯圖:

   開始時(shí)調(diào)用消費(fèi)者,當(dāng)消費(fèi)者需要值時(shí),再調(diào)用生產(chǎn)者生產(chǎn)值,生產(chǎn)者生產(chǎn)值后停止,直到消費(fèi)者再次請(qǐng)求。設(shè)計(jì)為消費(fèi)者驅(qū)動(dòng)的設(shè)計(jì)。
   圖畫的不太好,可以先將Filter遮住,它是過濾器對(duì)兩個(gè)程序之間傳遞的信息進(jìn)行處理。去掉Filter邏輯就更清晰些了,就是兩個(gè)“線程”(其實(shí)是兩個(gè)協(xié)同程序)互相調(diào)用。resume回到y(tǒng)ield處開始,支持嵌套,返回到棧頂?shù)膟ield位置。yield是非阻塞的“線程同步”。這到有點(diǎn)像linux里的管道通信。


 

 function receive(prod)
 print("receive is called")
 local status,value = coroutine.resume(prod)
 return value
end

function send(x,prod)
 print("send is called")
 return coroutine.yield(x)
end

function producer()
 return coroutine.create(function ()
 print("producer is called")
 while true do
 print("producer run again")
  local x = io.read()
  send(x)
 end
 end)
end

function filter(prod)
 return coroutine.create(function ()
 for line = 1,1000 do
  print("enter fliter "..line)
  local x = receive(prod)
  print("receive in filter finished")
  x= string.format("%5d %s",line,x)
  send(x,prod)
 end
 end)
end

function consumer(prod)
 print("consumer is called")
 while true do
 print("consumer run again")
 local x = receive(prod)
 print("retrun customer")
 io.write(x,"\n")
 end
end

p = producer()
f=filter(p)
consumer(f)


運(yùn)行結(jié)果:

consumer is called
consumer run again
receive is called
enter fliter 1
receive is called
producer is called
producer run again
fsy
send is called
receive in filter finished
send is called
retrun customer
  1 fsy
consumer run again
receive is called
enter fliter 2
receive is called
producer run again
gaga
send is called
receive in filter finished
send is called
retrun customer
  2 gaga
consumer run again
receive is called
enter fliter 3
receive is called
producer run again
......

相關(guān)文章

最新評(píng)論

宁城县| 应用必备| 玛纳斯县| 宜宾县| 阿图什市| 浦城县| 什邡市| 灵武市| 吐鲁番市| 宁武县| 扎鲁特旗| 涪陵区| 夏邑县| 邹城市| 青岛市| 多伦县| 榕江县| 上杭县| 娱乐| 九龙城区| 织金县| 团风县| 青浦区| 林西县| 宁津县| 石嘴山市| 杭州市| 景德镇市| 万载县| 班戈县| 铁岭县| 重庆市| 清水河县| 嵊泗县| 澄迈县| 镇原县| 泰州市| 文成县| 许昌县| 于都县| 菏泽市|