gpt4 book ai didi

c++ - 在已经运行的循环上添加另一个计时器

转载 作者:IT王子 更新时间:2023-10-29 01:25:50 25 4
gpt4 key购买 nike

给定以下程序 -

#include <iostream>
#include <uv.h>

int main()
{
uv_loop_t loop;
uv_loop_init(&loop);

std::cout << "Libuv version: " << UV_VERSION_MAJOR << "."
<< UV_VERSION_MINOR << std::endl;

int r = 0;

uv_timer_t t1_handle;
r = uv_timer_init(&loop, &t1_handle);
uv_timer_start(&t1_handle,
[](uv_timer_t *t) { std::cout << "Timer1 called\n"; }, 0, 2000);

uv_run(&loop, UV_RUN_DEFAULT);

// second timer
uv_timer_t t2_handle;
r = uv_timer_init(&loop, &t2_handle);
uv_timer_start(&t2_handle,
[](uv_timer_t *t) { std::cout << "Timer2 called\n"; }, 0, 1000);

uv_loop_close(&loop);
}

第二个计时器句柄永远不会在循环中运行,因为循环已经在运行,并且永远不会打印“Timer2 called”。所以我尝试在运行循环然后添加第二个计时器后暂时停止循环 -

....
uv_run(&loop, UV_RUN_DEFAULT);

// some work

uv_stop(&loop);
// now add second timer
uv_run(&loop, UV_RUN_DEFAULT); // run again
....

但这又一次不起作用,可能是因为在第一个循环开始使用重复计时器运行后,后面的行将不会执行。那么我应该如何为已经运行的 uvloop 添加一个新的定时器句柄呢?

最佳答案

你说得对,在注册新句柄之前需要停止循环。在uv_run之后调用uv_stop函数是无法实现的,因为uv_run需要先返回。例如,它可以通过使用句柄回调来停止它来实现。这是一个非常愚蠢的例子,说明如何使用现有的 Timer1 句柄完成它。它在第一次运行时正好停止循环一次。

#include <iostream>
#include <uv.h>

int main() {
uv_loop_t loop;
uv_loop_init(&loop);

std::cout << "Libuv version: " << UV_VERSION_MAJOR << "." << UV_VERSION_MINOR
<< std::endl;

int r = 0;

uv_timer_t t1_handle;
r = uv_timer_init(&loop, &t1_handle);
*(bool *)t1_handle.data = true; // need to stop the loop
uv_timer_start(&t1_handle,
[](uv_timer_t *t) {
std::cout << "Timer1 called\n";
bool to_stop = *(bool *)t->data;
if (to_stop) {
std::cout << "Stopping loop and resetting the flag\n";
uv_stop(t->loop);
*(bool *)t->data = false; // do not stop the loop again
}
},
0, 2000);
uv_run(&loop, UV_RUN_DEFAULT);
std::cout << "After uv_run\n";

// second timer
uv_timer_t t2_handle;
r = uv_timer_init(&loop, &t2_handle);
uv_timer_start(&t2_handle,
[](uv_timer_t *t) { std::cout << "Timer2 called\n"; }, 0,
1000);
std::cout << "Start loop again\n";
uv_run(&loop, UV_RUN_DEFAULT);

uv_loop_close(&loop);
}

所以输出是

Libuv version: 1.9
Timer1 called
Stopping loop and resetting the flag
After uv_run
Start loop again
Timer2 called
Timer2 called
Timer1 called
Timer2 called
Timer2 called
Timer1 called

关于c++ - 在已经运行的循环上添加另一个计时器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39942680/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com