awtk/docs/manual/timer_t.md

220 lines
5.2 KiB
Markdown
Raw Normal View History

2018-12-20 17:33:31 +08:00
## timer\_t
### 概述
2019-10-16 09:02:32 +08:00
定时器系统。
> 本定时器精度较低最高精度为1000/FPS如果需要高精度的定时器请用OS提供的定时器。
示例:
```c
static ret_t my_on_timer(const timer_info_t* info) {
widget_t* widget = WIDGET(info->ctx);
...
return RET_REPEAT;
}
...
timer_add(my_on_timer, widget, 1000);
```
> 在非GUI线程请用timer\_queue。
2019-10-19 08:35:25 +08:00
2019-01-15 14:34:05 +08:00
----------------------------------
2018-12-20 17:33:31 +08:00
### 函数
<p id="timer_t_methods">
| 函数名称 | 说明 |
| -------- | ------------ |
2018-12-21 12:11:40 +08:00
| <a href="#timer_t_timer_add">timer\_add</a> | 增加一个timer。 |
| <a href="#timer_t_timer_count">timer\_count</a> | 返回timer的个数。 |
2019-07-04 10:05:59 +08:00
| <a href="#timer_t_timer_modify">timer\_modify</a> | 修改指定的timer的duration修改之后定时器重新开始计时。 |
2018-12-21 12:11:40 +08:00
| <a href="#timer_t_timer_next_time">timer\_next\_time</a> | 返回最近的timer到期时间。 |
| <a href="#timer_t_timer_queue">timer\_queue</a> | 用于非GUI线程增加一个timer本函数向主循环的事件队列中发送一个增加timer的请求。 |
| <a href="#timer_t_timer_remove">timer\_remove</a> | 删除指定的timer。 |
2019-02-20 15:25:09 +08:00
| <a href="#timer_t_timer_reset">timer\_reset</a> | 重置指定的timer重置之后定时器重新开始计时。 |
2018-12-21 12:11:40 +08:00
| <a href="#timer_t_timer_set_on_destroy">timer\_set\_on\_destroy</a> | 设置一个回调函数在timer被销毁时调用(方便脚本语言去释放回调函数)。 |
2018-12-20 17:33:31 +08:00
#### timer\_add 函数
2018-12-21 18:29:29 +08:00
-----------------------
* 函数功能:
2019-10-16 09:02:32 +08:00
> <p id="timer_t_timer_add"> 增加一个timer。
2018-12-21 18:29:29 +08:00
2019-10-19 08:35:25 +08:00
2018-12-21 11:39:05 +08:00
* 函数原型:
```
2019-01-03 09:59:18 +08:00
uint32_t timer_add (timer_func_t on_timer, void* ctx, uint32_t duration);
2018-12-21 11:39:05 +08:00
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | uint32\_t | 返回timer的IDTK\_INVALID\_ID表示失败。 |
| on\_timer | timer\_func\_t | timer回调函数。 |
| ctx | void* | timer回调函数的上下文。 |
2019-01-03 09:59:18 +08:00
| duration | uint32\_t | 时间。 |
2018-12-21 18:29:29 +08:00
#### timer\_count 函数
-----------------------
2018-12-21 11:39:05 +08:00
* 函数功能:
2019-10-16 09:02:32 +08:00
> <p id="timer_t_timer_count"> 返回timer的个数。
2018-12-20 17:33:31 +08:00
2019-10-19 08:35:25 +08:00
2018-12-21 11:39:05 +08:00
* 函数原型:
```
uint32_t timer_count ();
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | uint32\_t | 返回timer的个数。 |
2019-07-04 10:05:59 +08:00
#### timer\_modify 函数
-----------------------
* 函数功能:
2019-10-16 09:02:32 +08:00
> <p id="timer_t_timer_modify"> 修改指定的timer的duration修改之后定时器重新开始计时。
2019-07-04 10:05:59 +08:00
2019-10-19 08:35:25 +08:00
2019-07-04 10:05:59 +08:00
* 函数原型:
```
ret_t timer_modify (uint32_t timer_id, uint32_t duration);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| timer\_id | uint32\_t | timerID。 |
| duration | uint32\_t | 新的时间。 |
2018-12-21 18:29:29 +08:00
#### timer\_next\_time 函数
-----------------------
2018-12-21 11:39:05 +08:00
* 函数功能:
2019-10-16 09:02:32 +08:00
> <p id="timer_t_timer_next_time"> 返回最近的timer到期时间。
2018-12-20 17:33:31 +08:00
2019-10-19 08:35:25 +08:00
2018-12-21 11:39:05 +08:00
* 函数原型:
```
uint32_t timer_next_time ();
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | uint32\_t | 返回最近的timer到期时间。 |
2018-12-21 18:29:29 +08:00
#### timer\_queue 函数
-----------------------
2018-12-21 11:39:05 +08:00
* 函数功能:
2019-10-16 09:02:32 +08:00
> <p id="timer_t_timer_queue"> 用于非GUI线程增加一个timer本函数向主循环的事件队列中发送一个增加timer的请求。
timer回调函数回调函数返回RET_REPEAT则下次继续执行否则自动移出。
2018-12-20 17:33:31 +08:00
2019-10-19 08:35:25 +08:00
2018-12-21 11:39:05 +08:00
* 函数原型:
```
2019-01-03 09:59:18 +08:00
ret_t timer_queue (timer_func_t , void* ctx, uint32_t duration);
2018-12-21 11:39:05 +08:00
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| | timer\_func\_t | r |
| ctx | void* | timer回调函数的上下文。 |
2019-01-03 09:59:18 +08:00
| duration | uint32\_t | 时间。 |
2018-12-21 18:29:29 +08:00
#### timer\_remove 函数
-----------------------
2018-12-21 11:39:05 +08:00
* 函数功能:
2019-10-16 09:02:32 +08:00
> <p id="timer_t_timer_remove"> 删除指定的timer。
2018-12-20 17:33:31 +08:00
2019-10-19 08:35:25 +08:00
2018-12-21 11:39:05 +08:00
* 函数原型:
```
ret_t timer_remove (uint32_t timer_id);
```
* 参数说明:
2019-02-20 15:25:09 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| timer\_id | uint32\_t | timerID。 |
#### timer\_reset 函数
-----------------------
* 函数功能:
2019-10-16 09:02:32 +08:00
> <p id="timer_t_timer_reset"> 重置指定的timer重置之后定时器重新开始计时。
2019-02-20 15:25:09 +08:00
2019-10-19 08:35:25 +08:00
2019-02-20 15:25:09 +08:00
* 函数原型:
```
ret_t timer_reset (uint32_t timer_id);
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| timer\_id | uint32\_t | timerID。 |
2018-12-21 18:29:29 +08:00
#### timer\_set\_on\_destroy 函数
-----------------------
2018-12-21 11:39:05 +08:00
* 函数功能:
2019-10-16 09:02:32 +08:00
> <p id="timer_t_timer_set_on_destroy"> 设置一个回调函数在timer被销毁时调用(方便脚本语言去释放回调函数)。
2018-12-20 17:33:31 +08:00
2019-10-19 08:35:25 +08:00
2018-12-21 11:39:05 +08:00
* 函数原型:
```
ret_t timer_set_on_destroy (uint32_t timer_id, tk_destroy_t on_destroy, void* on_destroy_ctx);
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败。 |
| timer\_id | uint32\_t | timerID。 |
| on\_destroy | tk\_destroy\_t | 回调函数。 |
| on\_destroy\_ctx | void* | 回调函数上下文。 |