a = Object.new # non-shareable
prok = Ractor.current.instance_eval do
Proc.new do
eval('a')
end
end
prok.call # this should work, we're in the main ractor and the proc is not isolated
Ractor.make_shareable(prok) # this doesn't currently work, but I think it should. It gives Ractor::IsolationError. See below for reasoning on why I think it should work.
# A flag seems to be set on the proc after it's run and accesses outers...
Because this work fine:
a=Object.new# non-shareableprok=Ractor.current.instance_evaldoProc.newdoeval('a')endendRactor.make_shareable(prok)# this works, and it's okay because we get a different error when actually running the shareable proc inside a ractor that accesses outers through eval.
Hopefully this illustrates this small, weird issue a bit more:
fails=0a=Object.new# non-shareable valuepr_maker=Ractor.current.instance_evaldo# instance eval allows make_shareable to workProc.newdoProc.newdo|sym|# line 'x', let's call it. See below.ifsym==:evalp'evaling'eval('a')elsep'not evaling'endendendendPROC=pr_maker.call# so we can access in non-main ractor, we set constantRactor.make_shareable(PROC)beginPROC.call(:eval)# this gives an error because the proc is now isolated. That's good. It shouldn't be# a SyntaxError, but so far so good. Ruby also sets a flag on the compilation node of line 'x' that it accesses outers.rescueSyntaxError=>efails+=1ife.message.match?(/can not access variable `a' from isolated Proc/)endpfails# The flag is actually set somewhere during compilation, not on the proc object. If we# make a new proc, the issue stays the same.PROC=pr_maker.call# can't make it shareable now, even though it won't access outers if called without :eval symbol# This error should be during runtime of the proc IMO, not statically on the nodes themselves.Ractor.make_shareable(PROC)# this call failsfails+=Ractor.newdofails=0beginPROC.call(:no_eval)# We don't reach here, but this should give the same error as above (for now, it's SyntaxError)rescueSyntaxError=>efails+=1ife.message.match?(/can not access variable `a' from isolated Proc/)endfailsend.takefailspfails
Subject changed from Ractor.make_shareable issue/inconsistency when proc has been run that acesses outers through eval to Misunderstanding on my part, please close issue