How do you access the symbol table in Ruby? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T22:33:06Zhttp://stackoverflow.com/feeds/question/503583http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/503583/how-do-you-access-the-symbol-table-in-ruby3How do you access the symbol table in Ruby?Jonathan Tran2009-02-02T15:26:22Z2009-02-02T18:21:14Z
<p>Is there a way to access everything in the symbol table in Ruby? I want to be able to serialize or otherwise save the current state of a run of a program. To do this, it seems I need to be able to iterate over all the variables in scope.</p>
http://stackoverflow.com/questions/503583/how-do-you-access-the-symbol-table-in-ruby/504028#5040280Answer by Allyn for How do you access the symbol table in Ruby?Allyn2009-02-02T17:20:49Z2009-02-02T17:20:49Z<p>I don't believe there is, but you could always use <a href="http://www.ruby-doc.org/core-1.8.7/classes/Marshal.html" rel="nofollow">marshall</a> dump/load. </p>
http://stackoverflow.com/questions/503583/how-do-you-access-the-symbol-table-in-ruby/504051#5040511Answer by andHapp for How do you access the symbol table in Ruby?andHapp2009-02-02T17:26:22Z2009-02-02T17:26:22Z<p>If I have understood your question properly - that you would like to see all the symbols in your program then the following should do the trick:</p>
<p>puts Symbol.all_symbols.inspect</p>
<p>The “all_symbols” class method will return an Array of every Symbol currently in the program.</p>
http://stackoverflow.com/questions/503583/how-do-you-access-the-symbol-table-in-ruby/504077#5040774Answer by Geo for How do you access the symbol table in Ruby?Geo2009-02-02T17:32:29Z2009-02-02T17:38:27Z<p>I think he comes from a perl background , and that he would like to obtain all the variables defined in a script and serialize them . This way , when he'll load the file , he'll get them back .
I'm still searching about how to get a list of the variables , but serialization will be made using Marshal.dump and reading them back will be made with Marshal.load . I'll edit the post once I find out how to get a list of all defined variables .</p>
<p>EDIT : found it!</p>
<p>You can get a list of all variables by calling these methods :</p>
<pre>
<code>local_variables</code>
<code>global_variables</code>
</pre>
<p>And if you haven't already got your serialization code , I would suggest something like this:</p>
<ul>
<li>create a class or a Struct instance that holds a variable name and the value of the variable and add them in an array :</li>
</ul>
<pre>
<code>
local_variables.each {|var| my_array << MyVarObject.new(var,eval(var)) } # eval is used to get the value of the variable
</code>
</pre>
<p>and then serialize the array :</p>
<pre><code>
data = Marshal.dump(my_array)
File.open("myfile.ser","w") do |file|
file.puts data
end</code></pre>