initial commit

This commit is contained in:
2025-08-05 15:53:44 +08:00
commit 09dc02ae52
553 changed files with 137665 additions and 0 deletions

2
mw/shutdownmgr/config.mk Executable file
View File

@@ -0,0 +1,2 @@
HEADERS += $(MW_DIR)/shutdownmgr/*.h
SRCDIRS += $(MW_DIR)/shutdownmgr

105
mw/shutdownmgr/mw_shutdownmgr.c Executable file
View File

@@ -0,0 +1,105 @@
#include "mw_shutdownmgr.h"
#include "htime.h"
#include "hthread.h"
#include "hbase.h"
#include "hlog.h"
#include "hmutex.h"
typedef struct{
hthread_t th;
hmutex_t mutex;
hsem_t sem;
uint8_t exit;
struct list_head wakeuplist;
}shutdownmgr_s;
typedef struct {
struct list_head link;
WAKEUP_SOURCE src;
uint64_t start_ms;
uint64_t expire_ms;
}wakeup_src_s;
static shutdownmgr_s *s_mgr;
static void start_ms_shutdown();
static void *thread_entry(void *param){
shutdownmgr_s *mgr = (shutdownmgr_s*)param;
hlogd("%s start_ms:%p", __func__, param);
for(;;)
{
{
hmutex_lock(&mgr->mutex);
struct list_head *pos = NULL, *n = NULL;
list_for_each_safe(pos, n, &mgr->wakeuplist) {
wakeup_src_s* src = list_entry(pos, wakeup_src_s, link);
uint64_t now = gettimeofday_ms();
if( now > src->expire_ms) {
hlogd("now:%llu src %d expire_msd start_ms: %llu expire_ms:%llu interval: %llu ms", now, src->src, src->start_ms, src->expire_ms, src->expire_ms - src->start_ms);
list_del(&src->link);
hv_free(src);
}//else Whlogd(myLog, "src %d param %d now %ld, expire_ms: %ld", src->src, src->param, clock(), src->expire_ms);
}
hmutex_unlock(&mgr->mutex);
if(list_empty(&mgr->wakeuplist)) {
break;
}
}
hv_msleep(100);
}
hlogw("%s go to shutdown", __func__);
//standby();
return NULL;
}
void shutdownmgr_set(WAKEUP_SOURCE source, uint32_t expire_ms_ms){
shutdownmgr_s *mgr;
if (!s_mgr ){
s_mgr = hv_malloc(sizeof(shutdownmgr_s));
INIT_LIST_HEAD(&s_mgr->wakeuplist);
hmutex_init(&s_mgr->mutex);
s_mgr->th = hthread_create(thread_entry, s_mgr);
}
mgr = s_mgr;
hmutex_lock(&mgr->mutex);
struct list_head *pos, *n;
list_for_each_safe(pos, n, &mgr->wakeuplist)
{
wakeup_src_s* src = list_entry(pos, wakeup_src_s, link);
if(src->src == source) {
src->expire_ms = gettimeofday_ms() + expire_ms_ms;
hmutex_unlock(&mgr->mutex);
return;
}
}
wakeup_src_s *src = hv_malloc(sizeof(wakeup_src_s));
src->src = source;
src->start_ms = gettimeofday_ms();
src->expire_ms = src->start_ms + expire_ms_ms;
list_add_tail(&src->link, &mgr->wakeuplist);
hmutex_unlock(&mgr->mutex);
hloge("addWakeupSource %d now:%llu, after: %llums, expire_ms: %llu", source, gettimeofday_ms(), expire_ms_ms, src->expire_ms);
start_ms_shutdown();
}
void start_ms_shutdown()
{
hlogd("start_ms_shutdown:%s", __func__);
}
void shutdownmgr_test()
{
shutdownmgr_set(WAKEUP_DEFAULT, 2*1000);
shutdownmgr_set(WAKEUP_USER, 5*1000);
shutdownmgr_set(WAKEUP_QRCODE, 8*1000);
}

48
mw/shutdownmgr/mw_shutdownmgr.h Executable file
View File

@@ -0,0 +1,48 @@
/*************************************************************************
File name : shutdownmgr.h
Module : mw
Author :
Copyright :
Version : 0.1
Created on : 2022-04-27
Creator : amir.liang
Description :
auto suspend the system if meet the condition
用于关机管理
Modify History:
1. Date: Author: Modification:
***************************************************************************/
#ifndef __shutdownmgr_H__
#define __shutdownmgr_H__
#include <stdint.h>
#include "list.h"
/*
* 有source在的时候 禁止自动shutdown的
* 所有source超时, 进入关机流程
*/
typedef enum{
WAKEUP_DEFAULT = 0 ,//0
WAKEUP_USER ,//1
WAKEUP_QRCODE ,//2
WAKEUP_WIFI ,//3
WAKEUP_KEY ,//4
WAKEUP_RING_BUTTON ,//6
WAKEUP_HTTP ,//7 add 2 second each http request.
WAKEUP_IO ,
WAKEUP_HISTORYLIST//never suspend except onstanby or keepalive time out
}WAKEUP_SOURCE;
/*
*
*/
void shutdownmgr_set(WAKEUP_SOURCE source, uint32_t expire_ms);
void shutdownmgr_test();
#endif /* __shutdownmgr_H__ */