X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fmessages%2FMOSDPGRemove.h;fp=src%2Fceph%2Fsrc%2Fmessages%2FMOSDPGRemove.h;h=f692ad428c361edb0d01456a38049855eacdbc0c;hb=812ff6ca9fcd3e629e49d4328905f33eee8ca3f5;hp=0000000000000000000000000000000000000000;hpb=15280273faafb77777eab341909a3f495cf248d9;p=stor4nfv.git diff --git a/src/ceph/src/messages/MOSDPGRemove.h b/src/ceph/src/messages/MOSDPGRemove.h new file mode 100644 index 0000000..f692ad4 --- /dev/null +++ b/src/ceph/src/messages/MOSDPGRemove.h @@ -0,0 +1,103 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab +/* + * Ceph - scalable distributed file system + * + * Copyright (C) 2004-2006 Sage Weil + * + * This is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software + * Foundation. See file COPYING. + * + */ + + +#ifndef CEPH_MOSDPGREMOVE_H +#define CEPH_MOSDPGREMOVE_H + +#include "common/hobject.h" +#include "msg/Message.h" + + +class MOSDPGRemove : public Message { + + static const int HEAD_VERSION = 3; + static const int COMPAT_VERSION = 2; + + epoch_t epoch = 0; + + public: + vector pg_list; + + epoch_t get_epoch() const { return epoch; } + + MOSDPGRemove() : + Message(MSG_OSD_PG_REMOVE, HEAD_VERSION, COMPAT_VERSION) {} + MOSDPGRemove(epoch_t e, vector& l) : + Message(MSG_OSD_PG_REMOVE, HEAD_VERSION, COMPAT_VERSION) { + this->epoch = e; + pg_list.swap(l); + } +private: + ~MOSDPGRemove() override {} + +public: + const char *get_type_name() const override { return "PGrm"; } + + void encode_payload(uint64_t features) override { + if (HAVE_FEATURE(features, SERVER_LUMINOUS)) { + header.version = HEAD_VERSION; + } else { + // for jewel+kraken + header.version = 2; + ::encode(epoch, payload); + + vector _pg_list; + _pg_list.reserve(pg_list.size()); + vector _shard_list; + _shard_list.reserve(pg_list.size()); + for (auto i = pg_list.begin(); i != pg_list.end(); ++i) { + _pg_list.push_back(i->pgid); + _shard_list.push_back(i->shard); + } + ::encode(_pg_list, payload); + ::encode(_shard_list, payload); + return; + } + ::encode(epoch, payload); + ::encode(pg_list, payload); + } + void decode_payload() override { + bufferlist::iterator p = payload.begin(); + if (header.version == 2) { + // jewel/kraken + ::decode(epoch, p); + vector _pg_list; + ::decode(_pg_list, p); + + vector _shard_list(_pg_list.size(), shard_id_t::NO_SHARD); + _shard_list.clear(); + ::decode(_shard_list, p); + assert(_shard_list.size() == _pg_list.size()); + pg_list.reserve(_shard_list.size()); + for (unsigned i = 0; i < _shard_list.size(); ++i) { + pg_list.push_back(spg_t(_pg_list[i], _shard_list[i])); + } + return; + } + ::decode(epoch, p); + ::decode(pg_list, p); + } + void print(ostream& out) const override { + out << "osd pg remove(" << "epoch " << epoch << "; "; + for (vector::const_iterator i = pg_list.begin(); + i != pg_list.end(); + ++i) { + out << "pg" << *i << "; "; + } + out << ")"; + } +}; + +#endif