summaryrefslogtreecommitdiffstats
path: root/src/rgw/driver/rados/rgw_sync_error_repo.h
blob: 60525d281f0fb87d8022e14d5cf6a17041a4ebfa (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
47
48
49
50
51
52
53
54
55
56
57
58
59
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab ft=cpp

/*
 * Ceph - scalable distributed file system
 *
 * Copyright (C) 2020 Red Hat, Inc
 *
 * 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.
 */

#pragma once

#include <optional>
#include "include/rados/librados_fwd.hpp"
#include "include/buffer_fwd.h"
#include "common/ceph_time.h"

class RGWSI_RADOS;
class RGWCoroutine;
struct rgw_raw_obj;
struct rgw_bucket_shard;

namespace rgw::error_repo {

// binary-encode a bucket/shard/gen and return it as a string
std::string encode_key(const rgw_bucket_shard& bs,
                       std::optional<uint64_t> gen);

// try to decode a key. returns -EINVAL if not in binary format
int decode_key(std::string encoded,
               rgw_bucket_shard& bs,
               std::optional<uint64_t>& gen);

// decode a timestamp as a uint64_t for CMPXATTR_MODE_U64
ceph::real_time decode_value(const ceph::bufferlist& bl);

// write an omap key iff the given timestamp is newer
int write(librados::ObjectWriteOperation& op,
          const std::string& key,
          ceph::real_time timestamp);
RGWCoroutine* write_cr(RGWSI_RADOS* rados,
                       const rgw_raw_obj& obj,
                       const std::string& key,
                       ceph::real_time timestamp);

// remove an omap key iff there isn't a newer timestamp
int remove(librados::ObjectWriteOperation& op,
           const std::string& key,
           ceph::real_time timestamp);
RGWCoroutine* remove_cr(RGWSI_RADOS* rados,
                        const rgw_raw_obj& obj,
                        const std::string& key,
                        ceph::real_time timestamp);

} // namespace rgw::error_repo