2023-05-29 12:49:30 +00:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*
|
|
|
|
|
* Change Logs:
|
|
|
|
|
* Date Author Notes
|
|
|
|
|
* 2023-05-29 murmur the first version
|
|
|
|
|
*/
|
2023-06-17 10:26:40 +00:00
|
|
|
|
//#include "../packages/minIni-v1.2.0/dev/minIni.h"
|
|
|
|
|
#include "minIni.h"
|
2023-05-29 12:49:30 +00:00
|
|
|
|
|
|
|
|
|
#ifdef PKG_USING_MININI
|
2023-07-29 08:08:15 +00:00
|
|
|
|
#define LJW_CFG_FILE_NAME "/cfg.ini"
|
|
|
|
|
#define FILE_TO_SEND "/sd/tosend.ini"//避免读写出错造成系统配置文件丢失
|
2023-05-29 12:49:30 +00:00
|
|
|
|
|
2023-05-30 08:53:31 +00:00
|
|
|
|
#define LOG_TAG "cfg"
|
|
|
|
|
#define LOG_LVL LOG_LVL_DBG
|
|
|
|
|
#include <ulog.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "cfg.h"
|
|
|
|
|
|
2023-07-29 08:08:15 +00:00
|
|
|
|
static uint8_t islock=0;
|
|
|
|
|
static void setLock()
|
|
|
|
|
{
|
|
|
|
|
while(islock)
|
|
|
|
|
{
|
|
|
|
|
rt_thread_mdelay(1000);
|
|
|
|
|
}
|
|
|
|
|
islock=1;
|
|
|
|
|
}
|
|
|
|
|
static void clearLock()
|
|
|
|
|
{
|
|
|
|
|
islock=0;
|
|
|
|
|
}
|
2023-06-20 10:09:07 +00:00
|
|
|
|
extern rt_sem_t cfgUpdate;
|
2023-07-29 08:08:15 +00:00
|
|
|
|
|
|
|
|
|
static struct rt_messagequeue upfilelist;
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
char msg[60];
|
|
|
|
|
uint8_t index;
|
|
|
|
|
}FILE_INFO;
|
|
|
|
|
static uint8_t msg_pool[512] ;
|
|
|
|
|
void addToList_thread_entry(void *parameter);
|
|
|
|
|
static void iniUFMsg(void)
|
|
|
|
|
{
|
|
|
|
|
/* 初始化消息队列 */
|
2023-07-29 09:39:28 +00:00
|
|
|
|
rt_mq_init(&upfilelist, "uplist",
|
2023-07-29 08:08:15 +00:00
|
|
|
|
msg_pool, /* 存放消息的缓冲区 */
|
|
|
|
|
sizeof(FILE_INFO), /* 一条消息的最大长度 */
|
|
|
|
|
sizeof(msg_pool), /* 存放消息的缓冲区大小 */
|
|
|
|
|
RT_IPC_FLAG_FIFO); /* 如果有多个线程等待,按照先来先得到的方法分配消息 */
|
|
|
|
|
|
|
|
|
|
/* 创建 serial 线程 */
|
|
|
|
|
rt_thread_t thread = rt_thread_create("filelist", addToList_thread_entry, RT_NULL, 1024*3, 30-2, 10);
|
|
|
|
|
/* 创建成功则启动线程 */
|
|
|
|
|
if (thread != RT_NULL)
|
|
|
|
|
{
|
|
|
|
|
rt_thread_startup(thread);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
LOG_E("thread 'updatelist' create failure.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2023-06-01 02:23:08 +00:00
|
|
|
|
/* 导出到自动初始化 */
|
2023-07-29 09:39:28 +00:00
|
|
|
|
INIT_APP_EXPORT(iniUFMsg);
|
2023-06-01 02:23:08 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 设置config项
|
|
|
|
|
* @param s
|
|
|
|
|
* @param k
|
|
|
|
|
* @param v
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2023-05-30 08:53:31 +00:00
|
|
|
|
int set_cfg(const char *k, const char*v)
|
|
|
|
|
{
|
2023-07-29 08:08:15 +00:00
|
|
|
|
setLock();
|
|
|
|
|
|
2023-06-01 02:23:08 +00:00
|
|
|
|
if (rt_strcmp(v,"NULL") == 0) {//delete key
|
|
|
|
|
v = NULL;
|
|
|
|
|
}
|
2023-05-30 08:53:31 +00:00
|
|
|
|
int rst = ini_puts("config",k,v,LJW_CFG_FILE_NAME);
|
|
|
|
|
if (rst == 1) {
|
|
|
|
|
|
|
|
|
|
LOG_I("set value success.");
|
|
|
|
|
|
|
|
|
|
//以下消息队列通知各线程更新参数
|
2023-06-20 10:09:07 +00:00
|
|
|
|
rt_sem_release(cfgUpdate);
|
2023-05-30 08:53:31 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
LOG_E("set value fault.");
|
|
|
|
|
}
|
2023-07-29 08:08:15 +00:00
|
|
|
|
|
|
|
|
|
clearLock();
|
2023-05-30 08:53:31 +00:00
|
|
|
|
return rst;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int get_cfg(const char *k)
|
|
|
|
|
{
|
2023-07-29 08:08:15 +00:00
|
|
|
|
setLock();
|
2023-06-01 09:10:00 +00:00
|
|
|
|
// char buf[MAX_KEY_LEN];
|
|
|
|
|
// int rst = ini_gets("config",k,"000000",buf,MAX_KEY_LEN,LJW_CFG_FILE_NAME);
|
|
|
|
|
// if(strcmp(buf, "000000") == 0) {
|
|
|
|
|
// // 采用默认值
|
|
|
|
|
int rst = ini_getl("config", k, -1, LJW_CFG_FILE_NAME);
|
|
|
|
|
if (rst == -1) {
|
2023-05-30 08:53:31 +00:00
|
|
|
|
LOG_W("no such KEY:%s",k);
|
2023-07-29 08:08:15 +00:00
|
|
|
|
clearLock();
|
2023-06-01 09:10:00 +00:00
|
|
|
|
return -RT_ERROR;
|
2023-05-30 08:53:31 +00:00
|
|
|
|
}
|
|
|
|
|
else {
|
2023-06-01 09:10:00 +00:00
|
|
|
|
// LOG_I("%s = %s",k,buf);
|
2023-06-19 07:56:45 +00:00
|
|
|
|
// LOG_I("%s = %d",k,rst);
|
2023-05-30 08:53:31 +00:00
|
|
|
|
}
|
2023-07-29 08:08:15 +00:00
|
|
|
|
clearLock();
|
2023-05-30 08:53:31 +00:00
|
|
|
|
return rst;
|
|
|
|
|
}
|
2023-06-01 02:23:08 +00:00
|
|
|
|
|
2023-07-29 08:08:15 +00:00
|
|
|
|
static void get_cfg_all(void)
|
2023-05-30 08:53:31 +00:00
|
|
|
|
{
|
2023-06-01 09:10:00 +00:00
|
|
|
|
char buf[MAX_KEY_LEN];
|
|
|
|
|
char kstr[MAX_KEY_LEN];
|
2023-06-01 02:23:08 +00:00
|
|
|
|
|
|
|
|
|
LOG_I("%23s","---CONFIG---");
|
2023-06-01 09:10:00 +00:00
|
|
|
|
for (size_t k = 0; ini_getkey("config", k, kstr, MAX_KEY_LEN, LJW_CFG_FILE_NAME) > 0; k++) {
|
|
|
|
|
int rst = ini_gets("config",kstr,"000000",buf,MAX_KEY_LEN,LJW_CFG_FILE_NAME);
|
2023-06-01 02:23:08 +00:00
|
|
|
|
LOG_I("%16s = %s",kstr,buf);
|
2023-05-30 08:53:31 +00:00
|
|
|
|
}
|
2023-06-01 02:23:08 +00:00
|
|
|
|
|
|
|
|
|
|
2023-05-30 08:53:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-06-01 02:23:08 +00:00
|
|
|
|
|
|
|
|
|
|
2023-07-29 08:08:15 +00:00
|
|
|
|
static void cfg(int argc, char ** argv)
|
2023-05-30 08:53:31 +00:00
|
|
|
|
{
|
|
|
|
|
if (argc == 1) {//无键无值,遍历
|
2023-06-01 02:23:08 +00:00
|
|
|
|
get_cfg_all();
|
2023-05-30 08:53:31 +00:00
|
|
|
|
}
|
|
|
|
|
if (argc == 2) {//有键无值,查询
|
|
|
|
|
get_cfg(argv[1]);
|
|
|
|
|
}
|
|
|
|
|
if (argc == 3) {//有键有值,设置
|
|
|
|
|
set_cfg(argv[1], argv[2]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-01 02:23:08 +00:00
|
|
|
|
static void get_sta_all(void)
|
|
|
|
|
{
|
2023-06-01 09:10:00 +00:00
|
|
|
|
char buf[MAX_KEY_LEN];
|
|
|
|
|
char kstr[MAX_KEY_LEN];
|
2023-06-01 02:23:08 +00:00
|
|
|
|
LOG_I("%23s","---STATS---");
|
2023-06-01 09:10:00 +00:00
|
|
|
|
for (size_t k = 0; ini_getkey("stats", k, kstr, MAX_KEY_LEN, LJW_CFG_FILE_NAME) > 0; k++) {
|
|
|
|
|
int rst = ini_gets("stats",kstr,"000000",buf,MAX_KEY_LEN,LJW_CFG_FILE_NAME);
|
2023-06-01 02:23:08 +00:00
|
|
|
|
LOG_I("%16s = %s",kstr,buf);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
MSH_CMD_EXPORT(cfg, config params. 配置系统参数,支持参数)
|
|
|
|
|
|
|
|
|
|
//以下针对stats
|
|
|
|
|
/**
|
2023-07-10 02:42:26 +00:00
|
|
|
|
* 读取stats节信息
|
2023-06-01 02:23:08 +00:00
|
|
|
|
* @param k
|
|
|
|
|
* return 成功返回值,错误返回RT_ERROR
|
|
|
|
|
*/
|
2023-06-02 02:23:26 +00:00
|
|
|
|
long get_val(const char *k)
|
2023-06-01 02:23:08 +00:00
|
|
|
|
{
|
2023-07-29 08:08:15 +00:00
|
|
|
|
setLock();
|
2023-06-01 02:23:08 +00:00
|
|
|
|
long v= ini_getl("stats", k, -1, LJW_CFG_FILE_NAME);
|
|
|
|
|
if( v == -1)
|
|
|
|
|
{
|
|
|
|
|
LOG_W("no such KEY:%s",k);
|
2023-07-29 08:08:15 +00:00
|
|
|
|
clearLock();
|
2023-06-01 02:23:08 +00:00
|
|
|
|
return -RT_ERROR;
|
|
|
|
|
}
|
|
|
|
|
else {
|
2023-07-29 08:08:15 +00:00
|
|
|
|
clearLock();
|
2023-06-01 02:23:08 +00:00
|
|
|
|
return v;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-02 02:23:26 +00:00
|
|
|
|
int set_val(const char *k, long v)
|
2023-06-01 02:23:08 +00:00
|
|
|
|
{
|
2023-07-29 08:08:15 +00:00
|
|
|
|
setLock();
|
2023-06-01 02:23:08 +00:00
|
|
|
|
if(!ini_putl("stats",k,v,LJW_CFG_FILE_NAME))
|
|
|
|
|
{
|
|
|
|
|
LOG_E("write %s error.",k);
|
2023-07-29 08:08:15 +00:00
|
|
|
|
clearLock();
|
2023-06-01 02:23:08 +00:00
|
|
|
|
return -RT_ERROR;
|
|
|
|
|
}
|
2023-07-29 08:08:15 +00:00
|
|
|
|
clearLock();
|
2023-06-01 02:23:08 +00:00
|
|
|
|
return RT_EOK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 更新统计值,每次自加1
|
|
|
|
|
* @param k
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
int add_val(const char *k)
|
|
|
|
|
{
|
2023-07-29 08:08:15 +00:00
|
|
|
|
// setLock();
|
2023-06-01 02:23:08 +00:00
|
|
|
|
long ori = get_val(k);
|
2023-06-19 07:56:45 +00:00
|
|
|
|
rt_thread_mdelay(100);
|
2023-06-01 02:23:08 +00:00
|
|
|
|
if (ori != -1) {
|
2023-06-20 10:09:07 +00:00
|
|
|
|
int ret = set_val(k, ori+1);
|
|
|
|
|
rt_thread_mdelay(100);
|
|
|
|
|
return ret;
|
2023-06-01 02:23:08 +00:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
return ori;
|
|
|
|
|
}
|
2023-07-29 08:08:15 +00:00
|
|
|
|
// clearLock();
|
2023-06-01 02:23:08 +00:00
|
|
|
|
}
|
|
|
|
|
static void get_sta(const char *k)
|
|
|
|
|
{
|
|
|
|
|
long v = get_val(k);
|
|
|
|
|
if (!v) {
|
|
|
|
|
LOG_I("%s = %d",k,v);
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-30 08:53:31 +00:00
|
|
|
|
|
2023-07-29 08:08:15 +00:00
|
|
|
|
static void sta(int argc, char ** argv)
|
2023-06-01 02:23:08 +00:00
|
|
|
|
{
|
|
|
|
|
if (argc == 1)
|
|
|
|
|
{ //无键无值,遍历
|
|
|
|
|
get_sta_all();
|
|
|
|
|
}
|
|
|
|
|
if (argc == 2)
|
|
|
|
|
{ //有键无值,查询
|
|
|
|
|
get_sta(argv[1]);
|
|
|
|
|
}
|
|
|
|
|
if (argc == 3)
|
|
|
|
|
{
|
|
|
|
|
LOG_W("READ ONLY.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MSH_CMD_EXPORT(sta, 查询系统统计数据)
|
|
|
|
|
|
|
|
|
|
static void clear_sta(void)
|
|
|
|
|
{
|
|
|
|
|
char buf[16];
|
|
|
|
|
char kstr[16];
|
|
|
|
|
for (size_t k = 0; ini_getkey("stats", k, kstr, 16, LJW_CFG_FILE_NAME) > 0; k++) {
|
|
|
|
|
if (rt_strcmp("swCnt",kstr) != 0) {
|
|
|
|
|
set_val(kstr, NULL);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
MSH_CMD_EXPORT_ALIAS(clear_sta,clsSta, 重置系统统计数据)
|
2023-05-30 08:53:31 +00:00
|
|
|
|
|
2023-07-29 08:08:15 +00:00
|
|
|
|
static uint8_t nislock=0;
|
|
|
|
|
static void nsetLock()
|
|
|
|
|
{
|
|
|
|
|
while(nislock)
|
|
|
|
|
{
|
|
|
|
|
rt_thread_mdelay(1000);
|
|
|
|
|
}
|
|
|
|
|
nislock=1;
|
|
|
|
|
}
|
|
|
|
|
static void nclearLock()
|
|
|
|
|
{
|
|
|
|
|
nislock=0;
|
|
|
|
|
}
|
2023-06-01 09:10:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* 添加文件到待发列表,指定待发包
|
|
|
|
|
* @param f
|
|
|
|
|
* @param v
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
int setFileToSend(const char *f, int v)
|
|
|
|
|
{
|
2023-07-29 08:08:15 +00:00
|
|
|
|
nsetLock();
|
|
|
|
|
|
|
|
|
|
int rst = ini_putl(SECTION_TO_SEND, f, v, FILE_TO_SEND);
|
2023-06-01 09:10:00 +00:00
|
|
|
|
if (!rst) {
|
|
|
|
|
LOG_E("add file to send error.");
|
2023-07-29 08:08:15 +00:00
|
|
|
|
clearLock();
|
|
|
|
|
return RT_ERROR;
|
2023-06-01 09:10:00 +00:00
|
|
|
|
}
|
2023-07-29 08:08:15 +00:00
|
|
|
|
nclearLock();
|
|
|
|
|
return RT_EOK;
|
2023-06-01 09:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* 获取待发送文件列表
|
|
|
|
|
* @param kstr 文件名
|
|
|
|
|
* @param v 对应包,默认为0即全发
|
|
|
|
|
* @return 文件个数
|
|
|
|
|
*/
|
|
|
|
|
int getFilesToSend(char (*kstr)[MAX_KEY_LEN], int *v)
|
|
|
|
|
{
|
|
|
|
|
// char buf[MAX_KEY_LEN];
|
|
|
|
|
// char kstr[MAX_KEY_LEN];
|
2023-07-29 08:08:15 +00:00
|
|
|
|
nsetLock();
|
2023-06-01 09:10:00 +00:00
|
|
|
|
size_t len=0;
|
2023-07-29 08:08:15 +00:00
|
|
|
|
for (size_t k = 0; ini_getkey(SECTION_TO_SEND, k, kstr[len], MAX_KEY_LEN, FILE_TO_SEND) > 0; k++) {
|
|
|
|
|
v[len] = ini_getl(SECTION_TO_SEND, kstr[len], -1, FILE_TO_SEND);
|
2023-06-01 09:10:00 +00:00
|
|
|
|
len +=1;
|
|
|
|
|
}
|
2023-07-29 08:08:15 +00:00
|
|
|
|
nclearLock();
|
2023-06-01 09:10:00 +00:00
|
|
|
|
return len;
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* 清空待发送文件记录
|
|
|
|
|
*/
|
|
|
|
|
int clearFileToSend(const char *k)
|
|
|
|
|
{
|
2023-07-29 08:08:15 +00:00
|
|
|
|
nsetLock();
|
|
|
|
|
int rst = ini_puts(SECTION_TO_SEND, k, NULL, FILE_TO_SEND);
|
|
|
|
|
if (!rst)
|
|
|
|
|
{
|
|
|
|
|
LOG_E("clear file to send error.");
|
|
|
|
|
}
|
|
|
|
|
nclearLock();
|
|
|
|
|
return rst;
|
2023-06-01 09:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-07-29 09:39:28 +00:00
|
|
|
|
static void gf()
|
2023-06-01 09:10:00 +00:00
|
|
|
|
{
|
|
|
|
|
int v[MAX_KEY_LEN];
|
2023-07-29 08:08:15 +00:00
|
|
|
|
char kstr[10][MAX_KEY_LEN];
|
|
|
|
|
size_t cnt = getFilesToSend(kstr, v);
|
|
|
|
|
for (size_t var = 0; var < cnt; ++var)
|
|
|
|
|
{
|
|
|
|
|
LOG_I("%s -- %d", kstr[var], v[var]);
|
2023-06-01 09:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-07-29 09:39:28 +00:00
|
|
|
|
static void add(int argc, char **argv)
|
2023-06-01 09:10:00 +00:00
|
|
|
|
{
|
|
|
|
|
setFileToSend(argv[1],atoi(argv[2]));
|
|
|
|
|
gf();
|
|
|
|
|
clearFileToSend(argv[1]);
|
|
|
|
|
gf();
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-29 08:08:15 +00:00
|
|
|
|
|
|
|
|
|
void addToList_thread_entry(void *parameter)
|
|
|
|
|
{
|
|
|
|
|
FILE_INFO msg;
|
|
|
|
|
while(1)
|
|
|
|
|
{
|
|
|
|
|
rt_memset(&msg, 0, sizeof(msg));
|
|
|
|
|
if (rt_mq_recv(&upfilelist, &msg, sizeof(msg), RT_WAITING_FOREVER) == RT_EOK) {
|
|
|
|
|
LOG_D("get %s",msg.msg);
|
|
|
|
|
setFileToSend(msg.msg,msg.index);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void postFileInfo(const char *fin, uint8_t index)
|
|
|
|
|
{
|
|
|
|
|
// setFileToSend(fin,0);
|
|
|
|
|
FILE_INFO msg;
|
|
|
|
|
strcpy(msg.msg,fin);
|
|
|
|
|
msg.index=index;
|
|
|
|
|
rt_mq_send(&upfilelist, &msg, sizeof(msg));
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-29 09:39:28 +00:00
|
|
|
|
int updateLstFile(const char *fin)
|
|
|
|
|
{
|
|
|
|
|
nsetLock();
|
|
|
|
|
|
|
|
|
|
int rst = ini_puts(SECTION_LST_FILE, "lst", fin, FILE_TO_SEND);
|
|
|
|
|
if (!rst) {
|
|
|
|
|
LOG_E("update lst file error.");
|
|
|
|
|
nclearLock();
|
|
|
|
|
return RT_ERROR;
|
|
|
|
|
}
|
|
|
|
|
nclearLock();
|
|
|
|
|
return RT_EOK;
|
|
|
|
|
}
|
2023-07-29 08:08:15 +00:00
|
|
|
|
|
2023-07-29 09:39:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* 获取最后缓存文件
|
|
|
|
|
* @param k
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
int getLstFile(const char *k)
|
|
|
|
|
{
|
|
|
|
|
nsetLock();
|
|
|
|
|
char tmp[60];
|
|
|
|
|
int rst = ini_gets(SECTION_LST_FILE, "lst", "000",tmp,60, FILE_TO_SEND);
|
|
|
|
|
if (rst == 3) {
|
|
|
|
|
rst=0;
|
|
|
|
|
}
|
|
|
|
|
strcpy(k,tmp);
|
|
|
|
|
nclearLock();
|
|
|
|
|
return rst;
|
|
|
|
|
}
|
2023-07-29 08:08:15 +00:00
|
|
|
|
|
|
|
|
|
|
2023-06-01 09:10:00 +00:00
|
|
|
|
MSH_CMD_EXPORT(gf, 查看待发送文件列表)
|
2023-07-29 08:08:15 +00:00
|
|
|
|
MSH_CMD_EXPORT_ALIAS(add, cf,查看待发送文件列表)
|
2023-06-01 09:10:00 +00:00
|
|
|
|
|
2023-06-01 02:23:08 +00:00
|
|
|
|
//set_if()
|
2023-05-29 12:49:30 +00:00
|
|
|
|
#endif
|