Sha256: 5b0314553487e591a4cd76f44109b50337d505241116b68ec21073f418fa7692

Contents?: true

Size: 1.61 KB

Versions: 5

Compression:

Stored size: 1.61 KB

Contents

module RailsConnector

  # A binary containing the blob data of a Content or CMS management
  # data of Attribute (fields), ObjClass (object classes), for example.
  class Blob < CmsBaseModel #:nodoc:
    self.primary_key = "blob_name"

    class << self
      # Does not retrieve the column blob_data.
      def find_with_excluded_blob_data(*args)
        args << Hash.new unless Hash === args.last
        args.last[:select] = 'blob_name, blob_length'
        find_without_excluded_blob_data(*args)
      end

      alias_method_chain :find, :excluded_blob_data
    end

    def length
      blob_length
    end

    def data
      @data ||= self.class.find_without_excluded_blob_data(id).blob_data
    end

    def path_of_stored_data(use_cached_file_if_older_than = Time.now)
      store_data if !File.exists?(path) || use_cached_file_if_older_than > File.mtime(path)
      path
    end

    def self.cache_dir
      Configuration.blob_cache_dir || File.join(Rails.root, %w(tmp cache))
    end

    def self.initialize_blob_streaming_for(adapter_name)
      # Redefines store_data:
      case adapter_name
      when /mysql/i:
        require "rails_connector/blob_mysql"
        include BlobMysql
      when /oracle/i:
        require "rails_connector/blob_oracle"
        include BlobOracle
      end
    end

    private

    def path
      "#{Blob.cache_dir}/#{id}"
    end

    def store_data
      store_data_atomically do |f|
        f << data
      end
    end

    def store_data_atomically(&block)
      tmp_file = "#{path}.#{Process.pid}"
      File.open(tmp_file, "w", &block)
      File.rename(tmp_file, path)
    end
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
infopark_fiona_connector-6.8.0.210.ed204b0 lib/rails_connector/blob.rb
infopark_fiona_connector-6.8.0.110.6570b45 lib/rails_connector/blob.rb
infopark_fiona_connector-6.8.0.72.d18d096 lib/rails_connector/blob.rb
infopark_fiona_connector-6.8.0.23.da7f96b lib/rails_connector/blob.rb
infopark_fiona_connector-6.8.0.16.def5e85 lib/rails_connector/blob.rb