DESCRIPTION:

ruby_sol - based on RocketAMF reader/write of Flash Player’s .sol files.

INSTALLATION

gem install ruby_sol

EXAMPLE

require 'pp'
require "stringio"
require 'ruby_sol'

#
# reading sol file
#
# read_sol adds 2 field automatically
# __ruby_sol__amf_version - version of amf inside sol
# __ruby_sol__sol_name - name of the sol stored inside file
#
filename = 'test.sol';
content = RubySol::read_sol(File.new(filename).read)
pp content

#
# writing sol file
#
# data to store should be hash (as sol is key-value storage)
# hash keys - should be string, values - any object (that can be encoded via AMF)
# hash keys with __ruby_sol__ prefix don't stored, but used
# to send some sol-encoding parameters.
data = { "__ruby_sol__amf_version" => 3,        # tells RubySol which amf version should be used
         "__ruby_sol__sol_name"    => "test",   # tells RubySol the name of sol should be written inside
         "sample_data1"=>  {
            'a'=>'b',
            'c' => [1,2,3,4],
            "float"=>135799632.71333,
            "datetime"=>DateTime.new(2013,4,26,8,0,0,'+2'),
            "int" => 1,
        },
        'sample_data2' => ['a', 'b', 'c']
}
f = File.new('test.sol' , 'w')
f.write(RubySol::create_sol(data))
f.close()

EXAMPLE2 - dump all FlashPlayer’s files content

require 'pp'
require "stringio"
require 'ruby_sol'

files = Dir.glob(ENV['HOME']+"/.macromedia/Flash_Player/**/*.sol")
files.each {|filename|
     puts filename
     pp RubySol::read_sol(File.new(filename).read)
}

SEE ALSO:

LICENSE:

RocketAMF’s licence

(The MIT License)

Copyright © 2011 Stephen Augenstein and Jacob Henry

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.