summaryrefslogtreecommitdiffstats
path: root/src/librbd/managed_lock/Types.h
blob: 319789c83659ebae1f42d08a76e7c6fd66b4bb15 (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
38
39
40
41
42
43
44
45
46
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab

#ifndef CEPH_LIBRBD_MANAGED_LOCK_TYPES_H
#define CEPH_LIBRBD_MANAGED_LOCK_TYPES_H

#include "msg/msg_types.h"
#include <string>

namespace librbd {
namespace managed_lock {

struct Locker {
  entity_name_t entity;
  std::string cookie;
  std::string address;
  uint64_t handle = 0;

  Locker() {
  }
  Locker(const entity_name_t& entity, const std::string &cookie,
         const std::string &address, uint64_t handle)
    : entity(entity), cookie(cookie), address(address), handle(handle) {
  }

  inline bool operator==(const Locker &rhs) const {
    return (entity == rhs.entity &&
            cookie == rhs.cookie &&
            address == rhs.address &&
            handle == rhs.handle);
  }
  inline bool operator!=(const Locker &rhs) const {
    return !(*this == rhs);
  }
};

enum Mode {
  EXCLUSIVE,
  SHARED
};


} // namespace managed_lock
} // namespace librbd

#endif // CEPH_LIBRBD_MANAGED_LOCK_TYPES_H