How do you stringize/serialize Ruby code? - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T03:31:03Zhttp://stackoverflow.com/feeds/question/199603http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/199603/how-do-you-stringize-serialize-ruby-code5How do you stringize/serialize Ruby code?Jonathan Tran2008-10-14T00:44:41Z2009-10-18T04:22:57Z
<p>I want to be able to write a lambda/Proc in my Ruby code, serialize it so that I can write it to disk, and then execute the lambda later. Sort of like...</p>
<pre><code>x = 40
f = lambda { |y| x + y }
save_for_later(f)
</code></pre>
<p>Later, in a separate run of the Ruby interpreter, I want to be able to say...</p>
<pre><code>f = load_from_before
z = f.call(2)
z.should == 42
</code></pre>
<p>Marshal.dump does not work for Procs. I know Perl has <a href="http://search.cpan.org/~yves/Data-Dump-Streamer-2.08-40/lib/Data/Dump/Streamer.pm" rel="nofollow">Data::Dump::Streamer</a>, and in Lisp this is trivial. But is there a way to do it in Ruby? In other words, what would be the implementation of <code>save<code>_</code>for<code>_</code>later</code>?</p>
<p><strong>Edit</strong>: <a href="http://stackoverflow.com/questions/199603/how-do-you-stringize-serialize-ruby-code/199803#199803">My answer below</a> is nice, but it does not close over free variables (like <code>x</code>) and serialize them along with the lambda. So in my example ...</p>
<pre><code>x = 40
s = save_for_later { |y| x + y }
# => "lambda { |y|\n (x + y)\n}"
</code></pre>
<p>... the string output does not include a definition for <code>x</code>. Is there a solution that takes this into account, perhaps by serializing the symbol table? Can you access that in Ruby?</p>
<p><strong>Edit 2</strong>: I updated my answer to incorporate serializing local variables. This seems acceptable.</p>
http://stackoverflow.com/questions/199603/how-do-you-stringize-serialize-ruby-code/199617#199617-4Answer by Mark for How do you stringize/serialize Ruby code?Mark2008-10-14T00:49:11Z2008-10-14T00:49:11Z<p>Ruby has the Marshal class that has a dump method that you can call.</p>
<p>Take a look here:</p>
<p><a href="http://rubylearning.com/satishtalim/object_serialization.html" rel="nofollow">http://rubylearning.com/satishtalim/object_serialization.html</a></p>
http://stackoverflow.com/questions/199603/how-do-you-stringize-serialize-ruby-code/199732#1997322Answer by James A. Rosen for How do you stringize/serialize Ruby code?James A. Rosen2008-10-14T01:40:31Z2008-10-14T01:40:31Z<p>Check out the answers to <a href="http://stackoverflow.com/questions/23970/how-do-i-marshall-a-lambda-proc-in-ruby">this question</a>.</p>
http://stackoverflow.com/questions/199603/how-do-you-stringize-serialize-ruby-code/199803#1998037Answer by Jonathan Tran for How do you stringize/serialize Ruby code?Jonathan Tran2008-10-14T02:16:44Z2009-02-02T22:40:50Z<p><strong>Use Ruby2Ruby</strong></p>
<pre><code>def save_for_later(&block)
return nil unless block_given?
c = Class.new
c.class_eval do
define_method :serializable, &block
end
s = Ruby2Ruby.translate(c, :serializable)
s.sub(/^def \S+\(([^\)]*)\)/, 'lambda { |\1|').sub(/end$/, '}')
end
x = 40
s = save_for_later { |y| x + y }
# => "lambda { |y|\n (x + y)\n}"
g = eval(s)
# => #<Proc:0x4037bb2c@(eval):1>
g.call(2)
# => 42
</code></pre>
<p>This is great, but it does not close over free variables (like <code>x</code>) and serialize them along with the lambda.</p>
<p>To <a href="http://stackoverflow.com/questions/503583/how-do-you-access-the-symbol-table-in-ruby">serialize variables</a> also, you can iterate over <code>local_variables</code> and serialize them as well. The problem, though, is that <code>local_variables</code> from within <code>save_for_later</code> accesses only <code>c</code> and <code>s</code> in the code above -- i.e. variables local to the serialization code, not the caller. So unfortunately, we must push the grabbing of local variables and their values to the caller.</p>
<p>Maybe this is a good thing, though, because in general, finding all free variables in a piece of Ruby code is <a href="http://en.wikipedia.org/wiki/Undecidable" rel="nofollow">undecidable</a>. Plus, ideally we would also save <code>global_variables</code> and any loaded classes and their overridden methods. This seems impractical.</p>
<p>Using this simple approach, you get the following:</p>
<pre><code>def save_for_later(local_vars, &block)
return nil unless block_given?
c = Class.new
c.class_eval do
define_method :serializable, &block
end
s = Ruby2Ruby.translate(c, :serializable)
locals = local_vars.map { |var,val| "#{var} = #{val.inspect}; " }.join
s.sub(/^def \S+\(([^\)]*)\)/, 'lambda { |\1| ' + locals).sub(/end$/, '}')
end
x = 40
s = save_for_later(local_variables.map{ |v| [v,eval(v)] }) { |y| x + y }
# => "lambda { |y| _ = 40; x = 40;\n (x + y)\n}"
# In a separate run of Ruby, where x is not defined...
g = eval("lambda { |y| _ = 40; x = 40;\n (x + y)\n}")
# => #<Proc:0xb7cfe9c0@(eval):1>
g.call(2)
# => 42
# Changing x does not affect it.
x = 7
g.call(3)
# => 43
</code></pre>
http://stackoverflow.com/questions/199603/how-do-you-stringize-serialize-ruby-code/1584009#15840090Answer by John Conti for How do you stringize/serialize Ruby code?John Conti2009-10-18T04:22:57Z2009-10-18T04:22:57Z<p>inspect often prints in a format that can be eval'd.</p>