| Class | Webgen::Source::TarArchive |
| In: |
lib/webgen/source/tararchive.rb
|
| Parent: | Object |
This class is used to read source paths from a (gzipped) tar archive. The archive can be remote (http(s) or ftp) or local.
For example, the following are all valid URIs:
http://example.com/directory/file.tgz /home/test/my.tar.gz ftp://ftp.example.com/archives/archive.tar
Return all paths in the tar archive available at uri.
# File lib/webgen/source/tararchive.rb, line 59
59: def paths
60: if !defined?(@paths)
61: stream = open(@uri)
62: stream = Zlib::GzipReader.new(stream) if @uri =~ /(\.tar\.gz|\.tgz)$/
63: Archive::Tar::Minitar::Input.open(stream) do |input|
64: @paths = input.collect do |entry|
65: path = entry.full_name
66: next unless File.fnmatch(@glob, path, File::FNM_DOTMATCH|File::FNM_CASEFOLD|File::FNM_PATHNAME)
67: path += '/' if entry.directory? && path[-1,1] != '/'
68: path = '/' + path unless path[0,1] == '/'
69: Path.new(path, entry.read, Time.at(entry.mtime), @uri)
70: end.compact.to_set
71: end
72: end
73: @paths
74: end