1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
\name{compact}
\alias{xvcopy}
\alias{xvcopy,SharedVector-method}
\alias{xvcopy,XVector-method}
\alias{xvcopy,SharedVector_Pool-method}
\alias{xvcopy,XRawList-method}
\alias{compact}
\alias{compact,ANY-method}
\alias{compact,XVector-method}
\alias{compact,XVectorList-method}
\title{Object compaction}
\description{
Compacting an object is modifying its internal representation in order
to reduce its size in memory.
}
\usage{
compact(x, check=TRUE, ...)
## Internal compact() support function. Not intended to be called
## directly:
xvcopy(x, start=NA, end=NA, width=NA, lkup=NULL, reverse=FALSE)
}
\arguments{
\item{x}{
For \code{compact}, the object to be compacted. \code{compact} accepts
any R object. However, on most of them, \code{compact} won't do anything
and will just return an object identical to \code{x}.
See the Details section below.
For \code{xvcopy}, a \link{SharedVector}, \link{XVector},
\link{SharedVector_Pool}, or \link{XRawList} vector.
}
\item{check}{
After compacting the individual slots of an S4 object, this argument
is passed to \code{`slot<-`} when replacing the original value of a
slot with the compacted value.
}
\item{...}{
Arguments to be passed to or from other methods.
}
\item{start, end, width, lkup, reverse}{
For internal use.
}
}
\details{
The internal reorganization of the object should be transparent to the
user i.e. \code{compact(x)} should "look" the same as \code{x}, or,
more precisely, \code{x} and \code{compact(x)} should be interchangeable
anywhere in the user's code. However, because they have different internal
representations, we generally don't expect \code{identical(x, compact(x))}
to be TRUE, even though most of the times they will, because there are
only very few types of objects that \code{compact} actually knows how to
reorganize internally.
\code{compact} is a generic function.
Here is how the default method works. By default \code{compact(x)} is
obtained by compacting all the "components" in \code{x}. Only 2 kinds
of objects are considered to have "components": lists (the components
are the list elements), and S4 objects (the components are the slots).
The other objects are not considered to have components, so, by default,
\code{compact} does nothing on them. In particular, it does nothing on
environments. Also the attributes of an object (other than the slots of
an S4 object) are not considered to be "components" and therefore are
not compacted.
Note that, in the absence of specialized \code{compact} methods that
actually know how to reorganize an object internally, the default method
would visit the tree of all the components, sub-components,
sub-sub-components etc of object \code{x} without actually modifying
anything in \code{x}. So of course, specialized \code{compact} methods
need to be defined for the objects that can *effectively* be compacted.
Otherwise the \code{compact} function would be equivalent to the
\code{identity} function!
At the moment, 2 specialized \code{compact} methods are defined (in
addition to the default method): one for \link{XVector} objects, and
one for \link{XVectorList} objects.
}
\value{
An object equivalent to \code{x} but eventually smaller in memory.
}
\author{H. Pagès}
\seealso{
\link{XVector-class},
\link{XVectorList-class},
\code{\link{subseq}},
\code{\link[utils]{object.size}},
\code{\link[base]{save}}
}
\examples{
## We illustrate the use of compact() on an XInteger vector (XInteger
## is one of the 3 concrete subclasses of the XVector virtual class):
x <- XInteger(500000, sample(500000))
## subseq() does NOT copy the data stored in an XVector object:
y <- subseq(x, start=41, end=60)
x@shared
y@shared # same address
object.size(x)
object.size(y) # same size
## compact() copies the data, but only the data actually "used" by 'y':
y0 <- compact(y)
y0@shared # new address
object.size(y0) # much smaller now!
## Compaction is particularly relevant when saving an object with
## external references like 'y':
yfile <- file.path(tempdir(), "y.rda")
save(y, file=yfile)
file.info(yfile)$size
y0file <- file.path(tempdir(), "y0.rda")
save(y0, file=y0file)
file.info(y0file)$size
}
\keyword{methods}
|