Description Usage Arguments Details Value Author(s) See Also Examples
get.backup
retrieves backups of a function or character object. create.backups
creates backup files for all hitherto-unbacked-up functions in a search environment. For get.backup
to work, all backups must have been created using the fixr
system (or create.backups
). read.bkind
shows the names of objects with backups, and gives their associated filenames.
1 2 3 | get.backup( name, where=1, rev=TRUE, zap.name=TRUE, unlength=TRUE)
create.backups( pos=1)
read.bkind( where=1)
|
name |
function name (character) |
where, pos |
position in search path (character or numeric), or e.g. |
rev |
if TRUE, most recent backup comes first in the return value |
zap.name |
if TRUE, the tag |
unlength |
if TRUE, the first line of each backup is removed iff it consists only of a number equal to 1+length( object). This matches the (current) format of character object backups. |
fixr
and FF
are able to maintain text-file backups of source code, in a directory ".Backup.mvb" below the task directory. The directory will contain a file called "index", plus files BU1, BU2, etc. "index" shows the correspondence between function names and BUx files. Each BUx file contains multiple copies of the source code, with the oldest first. Even if a function is removed (or move
d) from the workspace, its BUx file and "index" entry are not deleted.
The number of backups kept is controlled by options(backup.fix)
, a numeric vector of length 2. The first element is how many backups to keep from the current R session. The second is how many previous R sessions to keep the final version of the source code from. Older versions get discarded. I use c(5,2)
. If you want to use the backup facility, you'll need to set this option in your .First
. If the option is not set, no backups happen. If set, then every call to Save
or Save.pos
will create backups for all previously-unbackupped functions, by automatically calling create.backups
. create.backups
can also be called manually, to create the backup directory, index, and backup files for all functions in the currently-top task.
get.backup
returns all available backup versions as character vectors, by default with the most recent first. To turn one of these character vectors into a function, a source
step is needed; see Examples.
read.bkind
shows which file to look for particular backups in. These files are text-format, so you can look at one in a text editor and manually extract the parts you want. You can also use read.bkind
to set up a restoration-of-everything, as shown in Examples. I deliberately haven't included a function for mass restoration in mvbutils
, because it's too dangerous and individual needs vary.
Currently there is no automatic way to determine the type of a backed-up object. All backups are stored as text, so text objects look very similar to functions. However, the first line of a text object is just a number equal to the length of the text object; the first line of a function object starts with "function(" or "structure( function(". The examples show one way to distinguish automatically.
The function fix.order
uses the access dates of backup files to list your functions sorted by date order.
move
will also move backup files and update INDEX files appropriately.
get.backup |
Either NULL with a warning, if no backups are found, or a list containing the backups, each as a character vector. |
create.backups |
NULL |
read.bkind |
a list with components |
Mark Bravington
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 | ## Not run:
## Need some backups first
# Restore a function:
g1 <- get.backup( "myfun", "package:myfun")[[1]] # returns most recent backup only
# To turn this into an actual function (with source attribute as per your formatting):
myfun <- source.mvb( textConnection( g1)) # would be nice to have an self-closing t.c.
cat( get.backup( "myfun", "package:myfun", zap=FALSE)[[1]][1])
# shows "myfun" <- function...
# Restore a character vector:
mycharvec <- as.cat( get.backup( 'mycharvec', ..mypackage)[[1]]) # ready to roll
# Restore most recent backup of everything... brave!
# Will include functions & charvecs that have subsequently been deleted
bks <- read.bkind() # in current task
for( i in bks$object.names) {
cat( "Restoring ", i, "...")
gb <- get.backup( i, unlength=FALSE)[[1]] # unlength F so we can check type
# Is it a charvec?
if( grepl( '^ *[0-9]+ *$', gb[1])) # could check length too
gb <- as.cat( gb[-1]) # remove line showing length and...
# ...set class to "cat" for nice printing, as per 'as.cat'
else {
# Nope, so it's a function and needs to be sourced
tc <- textConnection( gb)
gbfun <- try( source.mvb( gb)) # will set source attribute, documentation etc.
close( tc)
if( gbfun %is.a% "try-error") {
gbfun <- stop( function( ...) stop( ii %&% " failed to parse"), list( ii=i))
attr( gbfun, 'source') <- gb # still assign source attribute
}
gb <- gbfun
}
assign( i, gb)
cat( '\n')
}
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.