Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / messages / MGetPoolStats.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) 2004-2006 Sage Weil <sage@newdream.net>
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
16 #ifndef CEPH_MGETPOOLSTATS_H
17 #define CEPH_MGETPOOLSTATS_H
18
19 #include "messages/PaxosServiceMessage.h"
20
21 class MGetPoolStats : public PaxosServiceMessage {
22 public:
23   uuid_d fsid;
24   list<string> pools;
25
26   MGetPoolStats() : PaxosServiceMessage(MSG_GETPOOLSTATS, 0) {}
27   MGetPoolStats(const uuid_d& f, ceph_tid_t t, list<string>& ls, version_t l) :
28     PaxosServiceMessage(MSG_GETPOOLSTATS, l),
29     fsid(f), pools(ls) {
30     set_tid(t);
31   }
32
33 private:
34   ~MGetPoolStats() override {}
35
36 public:
37   const char *get_type_name() const override { return "getpoolstats"; }
38   void print(ostream& out) const override {
39     out << "getpoolstats(" << get_tid() << " " << pools << " v" << version << ")";
40   }
41
42   void encode_payload(uint64_t features) override {
43     paxos_encode();
44     ::encode(fsid, payload);
45     ::encode(pools, payload);
46   }
47   void decode_payload() override {
48     bufferlist::iterator p = payload.begin();
49     paxos_decode(p);
50     ::decode(fsid, p);
51     ::decode(pools, p);
52   }
53 };
54
55 #endif