]> git.proxmox.com Git - ceph.git/blob - ceph/src/tools/cephfs/cephfs-journal-tool.cc
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / tools / cephfs / cephfs-journal-tool.cc
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3 /*
4 * Ceph - scalable distributed file system
5 *
6 * Copyright (C) 2014 John Spray <john.spray@inktank.com>
7 *
8 * This is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License version 2.1, as published by the Free Software
11 * Foundation. See file COPYING.
12 */
13
14
15 #include "include/types.h"
16 #include "common/config.h"
17 #include "common/ceph_argparse.h"
18 #include "common/errno.h"
19 #include "global/global_init.h"
20
21 #include "JournalTool.h"
22
23
24 int main(int argc, const char **argv)
25 {
26 vector<const char*> args;
27 argv_to_vec(argc, argv, args);
28 if (args.empty()) {
29 cerr << argv[0] << ": -h or --help for usage" << std::endl;
30 exit(1);
31 }
32 if (ceph_argparse_need_usage(args)) {
33 JournalTool::usage();
34 exit(0);
35 }
36
37 auto cct = global_init(NULL, args, CEPH_ENTITY_TYPE_CLIENT,
38 CODE_ENVIRONMENT_UTILITY, 0);
39 common_init_finish(g_ceph_context);
40
41 JournalTool jt;
42
43 // Connect to mon cluster, download MDS map etc
44 int rc = jt.init();
45 if (rc != 0) {
46 std::cerr << "Error in initialization: " << cpp_strerror(rc) << std::endl;
47 return rc;
48 }
49
50 // Finally, execute the user's commands
51 rc = jt.main(args);
52 if (rc != 0) {
53 std::cerr << "Error (" << cpp_strerror(rc) << ")" << std::endl;
54 }
55
56 return rc;
57 }
58