blob: c27cb5746b98a105091ea850881dc4526e417cf0 (
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
60
61
62
63
64
65
66
67
68
|
#ifndef TEST_CEPH_TIME_H
#define TEST_CEPH_TIME_H
#include <list>
#include "include/encoding.h"
#include "common/ceph_time.h"
#include "common/Formatter.h"
// wrapper for ceph::real_time that implements the dencoder interface
template <typename Clock>
class time_point_wrapper {
using time_point = typename Clock::time_point;
time_point t;
public:
time_point_wrapper() = default;
explicit time_point_wrapper(const time_point& t) : t(t) {}
void encode(bufferlist& bl) const {
using ceph::encode;
encode(t, bl);
}
void decode(bufferlist::const_iterator &p) {
using ceph::decode;
decode(t, p);
}
void dump(Formatter* f) {
auto epoch_time = Clock::to_time_t(t);
f->dump_string("time", std::ctime(&epoch_time));
}
static void generate_test_instances(std::list<time_point_wrapper*>& ls) {
constexpr time_t t{455500800}; // Ghostbusters release date
ls.push_back(new time_point_wrapper(Clock::from_time_t(t)));
}
};
using real_time_wrapper = time_point_wrapper<ceph::real_clock>;
WRITE_CLASS_ENCODER(real_time_wrapper)
using coarse_real_time_wrapper = time_point_wrapper<ceph::coarse_real_clock>;
WRITE_CLASS_ENCODER(coarse_real_time_wrapper)
// wrapper for ceph::timespan that implements the dencoder interface
class timespan_wrapper {
ceph::timespan d;
public:
timespan_wrapper() = default;
explicit timespan_wrapper(const ceph::timespan& d) : d(d) {}
void encode(bufferlist& bl) const {
using ceph::encode;
encode(d, bl);
}
void decode(bufferlist::const_iterator &p) {
using ceph::decode;
decode(d, p);
}
void dump(Formatter* f) {
f->dump_int("timespan", d.count());
}
static void generate_test_instances(std::list<timespan_wrapper*>& ls) {
constexpr std::chrono::seconds d{7377}; // marathon world record (2:02:57)
ls.push_back(new timespan_wrapper(d));
}
};
WRITE_CLASS_ENCODER(timespan_wrapper)
#endif
|