Sha256: a7bc5bf9df2c0d4a6750daf92e4021b9731e29b8288d8f02d759627b88141eb6

Contents?: true

Size: 1.26 KB

Versions: 3

Compression:

Stored size: 1.26 KB

Contents

module Rambling
  module Trie
    module Serializers
      # Serializer for Ruby yaml format (.yaml) files.
      class Yaml
        # Creates a new Yaml serializer.
        # @param [Serializer] serializer the serializer responsible to write to
        #   and read from disk.
        def initialize serializer = nil
          @serializer = serializer || Rambling::Trie::Serializers::File.new
        end

        # Loads serialized object from YAML file in filepath and deserializes
        # it into a {Node Node}.
        # @param [String] filepath the full path of the file to load the
        #   serialized YAML object from.
        # @return [Node] The deserialized {Node Node}.
        def load filepath
          require 'yaml'
          ::YAML.load serializer.load filepath
        end

        # Serializes a {Node Node} and dumps it as a YAML object into filepath.
        # @param [Node] node the node to serialize
        # @param [String] filepath the full path of the file to dump the YAML
        #   object into.
        # @return [Numeric] number of bytes written to disk.
        def dump node, filepath
          require 'yaml'
          serializer.dump ::YAML.dump(node), filepath
        end

        private

        attr_reader :serializer
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rambling-trie-1.0.2 lib/rambling/trie/serializers/yaml.rb
rambling-trie-1.0.1 lib/rambling/trie/serializers/yaml.rb
rambling-trie-1.0.0 lib/rambling/trie/serializers/yaml.rb