summaryrefslogtreecommitdiffstats
path: root/src/librbd/api/PoolMetadata.h
blob: 69ab574ac7545accfe6de1de9d0c9c77b5735840 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab

#ifndef CEPH_LIBRBD_API_POOL_METADATA_H
#define CEPH_LIBRBD_API_POOL_METADATA_H

#include "include/buffer_fwd.h"
#include "include/rados/librados_fwd.hpp"

#include <cstdint>
#include <map>
#include <string>

namespace librbd {

class ImageCtx;

namespace api {

template <typename ImageCtxT = librbd::ImageCtx>
class PoolMetadata {
public:
  static int get(librados::IoCtx& io_ctx, const std::string &key,
                 std::string *value);
  static int set(librados::IoCtx& io_ctx, const std::string &key,
                 const std::string &value);
  static int remove(librados::IoCtx& io_ctx, const std::string &key);
  static int list(librados::IoCtx& io_ctx, const std::string &start,
                  uint64_t max, std::map<std::string, ceph::bufferlist> *pairs);
};

} // namespace api
} // namespace librbd

extern template class librbd::api::PoolMetadata<librbd::ImageCtx>;

#endif // CEPH_LIBRBD_API_POOL_METADATA_H