forked from wjakob/nanobind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_chrono.cpp
93 lines (75 loc) · 3.87 KB
/
test_chrono.cpp
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
tests/test_chrono.cpp -- test conversions to/from std::chrono types
Ported from pybind11/tests/test_chrono.cpp
Copyright (c) 2016 Trent Houliston <[email protected]> and
Wenzel Jakob <[email protected]>
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
*/
#include <nanobind/stl/chrono.h>
struct different_resolutions {
using time_point_h = std::chrono::time_point<std::chrono::system_clock,
std::chrono::hours>;
using time_point_m = std::chrono::time_point<std::chrono::system_clock,
std::chrono::minutes>;
using time_point_s = std::chrono::time_point<std::chrono::system_clock,
std::chrono::seconds>;
using time_point_ms = std::chrono::time_point<std::chrono::system_clock,
std::chrono::milliseconds>;
using time_point_us = std::chrono::time_point<std::chrono::system_clock,
std::chrono::microseconds>;
time_point_h timestamp_h;
time_point_m timestamp_m;
time_point_s timestamp_s;
time_point_ms timestamp_ms;
time_point_us timestamp_us;
};
NB_MODULE(test_chrono_ext, m) {
using system_time = std::chrono::system_clock::time_point;
using steady_time = std::chrono::steady_clock::time_point;
using timespan = std::chrono::duration<int64_t, std::nano>;
using timestamp = std::chrono::time_point<std::chrono::system_clock, timespan>;
// test_chrono_system_clock
// Return the current time off the wall clock
m.def("test_chrono1", []() { return std::chrono::system_clock::now(); });
// test_chrono_system_clock_roundtrip
// Round trip the passed in system clock time
m.def("test_chrono2", [](system_time t) { return t; });
// test_chrono_duration_roundtrip
// Round trip the passed in duration
m.def("test_chrono3", [](std::chrono::system_clock::duration d) { return d; });
// test_chrono_duration_subtraction_equivalence
// Difference between two passed in time_points
m.def("test_chrono4", [](system_time a, system_time b) { return a - b; });
// test_chrono_steady_clock
// Return the current time off the steady_clock
m.def("test_chrono5", []() { return std::chrono::steady_clock::now(); });
// test_chrono_steady_clock_roundtrip
// Round trip a steady clock timepoint
m.def("test_chrono6", [](steady_time t) { return t; });
// test_floating_point_duration
// Roundtrip a duration in microseconds from a float argument
m.def("test_chrono7", [](std::chrono::microseconds t) { return t; });
// Float durations (pybind11 issue #719)
m.def("test_chrono_float_diff",
[](std::chrono::duration<float> a, std::chrono::duration<float> b) { return a - b; });
m.def("test_nano_timepoint",
[](timestamp start, timespan delta) -> timestamp { return start + delta; });
m.def("test_nano_timepoint_roundtrip",
[](timestamp start) { return start; });
m.def("test_nano_timepoint_diff",
[](timestamp start, timestamp end) -> timespan { return start - end; });
// Test different resolutions
nanobind::class_<different_resolutions>(m, "different_resolutions")
.def(nanobind::init<>())
.def_rw("timestamp_h", &different_resolutions::timestamp_h)
.def_rw("timestamp_m", &different_resolutions::timestamp_m)
.def_rw("timestamp_s", &different_resolutions::timestamp_s)
.def_rw("timestamp_ms", &different_resolutions::timestamp_ms)
.def_rw("timestamp_us", &different_resolutions::timestamp_us);
#if defined(Py_LIMITED_API) || defined(PYPY_VERSION)
m.attr("access_via_python") = true;
#else
m.attr("access_via_python") = false;
#endif
}