]> git.proxmox.com Git - ceph.git/blame - ceph/src/ceph_mgr.cc
import quincy beta 17.1.0
[ceph.git] / ceph / src / ceph_mgr.cc
CommitLineData
7c673cae
FG
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) 2015 Red Hat Inc
7 *
8 * Author: John Spray <john.spray@redhat.com>
9 *
10 * This is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License version 2.1, as published by the Free Software
13 * Foundation. See file COPYING.
14 *
15 */
16
17#include <Python.h>
18
3efd9988
FG
19#include <pthread.h>
20
7c673cae 21#include "include/types.h"
3efd9988 22#include "include/compat.h"
7c673cae
FG
23#include "common/config.h"
24#include "common/ceph_argparse.h"
25#include "common/errno.h"
b5b8bbf5 26#include "common/pick_address.h"
7c673cae
FG
27#include "global/global_init.h"
28
29#include "mgr/MgrStandby.h"
30
31f18b77
FG
31static void usage()
32{
20effc67
TL
33 std::cout << "usage: ceph-mgr -i <ID> [flags]\n"
34 << std::endl;
31f18b77
FG
35 generic_server_usage();
36}
7c673cae
FG
37
38/**
39 * A short main() which just instantiates a MgrStandby and
40 * hands over control to that.
41 */
42int main(int argc, const char **argv)
43{
3efd9988
FG
44 ceph_pthread_setname(pthread_self(), "ceph-mgr");
45
20effc67 46 auto args = argv_to_vec(argc, argv);
11fdf7f2 47 if (args.empty()) {
20effc67 48 std::cerr << argv[0] << ": -h or --help for usage" << std::endl;
11fdf7f2
TL
49 exit(1);
50 }
51 if (ceph_argparse_need_usage(args)) {
52 usage();
53 exit(0);
54 }
7c673cae 55
20effc67 56 std::map<std::string,std::string> defaults = {
11fdf7f2
TL
57 { "keyring", "$mgr_data/keyring" }
58 };
59 auto cct = global_init(&defaults, args, CEPH_ENTITY_TYPE_MGR,
f67539c2 60 CODE_ENVIRONMENT_DAEMON, 0);
7c673cae 61
b5b8bbf5
FG
62 pick_addresses(g_ceph_context, CEPH_PICK_ADDRESS_PUBLIC);
63
7c673cae
FG
64 global_init_daemonize(g_ceph_context);
65 global_init_chdir(g_ceph_context);
66 common_init_finish(g_ceph_context);
67
31f18b77 68 MgrStandby mgr(argc, argv);
7c673cae
FG
69 int rc = mgr.init();
70 if (rc != 0) {
71 std::cerr << "Error in initialization: " << cpp_strerror(rc) << std::endl;
72 return rc;
73 }
74
75 return mgr.main(args);
76}
77