summaryrefslogtreecommitdiffstats
path: root/src/tools/rbd_mirror/service_daemon/Types.h
blob: 3aab7201614fa65fb912d10b4f721cbc081295db (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
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab

#ifndef CEPH_RBD_MIRROR_SERVICE_DAEMON_TYPES_H
#define CEPH_RBD_MIRROR_SERVICE_DAEMON_TYPES_H

#include "include/int_types.h"
#include <iosfwd>
#include <string>
#include <boost/variant.hpp>

namespace rbd {
namespace mirror {
namespace service_daemon {

typedef uint64_t CalloutId;
const uint64_t CALLOUT_ID_NONE {0};

enum CalloutLevel {
  CALLOUT_LEVEL_INFO,
  CALLOUT_LEVEL_WARNING,
  CALLOUT_LEVEL_ERROR
};

std::ostream& operator<<(std::ostream& os, const CalloutLevel& callout_level);

typedef boost::variant<bool, uint64_t, std::string> AttributeValue;

} // namespace service_daemon
} // namespace mirror
} // namespace rbd

#endif // CEPH_RBD_MIRROR_SERVICE_DAEMON_TYPES_H