Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / mgr / MgrClient.h
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) 2016 John Spray <john.spray@redhat.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 #ifndef MGR_CLIENT_H_
15 #define MGR_CLIENT_H_
16
17 #include "msg/Dispatcher.h"
18 #include "mon/MgrMap.h"
19
20 #include "msg/Connection.h"
21
22 #include "common/perf_counters.h"
23 #include "common/Timer.h"
24 #include "common/CommandTable.h"
25
26 class MMgrMap;
27 class MMgrConfigure;
28 class Messenger;
29 class MCommandReply;
30 class MPGStats;
31
32 class MgrSessionState
33 {
34   public:
35   // Which performance counters have we already transmitted schema for?
36   std::set<std::string> declared;
37
38   // Our connection to the mgr
39   ConnectionRef con;
40 };
41
42 class MgrCommand : public CommandOp
43 {
44   public:
45
46   MgrCommand(ceph_tid_t t) : CommandOp(t) {}
47   MgrCommand() : CommandOp() {}
48 };
49
50 class MgrClient : public Dispatcher
51 {
52 protected:
53   CephContext *cct;
54   MgrMap map;
55   Messenger *msgr;
56
57   unique_ptr<MgrSessionState> session;
58
59   Mutex lock = {"MgrClient::lock"};
60
61   uint32_t stats_period = 0;
62   uint32_t stats_threshold = 0;
63   SafeTimer timer;
64
65   CommandTable<MgrCommand> command_table;
66
67   utime_t last_connect_attempt;
68
69   Context *report_callback = nullptr;
70   Context *connect_retry_callback = nullptr;
71
72   // If provided, use this to compose an MPGStats to send with
73   // our reports (hook for use by OSD)
74   std::function<MPGStats*()> pgstats_cb;
75
76   // for service registration and beacon
77   bool service_daemon = false;
78   bool daemon_dirty_status = false;
79   std::string service_name, daemon_name;
80   std::map<std::string,std::string> daemon_metadata;
81   std::map<std::string,std::string> daemon_status;
82
83   void reconnect();
84   void _send_open();
85
86 public:
87   MgrClient(CephContext *cct_, Messenger *msgr_);
88
89   void set_messenger(Messenger *msgr_) { msgr = msgr_; }
90
91   void init();
92   void shutdown();
93
94   bool ms_dispatch(Message *m) override;
95   bool ms_handle_reset(Connection *con) override;
96   void ms_handle_remote_reset(Connection *con) override {}
97   bool ms_handle_refused(Connection *con) override;
98
99   bool handle_mgr_map(MMgrMap *m);
100   bool handle_mgr_configure(MMgrConfigure *m);
101   bool handle_command_reply(MCommandReply *m);
102
103   void send_report();
104   void send_pgstats();
105
106   void set_pgstats_cb(std::function<MPGStats*()> cb_)
107   {
108     Mutex::Locker l(lock);
109     pgstats_cb = cb_;
110   }
111
112   int start_command(const vector<string>& cmd, const bufferlist& inbl,
113                     bufferlist *outbl, string *outs,
114                     Context *onfinish);
115
116   int service_daemon_register(
117     const std::string& service,
118     const std::string& name,
119     const std::map<std::string,std::string>& metadata);
120   int service_daemon_update_status(
121     const std::map<std::string,std::string>& status);
122 };
123
124 #endif
125