⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 logcompactor_main.cc

📁 nandflash文件系统源代码
💻 CC
字号:
//---------------------------------------------------------- -*- Mode: C++ -*-// $Id: logcompactor_main.cc $//// Created 2008/06/18//// Author: Sriram Rao//// Copyright 2008 Quantcast Corp.//// This file is part of Kosmos File System (KFS).//// Licensed under the Apache License, Version 2.0// (the "License"); you may not use this file except in compliance with// the License. You may obtain a copy of the License at//// http://www.apache.org/licenses/LICENSE-2.0//// Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or// implied. See the License for the specific language governing// permissions and limitations under the License.//// \brief The metaserver writes out operational log records to a log// file.  Every N minutes, the log file is rolled over (and a new one// is used to write out data).  For fast recovery, it'd be desirable// to compact the log files and produce a checkpoint file.  This tool// provides such a capability: it takes a checkpoint file, applies the// set of operations as defined in a sequence of one or more log files// and produces a new checkpoint file.  When the metaserver rolls over the log// files, it creates a symlink to point the "LAST" closed log file; when log// compaction is done, we only compact upto the last closed log file.// //----------------------------------------------------------------------------#include "kfstree.h"#include "logger.h"#include "checkpoint.h"#include "restore.h"#include "replay.h"#include "util.h"#include "common/log.h"#include <sys/stat.h>#include <iostream>#include <cassert>using std::cout;using std::endl;using namespace KFS;static int restoreCheckpoint();static int replayLogs();int main(int argc, char **argv){    // use options: -l for logdir -c for checkpoint dir    char optchar;    bool help = false;    string logdir, cpdir;    int status;    KFS::MsgLogger::Init(NULL);    KFS::MsgLogger::SetLevel(log4cpp::Priority::INFO);    while ((optchar = getopt(argc, argv, "hl:c:")) != -1) {        switch (optchar) {            case 'l':                 logdir = optarg;                break;            case 'c':                cpdir = optarg;                break;            case 'h':                help = true;                break;            default:                KFS_LOG_VA_ERROR("Unrecognized flag %c", optchar);                help = true;                break;        }    }    if (help) {        cout << "Usage: " << argv[0] << " [-l <logdir>] [-c <cpdir>]"             << endl;        exit(-1);    }    logger_setup_paths(logdir);    checkpointer_setup_paths(cpdir);    status = restoreCheckpoint();    if (status != 0)        panic("restore checkpoint failed!", false);    status = replayLogs();    if (status == 0)        cp.do_CP();    exit(0);}static int restoreCheckpoint(){    int status = 0;    if (file_exists(LASTCP)) {        Restorer r;        status = r.rebuild(LASTCP) ? 0 : -EIO;    } else {        status = metatree.new_tree();    }    return status;}static int replayLogs(){    int status, lastlog = -1, lognum;    ino_t lastino;    struct stat buf;    // we want to replay log files that are "complete"---those that    // won't ever be written to again.  so, starting with the log    // associated with the CP, replay all the log files upto the    // "last" log file.    // get the inode # for the last file    status = stat(LASTLOG.c_str(), &buf);    if (status < 0)        // no "last" log file; so nothing to do        return status;    // get the inode # for the log file that corresponds to last and    // then replay those    lastino = buf.st_ino;    for (lognum = replayer.logno(); ;lognum++) {        string logfn = oplog.logfile(lognum);        status = stat(logfn.c_str(), &buf);        if (status < 0)            break;        if (buf.st_ino == lastino) {            lastlog = lognum;            assert(buf.st_nlink == 2);            break;        }    }        if (lastlog == replayer.logno()) {        cout << "No new logs since the last log; so, skipping checkpoint" << endl;        return -2;    }    if (lastlog < 0)        return -1;    cout << "Replaying logs from log." << replayer.logno() << " ... log." << lastlog << endl;    for (lognum = replayer.logno(); lognum <= lastlog;lognum++) {        string logfn = oplog.logfile(lognum);        replayer.openlog(logfn);        status = replayer.playlog();        if (status != 0)            panic("log replay failed", false);    }    oplog.setLog(lognum);    cout << "Replay of logs finished" << endl;    return status;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -