ST协程切换回调介绍—StateThreads协程源码分析

StateThreads 提供了一个协程切换回调功能,当切走 协程的时候 会执行 _st_this_vp.switch_out_cb() 函数,到恢复协程的时候 会执行 _st_this_vp.switch_in_cb() 函数。

我们可以通过 st_set_switch_in_cb()st_set_switch_out_cb() 注册这两个回调函数,这样可以对协程切换进行 hook 操作。

我们修改一下 lookupdns.c 文件,如下:

arduino 复制代码
//添加头文件
#include "../common.h"
arduino 复制代码
//新增回调函数
int switch_count = 0;
void my_switch_in_cb(void){
    _st_thread_t *thread = st_thread_self();
    printf("switch_in thread %p \n", thread);
    switch_count++;
};
void my_switch_out_cb(void){
    _st_thread_t *thread = st_thread_self();
    printf("switch_out thread %p \n", thread);
    switch_count++;
};
scss 复制代码
//注册回调函数
st_set_switch_in_cb(my_switch_in_cb);
st_set_switch_out_cb(my_switch_out_cb);

完整的代码可以在 GitHub 进行下载。运行命令 以及 结果如下:

lookupdns srs.xianwaizhiyin.net ffmpeg.xianwaizhiyin.net www.xianwaizhiyin.net

可以看到,一共进行了 6 次协程切换。不过 switch_out 的日志 比 switch_in 多了几条,不是应该一样的吗?

这个我觉得是这个回调的机制不太完成,具体的原因请阅读《协程是什么时候开始运行》里面对 st_thread_exit() 函数的分析。


协程切换回调 的原理是这样的,我们注册回调函数,只是设置两个变量 _st_this_vp.switch_in_cb_st_this_vp.switch_out_cb,这两个变量是 函数指针 来的。然后在 _ST_SWITCH_CONTEXT() 的时候,就会调用这两次回调函数。如下:


本文是《 SRS原理 》一书中的文章,如需观看更多内容,请购买本书。

相关推荐
在狂风暴雨中奔跑9 天前
Android+FFmpeg+x264重编码压缩你的视频
音视频开发
音视频牛哥13 天前
[2015~2024]SmartMediaKit音视频直播技术演进之路
音视频开发·视频编码·直播
音视频牛哥16 天前
Windows平台Unity3D下RTMP播放器低延迟设计探讨
音视频开发·视频编码·直播
音视频牛哥16 天前
Windows平台Unity3D下如何低延迟低资源占用播放RTMP或RTSP流?
音视频开发·视频编码·直播
音视频牛哥16 天前
Android平台GB28181设备接入模块动态文字图片水印技术探究
音视频开发·视频编码·直播
陈年16 天前
纯前端视频剪辑
音视频开发
声知视界17 天前
音视频基础能力之 Android 音频篇 (三):高性能音频采集
android·音视频开发
音视频牛哥20 天前
RTSP摄像头8K超高清使用场景探究和播放器要求
音视频开发·视频编码·直播
音视频牛哥21 天前
RTMP如何实现毫秒级延迟体验?
音视频开发·视频编码·直播
哔哩哔哩技术23 天前
WASM 助力 WebCodecs:填补解封装能力的空白
音视频开发