Class: YAML::Store
- Inherits:
-
PStore
- Object
- PStore
- YAML::Store
- Defined in:
- lib/yaml/store.rb
Overview
YAML::Store provides the same functionality as PStore, except it uses YAML to dump objects instead of Marshal.
Example
require 'yaml/store'
Person = Struct.new :first_name, :last_name
people = [Person.new("Bob", "Smith"), Person.new("Mary", "Johnson")]
store = YAML::Store.new "test.store"
store.transaction do
store["people"] = people
store["greeting"] = { "hello" => "world" }
end
After running the above code, the contents of “test.store” will be:
---
people:
- !ruby/struct:Person
first_name: Bob
last_name: Smith
- !ruby/struct:Person
first_name: Mary
last_name: Johnson
greeting:
hello: world
Instance Method Summary collapse
-
#dump(table) ⇒ Object
:stopdoc:.
- #empty_marshal_checksum ⇒ Object
- #empty_marshal_data ⇒ Object
-
#initialize(*o) ⇒ Store
constructor
:call-seq: initialize( file_name, yaml_opts = {} ) initialize( file_name, thread_safe = false, yaml_opts = {} ).
- #load(content) ⇒ Object
- #marshal_dump_supports_canonical_option? ⇒ Boolean
Constructor Details
#initialize(*o) ⇒ Store
:call-seq:
initialize( file_name, yaml_opts = {} )
initialize( file_name, thread_safe = false, yaml_opts = {} )
Creates a new YAML::Store object, which will store data in file_name
. If the file does not already exist, it will be created.
YAML::Store objects are always reentrant. But if thread_safe is set to true, then it will become thread-safe at the cost of a minor performance hit.
Options passed in through yaml_opts
will be used when converting the store to YAML via Hash#to_yaml().
57 58 59 60 61 62 63 |
# File 'lib/yaml/store.rb', line 57 def initialize( *o ) @opt = {} if o.last.is_a? Hash @opt.update(o.pop) end super(*o) end |
Instance Method Details
#dump(table) ⇒ Object
:stopdoc:
67 68 69 |
# File 'lib/yaml/store.rb', line 67 def dump(table) table.to_yaml(@opt) end |
#empty_marshal_checksum ⇒ Object
95 96 97 |
# File 'lib/yaml/store.rb', line 95 def empty_marshal_checksum CHECKSUM_ALGO.digest(empty_marshal_data) end |
#empty_marshal_data ⇒ Object
92 93 94 |
# File 'lib/yaml/store.rb', line 92 def empty_marshal_data {}.to_yaml(@opt) end |
#load(content) ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/yaml/store.rb', line 71 def load(content) table = if YAML.respond_to?(:safe_load) if Psych::VERSION >= "3.1" YAML.safe_load(content, permitted_classes: [Symbol]) else YAML.safe_load(content, [Symbol]) end else YAML.load(content) end if table == false || table == nil {} else table end end |
#marshal_dump_supports_canonical_option? ⇒ Boolean
88 89 90 |
# File 'lib/yaml/store.rb', line 88 def marshal_dump_supports_canonical_option? false end |