#include "config.h"
#include <sys/types.h>
#include <sys/queue.h>
#include <bitstring.h>
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <string.h>
#include "../common/common.h"
int
ex_preserve(SCR *sp, EXCMD *cmdp)
{
recno_t lno;
NEEDFILE(sp, cmdp);
if (!F_ISSET(sp->ep, F_RCV_ON)) {
msgq(sp, M_ERR, "Preservation of this file not possible");
return (1);
}
if (F_ISSET(sp->ep, F_FIRSTMODIFY) && rcv_init(sp))
return (1);
if (db_last(sp, &lno))
return (1);
if (rcv_sync(sp, RCV_SNAPSHOT))
return (1);
msgq(sp, M_INFO, "File preserved");
return (0);
}
int
ex_recover(SCR *sp, EXCMD *cmdp)
{
ARGS *ap;
FREF *frp;
ap = cmdp->argv[0];
set_alt_name(sp, ap->bp);
if (file_m2(sp, FL_ISSET(cmdp->iflags, E_C_FORCE)))
return (1);
if ((frp = file_add(sp, ap->bp)) == NULL)
return (1);
F_SET(frp, FR_RECOVER);
if (file_init(sp, frp, NULL, FS_SETALT |
(FL_ISSET(cmdp->iflags, E_C_FORCE) ? FS_FORCE : 0)))
return (1);
F_SET(sp, SC_FSWITCH);
return (0);
}