Class: Riiif::AbstractFileSystemResolver

Inherits:
Object
  • Object
show all
Defined in:
lib/riiif/abstract_file_system_resolver.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeAbstractFileSystemResolver

Returns a new instance of AbstractFileSystemResolver.



5
6
7
8
# File 'lib/riiif/abstract_file_system_resolver.rb', line 5

def initialize
  @root = ::File.expand_path(::File.join(::File.dirname(__FILE__), '../..'))
  @base_path = ::File.join(root, 'spec/samples')
end

Instance Attribute Details

#base_pathObject

Returns the value of attribute base_path.



3
4
5
# File 'lib/riiif/abstract_file_system_resolver.rb', line 3

def base_path
  @base_path
end

#rootObject

Returns the value of attribute root.



3
4
5
# File 'lib/riiif/abstract_file_system_resolver.rb', line 3

def root
  @root
end

Instance Method Details

#find(id) ⇒ Object



10
11
12
# File 'lib/riiif/abstract_file_system_resolver.rb', line 10

def find(id)
  Riiif::File.new(path(id))
end

#path(id) ⇒ Object

Returns the path of the file.

Parameters:

  • id (String)

    the id to resolve

Returns:

  • the path of the file



16
17
18
19
# File 'lib/riiif/abstract_file_system_resolver.rb', line 16

def path(id)
  search = pattern(id)
  Dir.glob(search).first || raise(ImageNotFoundError, search)
end

#pattern(_id) ⇒ Object

Raises:

  • (NotImplementedError)


21
22
23
# File 'lib/riiif/abstract_file_system_resolver.rb', line 21

def pattern(_id)
  raise NotImplementedError, "Implement `pattern(id)' in the concrete class"
end