summaryrefslogtreecommitdiffstats
path: root/src/librbd/api/Config.h
blob: 83225d287ebcac8e6667f8c75f94854ac6f4533a (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_CONFIG_H
#define CEPH_LIBRBD_API_CONFIG_H

#include "common/config_fwd.h"
#include "include/common_fwd.h"
#include "include/rbd/librbd.hpp"
#include "include/rados/librados_fwd.hpp"

namespace librbd {

class ImageCtx;

namespace api {

template <typename ImageCtxT = librbd::ImageCtx>
class Config {
public:
  static bool is_option_name(librados::IoCtx& io_ctx, const std::string &name);
  static int list(librados::IoCtx& io_ctx,
                  std::vector<config_option_t> *options);

  static bool is_option_name(ImageCtxT *image_ctx, const std::string &name);
  static int list(ImageCtxT *image_ctx, std::vector<config_option_t> *options);

  static void apply_pool_overrides(librados::IoCtx& io_ctx,
                                   ConfigProxy* config);
};

} // namespace api
} // namespace librbd

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

#endif // CEPH_LIBRBD_API_CONFIG_H