Class: Gem::Package::TarReader::Entry
Relationships & Source Files | |
Inherits: | Object |
Defined in: | lib/rubygems/package/tar_reader/entry.rb |
Overview
Class for reading entries out of a tar file
Class Method Summary
-
.new(header, io) ⇒ Entry
constructor
Creates a new tar entry for #header that will be read from
io
-
.open(header, io, &block)
Creates a new tar entry for #header that will be read from
io
If a block is given, the entry is yielded and then closed.
Instance Attribute Summary
-
#closed? ⇒ Boolean
readonly
Is the tar entry closed?
-
#directory? ⇒ Boolean
readonly
Is this tar entry a directory?
-
#eof? ⇒ Boolean
readonly
Are we at the end of the tar entry?
-
#file? ⇒ Boolean
readonly
Is this tar entry a file?
-
#header
readonly
Header for this tar entry.
-
#pos
rw
The position in the tar entry.
-
#pos=(new_pos)
rw
Seek to the position in the tar entry.
-
#symlink? ⇒ Boolean
readonly
Is this tar entry a symlink?
Instance Method Summary
-
#bytes_read
Number of bytes read out of the tar entry.
-
#close
Closes the tar entry.
-
#full_name
Full name of the tar entry.
-
#getc
Read one byte from the tar entry.
-
#length
Alias for #size.
-
#read(maxlen = nil)
Reads
maxlen
bytes from the tar file entry, or the rest of the entry if nil. - #readpartial(maxlen, outbuf = "".b)
-
#rewind
Rewinds to the beginning of the tar file entry.
-
#seek(offset, whence = IO::SEEK_SET)
Seeks to
offset
bytes into the tar file entrywhence
can beIO::SEEK_SET
,IO::SEEK_CUR
, orIO::SEEK_END
- #size (also: #length)
- #check_closed Internal use only
Constructor Details
.new(header, io) ⇒ Entry
Creates a new tar entry for #header that will be read from io
# File 'lib/rubygems/package/tar_reader/entry.rb', line 36
def initialize(header, io) @closed = false @header = header @io = io @orig_pos = @io.pos @end_pos = @orig_pos + @header.size @read = 0 end
Class Method Details
.open(header, io, &block)
Creates a new tar entry for #header that will be read from io
If a block is given, the entry is yielded and then closed.
Instance Attribute Details
#closed? ⇒ Boolean
(readonly)
Is the tar entry closed?
# File 'lib/rubygems/package/tar_reader/entry.rb', line 73
def closed? @closed end
#directory? ⇒ Boolean
(readonly)
Is this tar entry a directory?
# File 'lib/rubygems/package/tar_reader/entry.rb', line 112
def directory? @header.typeflag == "5" end
#eof? ⇒ Boolean
(readonly)
Are we at the end of the tar entry?
# File 'lib/rubygems/package/tar_reader/entry.rb', line 80
def eof? check_closed @read >= @header.size end
#file? ⇒ Boolean
(readonly)
Is this tar entry a file?
# File 'lib/rubygems/package/tar_reader/entry.rb', line 119
def file? @header.typeflag == "0" end
#header (readonly)
Header for this tar entry
# File 'lib/rubygems/package/tar_reader/entry.rb', line 31
attr_reader :header
#pos (rw)
The position in the tar entry
# File 'lib/rubygems/package/tar_reader/entry.rb', line 133
def pos check_closed bytes_read end
#pos=(new_pos) (rw)
Seek to the position in the tar entry
# File 'lib/rubygems/package/tar_reader/entry.rb', line 142
def pos=(new_pos) seek(new_pos, IO::SEEK_SET) end
#symlink? ⇒ Boolean
(readonly)
Is this tar entry a symlink?
# File 'lib/rubygems/package/tar_reader/entry.rb', line 126
def symlink? @header.typeflag == "2" end
Instance Method Details
#bytes_read
Number of bytes read out of the tar entry
# File 'lib/rubygems/package/tar_reader/entry.rb', line 52
def bytes_read @read end
#check_closed
# File 'lib/rubygems/package/tar_reader/entry.rb', line 45
def check_closed # :nodoc: raise IOError, "closed #{self.class}" if closed? end
#close
Closes the tar entry
#full_name
Full name of the tar entry
# File 'lib/rubygems/package/tar_reader/entry.rb', line 89
def full_name @header.full_name.force_encoding(Encoding::UTF_8) rescue ArgumentError => e raise unless e. == "string contains null byte" raise Gem::Package::TarInvalidError, "tar is corrupt, name contains null byte" end
#getc
Read one byte from the tar entry
# File 'lib/rubygems/package/tar_reader/entry.rb', line 100
def getc return nil if eof? ret = @io.getc @read += 1 if ret ret end
#length
Alias for #size.
# File 'lib/rubygems/package/tar_reader/entry.rb', line 150
alias_method :length, :size
#read(maxlen = nil)
Reads maxlen
bytes from the tar file entry, or the rest of the entry if nil
# File 'lib/rubygems/package/tar_reader/entry.rb', line 155
def read(maxlen = nil) if eof? return maxlen.to_i.zero? ? "" : nil end max_read = [maxlen, @header.size - @read].compact.min ret = @io.read max_read if ret.nil? return maxlen ? nil : "" # IO.read returns nil on EOF with len argument end @read += ret.size ret end
#readpartial(maxlen, outbuf = "".b)
[ GitHub ]#rewind
Rewinds to the beginning of the tar file entry
# File 'lib/rubygems/package/tar_reader/entry.rb', line 240
def rewind check_closed seek(0, IO::SEEK_SET) end
#seek(offset, whence = IO::SEEK_SET)
Seeks to offset
bytes into the tar file entry whence
can be IO::SEEK_SET
, IO::SEEK_CUR
, or IO::SEEK_END
# File 'lib/rubygems/package/tar_reader/entry.rb', line 188
def seek(offset, whence = IO::SEEK_SET) check_closed new_pos = case whence when IO::SEEK_SET then @orig_pos + offset when IO::SEEK_CUR then @io.pos + offset when IO::SEEK_END then @end_pos + offset else raise ArgumentError, "invalid whence" end if new_pos < @orig_pos new_pos = @orig_pos elsif new_pos > @end_pos new_pos = @end_pos end pending = new_pos - @io.pos return 0 if pending == 0 if @io.respond_to?(:seek) begin # avoid reading if the @io supports seeking @io.seek new_pos, IO::SEEK_SET pending = 0 rescue Errno::EINVAL end end # if seeking isn't supported or failed # negative seek requires that we rewind and read if pending < 0 @io.rewind pending = new_pos end while pending > 0 do size_read = @io.read([pending, 4096].min)&.size raise(EOFError, "end of file reached") if size_read.nil? pending -= size_read end @read = @io.pos - @orig_pos 0 end
#size Also known as: #length
[ GitHub ]# File 'lib/rubygems/package/tar_reader/entry.rb', line 146
def size @header.size end