Created
January 15, 2013 07:54
-
-
Save clicube/4537027 to your computer and use it in GitHub Desktop.
queue for multi processing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
class MPQueue | |
def initialize | |
@wcout,@wcin = IO.pipe # lock for write | |
@rcout,@rcin = IO.pipe # lock for read | |
@lout,@lin = IO.pipe | |
@dout,@din = IO.pipe | |
@wcin.syswrite(0) | |
@rcin.syswrite(0) | |
end | |
def enq obj | |
data = Marshal.dump(obj) | |
@wcout.sysread(1) # lock write | |
begin | |
len = @din.syswrite data | |
@lin.syswrite len.to_s + "\n" | |
ensure | |
@wcin.syswrite(0) # unlock write | |
end | |
end | |
alias push enq | |
alias << enq | |
def deq | |
data = "" | |
@rcout.sysread(1) # lock read | |
begin | |
buf = "" | |
len = nil | |
loop do | |
c = @lout.sysread(1) | |
if c == "\n" | |
len = buf.to_i | |
break | |
else | |
buf << c | |
end | |
end | |
begin | |
buf = @dout.sysread(len) | |
len -= buf.bytesize | |
data << buf | |
end while len > 0 | |
ensure | |
@rcin.syswrite(0) # unlock read | |
end | |
return Marshal.load(data) | |
end | |
alias pop deq | |
end | |
if $0 == __FILE__ | |
q = MPQueue.new | |
pid = fork | |
if !pid | |
q.enq("aaa") | |
q.enq([1,2,:three]) | |
p q.deq | |
exit(0) | |
end | |
p q.deq | |
Process.waitall | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment