Sha256: c864bf579a43cbdbb437867df08cde58bbb7a7c042bfac41d5679181b0fb54f9

Contents?: true

Size: 1.33 KB

Versions: 3

Compression:

Stored size: 1.33 KB

Contents

require 'rbbt/association/database'

module Association
  def self.version_file(file, namespace)
    old_file, file = file, file.sub('NAMESPACE', namespace) if namespace and String === file
    old_file.annotate file if Path === old_file
    file
  end
  
  def self.open(file, options = nil, persist_options = nil)
    options = options.nil? ? {} : options.dup
    persist_options = persist_options.nil? ?  Misc.pull_keys(options, :persist)  : persist_options.dup 

    options = Misc.add_defaults options, :zipped => true
    persist_options = Misc.add_defaults persist_options, :persist => true, :dir => Rbbt.var.associations
    persist = persist_options[:persist]

    file = version_file(file, options[:namespace]) if options[:namespace] and String === file
    file = file.call if Proc === file

    data = Persist.persist_tsv(file, "Association Database", options, persist_options) do |data|
      tsv = Association.database(file, options.merge(:persist => persist))
      tsv = tsv.to_double unless tsv.type == :double

      tsv.annotate data

      data.serializer = :double if data.respond_to? :serializer
      tsv.with_monitor(options[:monitor]) do
        tsv.through do |k,v|
          data[k] = v
        end
      end

      data
    end
    data.entity_options = options[:entity_options] if options[:entity_options]
    data
  end
  
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rbbt-util-5.14.38 lib/rbbt/association/open.rb
rbbt-util-5.14.37 lib/rbbt/association/open.rb
rbbt-util-5.14.36 lib/rbbt/association/open.rb