Sha256: 7e1b96b740afbc4e66bfdb1ae26c74f6f17acbe33aa955f500c83c0204fa75cc

Contents?: true

Size: 1.28 KB

Versions: 23

Compression:

Stored size: 1.28 KB

Contents

#
# converted from the gitrb project
#
# authors: 
#    Matthias Lederhofer <matled@gmx.net>
#    Simon 'corecode' Schubert <corecode@fs.ei.tum.de>
#    Scott Chacon <schacon@gmail.com>
#
# provides native ruby access to git objects and pack files
#

module Grit 
  module GitRuby 
    module Internal
      class FileWindow
        def initialize(file, version = 1)
          @file = file
          @offset = nil
          if version == 2
            @global_offset = 8
          else
            @global_offset = 0
          end
        end

        def unmap
          @file = nil
        end

        def [](*idx)
          idx = idx[0] if idx.length == 1
          case idx
          when Range
            offset = idx.first
            len = idx.last - idx.first + idx.exclude_end? ? 0 : 1
          when Fixnum
            offset = idx
            len = nil
          when Array
            offset, len = idx
          else
            raise RuntimeError, "invalid index param: #{idx.class}"
          end
          if @offset != offset
            @file.seek(offset + @global_offset)
          end
          @offset = offset + len ? len : 1
          if not len
            @file.read(1).getord(0)
          else
            @file.read(len)
          end
        end
      end
    end
  end 
end

Version data entries

23 entries across 23 versions & 11 rubygems

Version Path
ginst-2.0.0 vendor/gems/grit-1.1.1/lib/grit/git-ruby/internal/file_window.rb
grit-1.1.0 lib/grit/git-ruby/internal/file_window.rb
grit-1.1.1 lib/grit/git-ruby/internal/file_window.rb