Module: OrigenMemoryImage

Defined in:
lib/origen_memory_image.rb,
lib/origen_memory_image/hex.rb,
lib/origen_memory_image/base.rb,
lib/origen_memory_image/binary.rb,
lib/origen_memory_image/s_record.rb

Defined Under Namespace

Classes: Base, Binary, Hex, SRecord

Class Method Summary collapse

Class Method Details

.find_type(file, options = {}) ⇒ Object

Returns the class of the image manager for the given file



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/origen_memory_image.rb', line 18

def self.find_type(file, options = {})
  # Read first 10 lines
  if options[:source] == String
    snippet = file.split("\n")
  else
    snippet = File.foreach(file.to_s).first(1)
  end
  case
  # Always do the binary first since the others won't be able to process
  # a binary snippet
  when options[:type] == :binary || (options[:source] != String && Binary.match?(file))
    Binary
  when options[:source] == String && Binary.match?(snippet, true)
    Binary
  when options[:type] == :srecord || SRecord.match?(snippet)
    SRecord
  when options[:type] == :hex || Hex.match?(snippet)
    Hex
  else
    fail "Unknown format for image file: #{file}"
  end
end

.new(file, options = {}) ⇒ Object



10
11
12
13
14
15
# File 'lib/origen_memory_image.rb', line 10

def self.new(file, options = {})
  unless options[:source] == String
    file = Origen.file_handler.clean_path_to(file)
  end
  find_type(file, options).new(file, options)
end