Sha256: a66a7e473973141acf51a12c9cad324ebb1f494f3462a64c0983d7422fe00aa1

Contents?: true

Size: 1.54 KB

Versions: 1

Compression:

Stored size: 1.54 KB

Contents

module Tori
  class File
    def initialize(model, title: nil, from: nil, to: nil, &block)
      @model = model
      @title = title.kind_of?(String) ? title.to_sym : title

      @from_path = if from.respond_to?(:path)
        from.path
      else
        nil
      end

      @backend = to

      @from = if from.respond_to?(:read) and from.respond_to?(:rewind)
        from.rewind
        from.read
      else
        from
      end
      @filename_callback = block
    end

    def name
      context = Context.new(@title)
      context.define_singleton_method(:__filename_callback__, filename_callback)
      context.__filename_callback__(@model)
    end
    alias to_s name

    attr_reader :from
    def from?
      !@from.nil?
    end

    def read
      backend.read name
    end

    def write(opts = nil)
      opts ||= {}
      backend.write name, @from, opts.merge(from_path: @from_path)
    end

    def delete
      backend.delete name if exist?
    end

    def filename_callback
      @filename_callback || Tori.config.filename_callback
    end

    def backend
      @backend || Tori.config.backend
    end

    def backend=(new_backend)
      @backend = new_backend
    end

    private

    def respond_to_missing?(sym, include_private)
      backend.respond_to?(sym, include_private)
    end

    def method_missing(sym, *args, &block)
      if respond_to_missing?(sym, false)
        backend.__send__ sym, name, *args, &block
      else
        fail NameError, "undefined method `#{sym}' for #{Tori.config.backend.inspect}"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tori-0.6.3 lib/tori/file.rb