Class: Blobby::InMemoryStore::StoredObject

Inherits:
Object
  • Object
show all
Defined in:
lib/blobby/in_memory_store.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(hash, key) ⇒ StoredObject

Returns a new instance of StoredObject.



24
25
26
27
# File 'lib/blobby/in_memory_store.rb', line 24

def initialize(hash, key)
  @hash = hash
  @key = key
end

Instance Attribute Details

#keyObject (readonly)

Returns the value of attribute key.



29
30
31
# File 'lib/blobby/in_memory_store.rb', line 29

def key
  @key
end

Instance Method Details

#deleteObject



56
57
58
# File 'lib/blobby/in_memory_store.rb', line 56

def delete
  !!@hash.delete(key)
end

#exists?Boolean

Returns:

  • (Boolean)


31
32
33
# File 'lib/blobby/in_memory_store.rb', line 31

def exists?
  @hash.key?(key)
end

#readObject



35
36
37
38
39
40
41
42
43
# File 'lib/blobby/in_memory_store.rb', line 35

def read
  content = @hash[key]
  if block_given?
    yield content
    nil
  else
    content
  end
end

#write(content) ⇒ Object



45
46
47
48
49
50
51
52
53
54
# File 'lib/blobby/in_memory_store.rb', line 45

def write(content)
  if content.respond_to?(:read)
    content = content.read
  else
    content = content.to_str.dup
  end
  content = content.force_encoding("BINARY") if content.respond_to?(:force_encoding)
  @hash[key] = content
  nil
end