标准库标头 <coroutine>

来自cppreference.com
< cpp‎ | header
 
 
标准库标头
注:修订记号中的反斜杠 '/' 意味着此标头被弃用和/或被移除。
语言支持
<coroutine> (C++20)
<csignal>
<csetjmp>
<cstdarg>

概念
<concepts> (C++20)
诊断
<system_error> (C++11)
内存管理
<memory_resource> (C++17)  
元编程
<type_traits> (C++11)
<ratio> (C++11)
通用工具
<utility>
<tuple> (C++11)
<optional> (C++17)
<variant> (C++17)
<any> (C++17)
<expected> (C++23)
<bitset>

<charconv> (C++17)
<format> (C++20)
<bit> (C++20)

字符串
<cuchar> (C++11)

容器
<flat_set> (C++23)
<span> (C++20)
<mdspan> (C++23)

迭代器
<iterator>
范围
<ranges> (C++20)
<generator> (C++23)
算法
数值
<cfenv> (C++11)
<complex>
<numbers> (C++20)

日期时间
<chrono> (C++11)
本地化
<codecvt> (C++11/17)
输入/输出
<filesystem> (C++17)
<cstdio>
<cinttypes> (C++11)
<strstream> (C++98/)
正则表达式
<regex>
并发支持
<stop_token> (C++20)
<thread> (C++11)
<atomic> (C++11)
<stdatomic.h> (C++23)
<mutex> (C++11)
<shared_mutex> (C++14)
<condition_variable> (C++11)  
<semaphore> (C++20)
<latch> (C++20)
<barrier> (C++20)
<future> (C++11)

C 兼容
<cstdbool> (C++11/17/20)  
<ccomplex> (C++11/17/20)
<ctgmath> (C++11/17/20)

<cstdalign> (C++11/17/20)

<ciso646> (C++20 前)

 

此头文件是协程支持库的一部分。

包含

(C++20)
三路比较运算符支持

用于发现协程承诺类型的特征类型
(类模板)
用于指代暂停或执行的协程
(类模板)
std::coroutine_handle 的散列支持
(类模板特化)
无操作协程
用于无可观察作用的协程
(类)
std::coroutine_handle<std::noop_coroutine_promise> ,有意用于指代无操作协程
(typedef)
平凡可等待体
指示 await 表达式应该决不暂停
(类)
指示 await 表达式应该始终暂停
(类)

函数

比较二个 coroutine_handle 对象
(函数)
无操作协程
创建在等待或销毁时无可观察作用的协程柄
(函数)

概要

#include <compare>
 
namespace std {
  // 协程表征
  template<class R, class... ArgTypes>
    struct coroutine_traits;
 
  // 协程柄
  template<class Promise = void>
    struct coroutine_handle;
 
  // 比较运算符
  constexpr bool operator==(coroutine_handle<> x, coroutine_handle<> y) noexcept;
  constexpr strong_ordering operator<=>(coroutine_handle<> x, coroutine_handle<> y) noexcept;
 
  // 散列支持
  template<class T> struct hash;
  template<class P> struct hash<coroutine_handle<P>>;
 
  // 无操作协程
  struct noop_coroutine_promise;
 
  template<> struct coroutine_handle<noop_coroutine_promise>;
  using noop_coroutine_handle = coroutine_handle<noop_coroutine_promise>;
 
  noop_coroutine_handle noop_coroutine() noexcept;
 
  // 平凡可等待体
  struct suspend_never;
  struct suspend_always;
}

类模板 std::coroutine_handle

namespace std {
  template<>
  struct coroutine_handle<void>
  {
    // 构造/重置
    constexpr coroutine_handle() noexcept;
    constexpr coroutine_handle(nullptr_t) noexcept;
    coroutine_handle& operator=(nullptr_t) noexcept;
 
    // 导入/导出
    constexpr void* address() const noexcept;
    static constexpr coroutine_handle from_address(void* addr);
 
    // 观察器
    constexpr explicit operator bool() const noexcept;
    bool done() const;
 
    // 恢复
    void operator()() const;
    void resume() const;
    void destroy() const;
 
  private:
    void* ptr;  // 仅用于阐释
  };
 
  template<class Promise>
  struct coroutine_handle
  {
    // 构造/重置
    constexpr coroutine_handle() noexcept;
    constexpr coroutine_handle(nullptr_t) noexcept;
    static coroutine_handle from_promise(Promise&);
    coroutine_handle& operator=(nullptr_t) noexcept;
 
    // 导出/导入
    constexpr void* address() const noexcept;
    static constexpr coroutine_handle from_address(void* addr);
 
    // 转换
    constexpr operator coroutine_handle<>() const noexcept;
 
    // 观察器
    constexpr explicit operator bool() const noexcept;
    bool done() const;
 
    // 恢复
    void operator()() const;
    void resume() const;
    void destroy() const;
 
    // 承诺访问
    Promise& promise() const;
 
  private:
    void* ptr;  // 仅用于阐释
  };
}

std::noop_coroutine_promise

namespace std {
  struct noop_coroutine_promise {};
}

std::coroutine_handle<std::noop_coroutine_promise>

namespace std {
  template<>
  struct coroutine_handle<noop_coroutine_promise>
  {
    // 转换
    constexpr operator coroutine_handle<>() const noexcept;
 
    // 观察器
    constexpr explicit operator bool() const noexcept;
    constexpr bool done() const noexcept;
 
    // 恢复
    constexpr void operator()() const noexcept;
    constexpr void resume() const noexcept;
    constexpr void destroy() const noexcept;
 
    // 承诺访问
    noop_coroutine_promise& promise() const noexcept;
 
    // 地址
    constexpr void* address() const noexcept;
  private:
    coroutine_handle(/* 未指明 */);
    void* ptr;  // 仅用于阐释
  };
}

std::suspend_never

namespace std {
  struct suspend_never {
    constexpr bool await_ready() const noexcept { return true; }
    constexpr void await_suspend(coroutine_handle<>) const noexcept {}
    constexpr void await_resume() const noexcept {}
  };
}

std::suspend_always

namespace std {
  struct suspend_always {
    constexpr bool await_ready() const noexcept { return false; }
    constexpr void await_suspend(coroutine_handle<>) const noexcept {}
    constexpr void await_resume() const noexcept {}
  };
}