|
@@ -1,3 +1,11 @@
|
|
|
+/*
|
|
|
+ * @Description: USERAPP
|
|
|
+ * @Version: 1.0
|
|
|
+ * @Autor: lishengyin
|
|
|
+ * @Date: 2021-10-13 09:35:42
|
|
|
+ * @LastEditors: lishengyin
|
|
|
+ * @LastEditTime: 2021-10-13 09:47:30
|
|
|
+ */
|
|
|
#include "user_app.h"
|
|
|
|
|
|
|
|
@@ -8,20 +16,29 @@ struct timespec time3 = {0, 0};
|
|
|
namespace MIVA
|
|
|
{
|
|
|
ThreadPool poolInfer(6,ThreadPool::PRIORITY_HIGHEST, false);
|
|
|
-
|
|
|
+ /**
|
|
|
+ * @description: 创建对象
|
|
|
+ * @param {*}
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
std::shared_ptr<UserApp> UserApp::CreateNew(){
|
|
|
return std::make_shared<UserApp>();
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
UserApp::UserApp(){
|
|
|
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
UserApp::~UserApp(){
|
|
|
Destroy();
|
|
|
}
|
|
|
-
|
|
|
- // APP初始化
|
|
|
+ /**
|
|
|
+ * @description: 初始化
|
|
|
+ * @param {string} appName
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
int32_t UserApp::Init(std::string appName)
|
|
|
{
|
|
|
//设置日志
|
|
@@ -80,9 +97,11 @@ namespace MIVA
|
|
|
// UDP绑定端口
|
|
|
this->m_udpClient = Socket::createSocket();
|
|
|
this->m_udpClient->bindUdpSock(this->PIS_port);
|
|
|
-
|
|
|
- vector<vector<string>> sqlRet;
|
|
|
- // 清洗旧数据
|
|
|
+
|
|
|
+ vector<vector<string>> sqlRet;
|
|
|
+ // 清洗旧数据
|
|
|
+ SqlWriter sqlTruncate("truncate table MIVA_DB.InferTime");
|
|
|
+ sqlTruncate << sqlRet;
|
|
|
SqlWriter sqlUpdata("UPDATE MIVA_DB.DataSources SET Num=0");
|
|
|
sqlUpdata << sqlRet;
|
|
|
// 查询需要播放的流
|
|
@@ -139,12 +158,23 @@ namespace MIVA
|
|
|
return OK;
|
|
|
}
|
|
|
|
|
|
- // 销毁对象
|
|
|
+ /**
|
|
|
+ * @description: 释放数据
|
|
|
+ * @param {*}
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
void UserApp::Destroy()
|
|
|
{
|
|
|
InfoL << "System exited successfully!";
|
|
|
+ this->m_Infer->Destory();
|
|
|
}
|
|
|
- // 启动任务
|
|
|
+ /**
|
|
|
+ * @description: 启动任务
|
|
|
+ * @param {*}
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
void UserApp::StartTask()
|
|
|
{
|
|
|
// 挂起任务一
|
|
@@ -175,7 +205,13 @@ namespace MIVA
|
|
|
InfoL << "Task started successfully!";
|
|
|
}
|
|
|
|
|
|
- // 监听推理广播
|
|
|
+ /**
|
|
|
+ * @description: 监听推理广播
|
|
|
+ * @param {int} Source_id
|
|
|
+ * @param {int} num
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
void UserApp::ListenInfer(int Source_id, int num)
|
|
|
{
|
|
|
if(this->start == true){
|
|
@@ -195,21 +231,36 @@ namespace MIVA
|
|
|
int id = this->DataList[Source_id].Id;
|
|
|
SqlWriter updataSql("UPDATE MIVA_DB.DataSources SET Num = '?',DataTime = '?' WHERE Id = '?';");
|
|
|
updataSql << num << ctime << id << sqlRet;
|
|
|
- }
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @description: 监听推理模块的动态释放信号
|
|
|
+ * @param {*}
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
void UserApp::ListenRelease()
|
|
|
{
|
|
|
this->play = false;
|
|
|
clock_gettime(CLOCK_BOOTTIME, &time3);
|
|
|
WarnL << "释放资源成功,全部所用时间:" << (time3.tv_sec - time1.tv_sec) *1000 + (time3.tv_nsec - time1.tv_nsec)/1000000 << " ms";
|
|
|
}
|
|
|
- // 连接Netty
|
|
|
+ /**
|
|
|
+ * @description: 连接Netty
|
|
|
+ * @param {*}
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
void UserApp::ConnectNetty()
|
|
|
{
|
|
|
if(this->m_tcpClient == NULL) this->m_tcpClient = TCPClient::Ptr(new TCPClient());
|
|
|
this->m_tcpClient->startConnect(this->Netty_ip, this->Netty_port);
|
|
|
}
|
|
|
-
|
|
|
- // 上报识别结果
|
|
|
+ /**
|
|
|
+ * @description: 上报识别结果
|
|
|
+ * @param {*}
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
void UserApp::ReportData()
|
|
|
{
|
|
|
// 查询数据
|
|
@@ -247,7 +298,12 @@ namespace MIVA
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- // 处理Netty的数据
|
|
|
+ /**
|
|
|
+ * @description: 处理Netty下发的数据
|
|
|
+ * @param {Ptr} &pBuf
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
void UserApp::ListenNettyData(const Buffer::Ptr &pBuf)
|
|
|
{
|
|
|
// 对Netty端的接口
|
|
@@ -255,7 +311,13 @@ namespace MIVA
|
|
|
|
|
|
|
|
|
}
|
|
|
- // 处理PIS系统的数据
|
|
|
+ /**
|
|
|
+ * @description: 处理PIS系统的数据
|
|
|
+ * @param {Ptr} &buf
|
|
|
+ * @param {sockaddr} *addr
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
void UserApp::ListenPISData(const Buffer::Ptr &buf, struct sockaddr *addr)
|
|
|
{
|
|
|
static int8_t num = 0;
|
|
@@ -292,7 +354,14 @@ namespace MIVA
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- //赋值struct sockaddr
|
|
|
+ /**
|
|
|
+ * @description: 赋值struct sockaddr
|
|
|
+ * @param {sockaddr} *out
|
|
|
+ * @param {char} *ip
|
|
|
+ * @param {uint16_t} port
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
void UserApp::makeAddr(struct sockaddr *out,const char *ip,uint16_t port){
|
|
|
struct sockaddr_in &servaddr = *((struct sockaddr_in *)out);
|
|
|
servaddr.sin_family = AF_INET;
|
|
@@ -300,7 +369,12 @@ namespace MIVA
|
|
|
servaddr.sin_addr.s_addr = inet_addr(ip);
|
|
|
bzero(&(servaddr.sin_zero), sizeof servaddr.sin_zero);
|
|
|
}
|
|
|
- //监听关门信号
|
|
|
+ /**
|
|
|
+ * @description: 监听关门信号
|
|
|
+ * @param {*}
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
void UserApp::ListenClosed()
|
|
|
{
|
|
|
if(this->play == false){
|
|
@@ -310,7 +384,12 @@ namespace MIVA
|
|
|
this->start = true;
|
|
|
}
|
|
|
}
|
|
|
- // 监听推理数据
|
|
|
+ /**
|
|
|
+ * @description: 监听推理数据
|
|
|
+ * @param {*}
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
void UserApp::ListenInferData()
|
|
|
{
|
|
|
// 监听推理结束
|
|
@@ -361,9 +440,26 @@ namespace MIVA
|
|
|
}
|
|
|
clock_gettime(CLOCK_BOOTTIME, &time2);
|
|
|
WarnL << "推理所用时间: " << (time2.tv_sec - time1.tv_sec) *1000 + (time2.tv_nsec - time1.tv_nsec)/1000000 << " ms";
|
|
|
+
|
|
|
+ static int num = 0;
|
|
|
+ if(num==0){
|
|
|
+ num++;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ SqlWriter sqlInstall("INSERT INTO MIVA_DB.InferTime(time,InferTime) VALUES('?','?');");
|
|
|
+ char ctime[80];
|
|
|
+ getDataTime(ctime);
|
|
|
+ sqlInstall << ctime << (time2.tv_sec - time1.tv_sec) *1000 + (time2.tv_nsec - time1.tv_nsec)/1000000 << sqlRet;
|
|
|
}
|
|
|
|
|
|
- // 数据计算
|
|
|
+ /**
|
|
|
+ * @description: 数据综合计算
|
|
|
+ * @param {uint32_t} noLoad
|
|
|
+ * @param {uint32_t} dynamicLoad
|
|
|
+ * @param {int} num
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
uint32_t UserApp::DataCalculation(uint32_t noLoad, uint32_t dynamicLoad, int num)
|
|
|
{
|
|
|
uint32_t result = 0;
|
|
@@ -371,8 +467,12 @@ namespace MIVA
|
|
|
|
|
|
return result;
|
|
|
}
|
|
|
-
|
|
|
- // 拥挤度等级判定
|
|
|
+ /**
|
|
|
+ * @description: 拥挤程度判定
|
|
|
+ * @param {int} num
|
|
|
+ * @return {*}
|
|
|
+ * @author: lishengyin
|
|
|
+ */
|
|
|
uint8_t UserApp::GradeDetermination(int num)
|
|
|
{
|
|
|
// 等级1 - 4
|