当前位置:网站首页>电子产品量产工具(5)- 页面系统实现
电子产品量产工具(5)- 页面系统实现
2022-08-05 05:16:00 【乛 乛 .】
电子产品量产工具
5 页面系统设计
5.1 页面系统头文件page_manager.h
在头文件中构建页面结构体
5.1.1 页面结构体PageAction
typedef struct PageAction {
char *name; /*页面名*/
void (*Run)(void *pParams); /*页面运行函数*/
struct PageAction *ptNext; /*指向下一个页面*/
}PageAction, *PPageAction;
5.1.2 page_manager.h完整代码
#ifndef _PAGE_MANAGER_H
#define _PAGE_MANAGER_H
typedef struct PageAction {
char *name;
void (*Run)(void *pParams);
struct PageAction *ptNext;
}PageAction, *PPageAction;
void PageRegister(PPageAction ptPageAction);
void PagesRegister(void);
PPageAction Page(char *name);
#endif
5.2 页面管理page_manager.c
5.2.1 页面注册函数PageAction
static PPageAction g_ptPages = NULL;
void PageRegister(PPageAction ptPageAction) /*将页面注册进链表*/
{
ptPageAction->ptNext = g_ptPages;
g_ptPages = ptPageAction;
}
void PagesRegister(void) /*注册多个页面*/
{
extern void MainPageRegister(void);
MainPageRegister();
}
5.2.2 页面获取函数Page
根据页面名找到指定页面
PPageAction Page(char *name)
{
PPageAction ptTmp = g_ptPages;
while (ptTmp)
{
if (strcmp(name, ptTmp->name) == 0)
return ptTmp;
ptTmp = ptTmp->ptNext;
}
return NULL;
}
5.2.3 page_manager.c完整代码
#include <common.h>
#include <page_manager.h>
#include <string.h>
static PPageAction g_ptPages = NULL;
void PageRegister(PPageAction ptPageAction)
{
ptPageAction->ptNext = g_ptPages;
g_ptPages = ptPageAction;
}
PPageAction Page(char *name)
{
PPageAction ptTmp = g_ptPages;
while (ptTmp)
{
if (strcmp(name, ptTmp->name) == 0)
return ptTmp;
ptTmp = ptTmp->ptNext;
}
return NULL;
}
void PagesRegister(void)
{
extern void MainPageRegister(void);
MainPageRegister();
}
5.3 测试程序page_test.c
5.3.1 page_test.c
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <linux/fb.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <sys/ioctl.h>
#include <stdlib.h>
#include <page_manager.h>
int main(int argc, char **argv)
{
PagesRegister();
Page("main")->Run(NULL);
return 0;
}
5.3.2 main_page.c
#include <page_manager.h>
#include <stdio.h>
static void MainPageRun(void *pParams)
{
printf("%s %s %d\n", __FILE__, __FUNCTION__, __LINE__);
}
static PageAction g_tMainPage = {
.name = "main",
.Run = MainPageRun,
};
void MainPageRegister(void)
{
PageRegister(&g_tMainPage);
}
边栏推荐
- Tensorflow踩坑笔记,记录各种报错和解决方法
- 【论文精读】ROC和PR曲线的关系(The relationship between Precision-Recall and ROC curves)
- 如何组织一场安全、可靠、高效的网络实战攻防演习?
- 网工必用神器:网络排查工具MTR
- SSL 证书签发详细攻略
- [Database and SQL study notes] 10. (T-SQL language) functions, stored procedures, triggers
- Detailed explanation of BroadCast Receiver (broadcast)
- LeetCode刷题之第74题
- 六步搞定子网划分
- 读论文-Cycle GAN
猜你喜欢
随机推荐
三、自动配置源码分析
用GAN的方法来进行图片匹配!休斯顿大学提出用于文本图像匹配的对抗表示学习,消除模态差异!
【Over 15】A week of learning lstm
全尺度表示的上下文非局部对齐
PID详解
Redis集群(docker版)——从原理到实战超详细
AIDL详解
【Pytorch学习笔记】11.取Dataset的子集、给Dataset打乱顺序的方法(使用Subset、random_split)
LeetCode刷题之第61题
LeetCode刷题之第746题
【shell编程】第三章:函数
dataframe 常用操作
[Intensive reading of the paper] R-CNN's Bounding box regression problem is detailed
Tensorflow steps on the pit notes and records various errors and solutions
2021电赛资源及经验总结
六步搞定子网划分
[Pytorch study notes] 11. Take a subset of the Dataset and shuffle the order of the Dataset (using Subset, random_split)
四、Web场景之静态资源配置原理
[Database and SQL study notes] 10. (T-SQL language) functions, stored procedures, triggers
关于使用QML的MediaPlayer实现视频和音频的播放时遇到的一些坑