2003-05-09 17:25:50 -04:00
|
|
|
#
|
|
|
|
# YAML::Store
|
|
|
|
#
|
|
|
|
require 'yaml'
|
|
|
|
require 'pstore'
|
|
|
|
|
2004-05-27 03:43:38 -04:00
|
|
|
class YAML::Store < PStore
|
|
|
|
def initialize( *o )
|
|
|
|
@opt = YAML::DEFAULTS.dup
|
|
|
|
if String === o.first
|
|
|
|
super(o.shift)
|
|
|
|
end
|
|
|
|
if o.last.is_a? Hash
|
|
|
|
@opt.update(o.pop)
|
|
|
|
end
|
|
|
|
end
|
2003-05-09 17:25:50 -04:00
|
|
|
|
2004-05-27 03:43:38 -04:00
|
|
|
def dump(table)
|
|
|
|
@table.to_yaml(@opt)
|
|
|
|
end
|
2003-05-09 17:25:50 -04:00
|
|
|
|
2004-05-27 03:43:38 -04:00
|
|
|
def load(content)
|
2008-04-11 03:43:31 -04:00
|
|
|
table = YAML::load(content)
|
|
|
|
if table == false
|
|
|
|
{}
|
|
|
|
else
|
|
|
|
table
|
|
|
|
end
|
2004-05-27 03:43:38 -04:00
|
|
|
end
|
2003-05-09 17:25:50 -04:00
|
|
|
|
2008-04-10 10:10:19 -04:00
|
|
|
def marshal_dump_supports_canonical_option?
|
|
|
|
false
|
2004-05-27 03:43:38 -04:00
|
|
|
end
|
2008-04-11 03:43:31 -04:00
|
|
|
|
|
|
|
EMPTY_MARSHAL_DATA = {}.to_yaml
|
|
|
|
EMPTY_MARSHAL_CHECKSUM = Digest::MD5.digest(EMPTY_MARSHAL_DATA)
|
|
|
|
def empty_marshal_data
|
|
|
|
EMPTY_MARSHAL_DATA
|
|
|
|
end
|
|
|
|
def empty_marshal_checksum
|
|
|
|
EMPTY_MARSHAL_CHECKSUM
|
|
|
|
end
|
2003-05-09 17:25:50 -04:00
|
|
|
end
|