27 int32_t operator()(io_uring_cqe *cqe)
noexcept {
return cqe->res; }
39 requires(
requires(Br *br, io_uring_cqe *cqe) { br->handle_finish(cqe); })
40class SelectBufferCQEHandler {
42 SelectBufferCQEHandler(Br *buffers) : buffers_(buffers) {}
44 auto operator()(io_uring_cqe *cqe)
noexcept {
45 return std::make_pair(cqe->res, buffers_->handle_finish(cqe));
59 std::pair<int32_t, uint64_t> operator()(io_uring_cqe *cqe)
noexcept {
61 detail::Context::current().runtime()->ring_internal().check_cqe32(
63 "Expected big CQE for NVMe passthrough");
64 return {cqe->res, cqe->big_cqe[0]};
68#if !IO_URING_CHECK_VERSION(2, 12)
98 std::pair<int32_t, TxTimestampResult>
99 operator()(io_uring_cqe *cqe)
noexcept {
101 detail::Context::current().runtime()->ring_internal().check_cqe32(
103 "Expected big CQE for TX timestamp operations");
106 static_cast<int>(cqe->flags >> IORING_TIMESTAMP_TYPE_SHIFT);
107 result.
hwts = cqe->flags & IORING_CQE_F_TSTAMP_HW;
108 result.
ts =
reinterpret_cast<io_timespec &
>(cqe->big_cqe);
109 return {cqe->res, result};
The main namespace for the Condy library.
Runtime type for running the io_uring event loop.
A CQE handler for NVMe passthrough commands that extracts the status and result from the CQE.
A simple CQE handler that extracts the result from the CQE without any additional processing.
A CQE handler for TX timestamp operations that extracts timestamp information from the CQE.
Result for TX timestamp operations, containing timestamp information from the socket error queue.
int tstype
The timestamp type, could be SCM_TSTAMP_SND, SCM_TSTAMP_SCHED, SCM_TSTAMP_ACK, etc.
io_timespec ts
The timestamp value.
bool hwts
Whether this timestamp is a hardware timestamp.