mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
83 lines
2 KiB
C
83 lines
2 KiB
C
|
/* -*- mode: C; c-basic-offset: 4 -*- */
|
||
|
#ident "Copyright (c) 2007, 2008 Tokutek Inc. All rights reserved."
|
||
|
|
||
|
/* Recover an env. The logs are in argv[1]. The new database is created in the cwd. */
|
||
|
|
||
|
// Test:
|
||
|
// cd ../src/tests/tmpdir
|
||
|
// ../../../newbrt/recover ../dir.test_log2.c.tdb
|
||
|
|
||
|
#include "cachetable.h"
|
||
|
#include "key.h"
|
||
|
#include "log-internal.h"
|
||
|
#include "log_header.h"
|
||
|
#include "toku_assert.h"
|
||
|
|
||
|
#include <fcntl.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <sys/file.h>
|
||
|
#include <sys/stat.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int main (int argc, char *argv[]) {
|
||
|
const char *dir;
|
||
|
int r;
|
||
|
int entrycount=0;
|
||
|
assert(argc==2);
|
||
|
dir = argv[1];
|
||
|
int n_logfiles;
|
||
|
char **logfiles;
|
||
|
|
||
|
int lockfd;
|
||
|
|
||
|
{
|
||
|
int namelen=strlen(dir);
|
||
|
char lockfname[namelen+20];
|
||
|
snprintf(lockfname, sizeof(lockfname), "%s/__recoverylock", dir);
|
||
|
lockfd = open(lockfname, O_RDWR|O_CREAT, S_IRUSR | S_IWUSR);
|
||
|
if (lockfd<0) {
|
||
|
printf("Couldn't open %s\n", lockfname);
|
||
|
exit(1);
|
||
|
}
|
||
|
r=flock(lockfd, LOCK_EX | LOCK_NB);
|
||
|
if (r!=0) {
|
||
|
printf("Couldn't run recovery because some other process holds the recovery lock %s\n", lockfname);
|
||
|
exit(1);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
r = toku_logger_find_logfiles(dir, &n_logfiles, &logfiles);
|
||
|
if (r!=0) exit(1);
|
||
|
int i;
|
||
|
toku_recover_init();
|
||
|
for (i=0; i<n_logfiles; i++) {
|
||
|
//fprintf(stderr, "Opening %s\n", logfiles[i]);
|
||
|
FILE *f = fopen(logfiles[i], "r");
|
||
|
struct log_entry le;
|
||
|
u_int32_t version;
|
||
|
r=toku_read_and_print_logmagic(f, &version);
|
||
|
assert(r==0 && version==0);
|
||
|
while ((r = toku_log_fread(f, &le))==0) {
|
||
|
//printf("%lld: Got cmd %c\n", le.u.commit.lsn.lsn, le.cmd);
|
||
|
logtype_dispatch_args(&le, toku_recover_);
|
||
|
entrycount++;
|
||
|
}
|
||
|
if (r!=EOF) {
|
||
|
if (r==DB_BADFORMAT) {
|
||
|
fprintf(stderr, "Bad log format at record %d\n", entrycount);
|
||
|
exit(1);
|
||
|
} else {
|
||
|
fprintf(stderr, "Huh? %s\n", strerror(r));
|
||
|
exit(1);
|
||
|
}
|
||
|
}
|
||
|
fclose(f);
|
||
|
}
|
||
|
toku_recover_cleanup();
|
||
|
for (i=0; i<n_logfiles; i++) {
|
||
|
toku_free(logfiles[i]);
|
||
|
}
|
||
|
toku_free(logfiles);
|
||
|
return 0;
|
||
|
}
|