Sha256: 726925f4891928271fc5037293666df4dcfd29446bdfd80d63aec250e5b48357

Contents?: true

Size: 1.13 KB

Versions: 3

Compression:

Stored size: 1.13 KB

Contents

module EightyLegs
  class EightyFormat
    def initialize(filename_or_io)
      if filename_or_io.is_a?(String)
        initialize_with_filename(filename_or_io)
      elsif filename_or_io.is_a?(IO)
        initialize_with_io(filename_or_io)
      else
        raise TypeError.new(filename_or_io.class)
      end
      check_for_classid_and_version()
    end

    def initialize_with_filename(filename)
      initialize_with_io(File.open(filename))
    end

    def initialize_with_io(io)
      @io = Zlib::GzipReader.new(io)
    rescue Zlib::GzipFile::Error
      @io = io
      @io.rewind
    end

    def each(&blk)
      while not @io.eof?
        url_size = @io.read(4).unpack("i").first
        url = @io.read(url_size)
        data_size = @io.read(4).unpack("i").first
        data = @io.read(data_size)
        blk.call(Entry.new(url, data))
      end
      @io.rewind
      @io.read(8)
    end

    private
    def check_for_classid_and_version
      @io.rewind
      classid, version = @io.read(8).unpack("ii")
      raise FileFormatError unless [classid, version] == [218217067, 1]
    end

    class FileFormatError < EightyError; end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
80legs-0.2.2 lib/eighty_legs/eighty_format.rb
80legs-0.2.1 lib/eighty_legs/eighty_format.rb
80legs-0.2.0 lib/eighty_legs/eighty_format.rb