Rev 44755 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/gzcon.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2007 R Core Development Team% Distributed under GPL 2 or later\name{gzcon}\alias{gzcon}\title{(De)compress I/O Through Connections}\description{\code{gzcon} provides a modified connection that wraps an existingconnection, and decompresses reads or compresses writes through thatconnection. Standard \code{gzip} headers are assumed.}\usage{gzcon(con, level = 6, allowNonCompressed = TRUE)}\arguments{\item{con}{a connection.}\item{level}{integer between 0 and 9, the compression level when writing.}\item{allowNonCompressed}{logical. When reading, shouldnon-compressed input be allowed?}}\details{If \code{con} is open then the modified connection is opened. Closingthe wrapper connection will also close the underlying connection.Reading from a connection which does not supply a \code{gzip} magicheader is equivalent to reading from the original connection if\code{allowNonCompressed} is true, otherwise an error.The original connection becomes unusable: any object pointing to it willnow refer to the modified connection.When the connection is opened for reading, the input is expected tostart with the \code{gzip} magic header. If it does not and if\code{allowNonCompressed = TRUE} (the default) the input is read as-is.}\value{An object inheriting from class \code{"connection"}. This is the sameconnection \emph{number} as supplied, but with a modified internalstructure. It has binary mode.}\seealso{\code{\link{gzfile}}}\examples{\donttest{## Uncompress a data file from a URLz <- gzcon(url("http://www.stats.ox.ac.uk/pub/datasets/csb/ch12.dat.gz"))# read.table can only read from a text-mode connection.raw <- textConnection(readLines(z))close(z)dat <- read.table(raw)close(raw)dat[1:4, ]}## gzfile and gzcon can inter-work.## Of course here one would used gzfile, but file() can be replaced by## any other connection generator.zz <- gzfile("ex.gz", "w")cat("TITLE extra line", "2 3 5 7", "", "11 13 17", file = zz, sep = "\n")close(zz)readLines(zz <- gzcon(file("ex.gz", "rb")))close(zz)unlink("ex.gz")% Cygwin seems to require a different namezz <- gzcon(file("ex2.gz", "wb"))cat("TITLE extra line", "2 3 5 7", "", "11 13 17", file = zz, sep = "\n")close(zz)readLines(zz <- gzfile("ex2.gz"))close(zz)unlink("ex2.gz")}\keyword{file}\keyword{connection}