|
@@ -4,7 +4,7 @@
|
|
|
* @Autor: lishengyin
|
|
|
* @Date: 2021-10-13 09:35:42
|
|
|
* @LastEditors: lishengyin
|
|
|
- * @LastEditTime: 2022-01-12 11:31:45
|
|
|
+ * @LastEditTime: 2022-01-13 10:13:53
|
|
|
*/
|
|
|
#include "user_app.h"
|
|
|
|
|
@@ -13,6 +13,8 @@ struct timespec time1 = {0, 0};
|
|
|
struct timespec time2 = {0, 0};
|
|
|
struct timespec time3 = {0, 0};
|
|
|
|
|
|
+bool outState = false;
|
|
|
+
|
|
|
namespace MIVA
|
|
|
{
|
|
|
/**
|
|
@@ -96,7 +98,7 @@ namespace MIVA
|
|
|
this->m_monitor = monitor::CreateNew();
|
|
|
this->m_deviceState = deviceState::CreateNew();
|
|
|
this->m_manager = Manager::CreateNew();
|
|
|
-
|
|
|
+ this->m_deviceState->getDeviceState();
|
|
|
// 查询基础配置
|
|
|
SqlWriter sqlSelectConfig("SELECT account,outType,outPath,outEnable,ClearType,recordMax,validTime,MemoryThreshold,TempThreshold,FdThreshold FROM MIVA_DB.`MivaConfig`");
|
|
|
sqlSelectConfig << sqlRet;
|
|
@@ -198,7 +200,7 @@ namespace MIVA
|
|
|
this->ListenInferPer();
|
|
|
});
|
|
|
|
|
|
- InfoL << "System initialization is successful!";
|
|
|
+ InfoL << "System initialization is successful!" << endl;
|
|
|
return OK;
|
|
|
}
|
|
|
|
|
@@ -210,14 +212,18 @@ namespace MIVA
|
|
|
*/
|
|
|
void UserApp::Destroy()
|
|
|
{
|
|
|
- InfoL << "System exited successfully!";
|
|
|
- this->m_timer0 = nullptr;
|
|
|
- this->m_timer1 = nullptr;
|
|
|
- this->m_timer2 = nullptr;
|
|
|
- this->m_udpClient = nullptr;
|
|
|
- this->m_tcpClient = nullptr;
|
|
|
- this->m_Infer = nullptr;
|
|
|
- this->m_monitor = nullptr;
|
|
|
+ InfoL << "System exited successfully!" << endl;
|
|
|
+ this->m_Infer.reset();
|
|
|
+ this->m_monitor.reset();
|
|
|
+ this->m_timer0.reset();
|
|
|
+ this->m_timer1.reset();
|
|
|
+ this->m_timer2.reset();
|
|
|
+ this->m_timer3.reset();
|
|
|
+ this->m_timer4.reset();
|
|
|
+ this->m_timer5.reset();
|
|
|
+ this->m_timer6.reset();
|
|
|
+ this->m_udpClient.reset();
|
|
|
+ this->m_tcpClient.reset();
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -267,6 +273,25 @@ namespace MIVA
|
|
|
return true;
|
|
|
},nullptr);
|
|
|
|
|
|
+ /**
|
|
|
+ * @description: 监听设备数据
|
|
|
+ * @param {*}
|
|
|
+ * @return {*}
|
|
|
+ */
|
|
|
+ this->m_timer6 = std::make_shared<Timer>(2.0f,[&](){
|
|
|
+ // 设备数据
|
|
|
+ char ctime[80];
|
|
|
+ getDataTime(ctime);
|
|
|
+ std::string Ctime = ctime;
|
|
|
+ this->m_deviceState->getDeviceState();
|
|
|
+ this->m_deviceState->SyncDeviceState(Ctime);
|
|
|
+ if(this->m_manager->getSyncFdThresholdPower() == OK){
|
|
|
+ this->m_deviceState->SyncFdThreshold((int)this->m_InferInfo->DataSources.size(), outState);
|
|
|
+ }
|
|
|
+ if(this->m_manager->getClearPower() == OK && this->m_Infer->Play == false) this->m_Infer->CheckTask();
|
|
|
+ return true;
|
|
|
+ },nullptr);
|
|
|
+
|
|
|
// 记录时间
|
|
|
clock_gettime(CLOCK_BOOTTIME, &time1);
|
|
|
InfoL << "Task started successfully!" << endl;
|
|
@@ -305,6 +330,7 @@ namespace MIVA
|
|
|
this->ListenInferData();
|
|
|
this->m_Infer->Recorder();
|
|
|
this->m_Infer->StopTask();
|
|
|
+ outState = false;
|
|
|
// 清除历史
|
|
|
if(m_recorder->RecordEnable) this->m_Cleaner->ClearHistory();
|
|
|
}
|
|
@@ -513,7 +539,9 @@ namespace MIVA
|
|
|
{
|
|
|
// 广播收到关门的信号
|
|
|
if(this->m_manager->getStartPower() == OK) this->ListenClosed();
|
|
|
- else WarnL << "推理未结束或内存所剩不足或资源未释放完全" << endl;
|
|
|
+ else{
|
|
|
+ WarnL << "推理未结束或内存所剩不足或资源未释放完全" << endl;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -560,11 +588,7 @@ namespace MIVA
|
|
|
char ctime[80];
|
|
|
getDataTime(ctime);
|
|
|
std::string Ctime = ctime;
|
|
|
- // 设备数据
|
|
|
- this->m_deviceState->getDeviceState();
|
|
|
- this->m_deviceState->SyncDeviceState(Ctime);
|
|
|
- if(this->m_manager->getSyncFdThresholdPower() == OK) this->m_deviceState->SyncFdThreshold((int)this->m_InferInfo->DataSources.size());
|
|
|
-
|
|
|
+
|
|
|
SqlWriter sqlSelectConfig("SELECT account,outType,outPath,outEnable,ClearType,recordMax,validTime,MemoryThreshold,TempThreshold,FdThreshold FROM MIVA_DB.`MivaConfig`");
|
|
|
sqlSelectConfig << sqlRet;
|
|
|
for(auto &line : sqlRet)
|
|
@@ -572,6 +596,8 @@ namespace MIVA
|
|
|
this->account = line[0];
|
|
|
this->m_recorder->outType = std::atoi(line[1].c_str());
|
|
|
this->m_recorder->Dir = line[2];
|
|
|
+ if(this->m_recorder->RecordEnable != std::atoi(line[3].c_str()) ? true:false) outState = true;
|
|
|
+ if(this->m_Cleaner->ClearType != std::atoi(line[4].c_str())) outState = true;
|
|
|
this->m_recorder->RecordEnable = std::atoi(line[3].c_str()) ? true:false;
|
|
|
this->m_Cleaner->ClearType = std::atoi(line[4].c_str());
|
|
|
this->m_Cleaner->recordMax = std::atoi(line[5].c_str());
|
|
@@ -702,15 +728,14 @@ namespace MIVA
|
|
|
sqlUpdata << sqlRet;
|
|
|
if(m_Infer->StartTask() == OK){
|
|
|
this->start = true;
|
|
|
+ if(this->m_timer5 != nullptr) this->m_timer5.reset();
|
|
|
// 超时处理
|
|
|
this->m_timer5 = std::make_shared<Timer>(30.0f,[&](){
|
|
|
- if(this->m_Infer->Play){
|
|
|
- this->ListenInferPer();
|
|
|
- WarnL << "推理时间过长。。。。。。。。" << endl;
|
|
|
+ if(this->m_manager->getClearPower() == OK){
|
|
|
+ if(this->m_Infer->Play) this->ListenInferPer();
|
|
|
+ this->m_Infer->CheckTask();
|
|
|
+ WarnL << "此次推理时间过长" << endl;
|
|
|
}
|
|
|
- this->m_Infer->CheckTask();
|
|
|
- WarnL << "推理超时定时器" << endl;
|
|
|
-
|
|
|
return false;
|
|
|
},nullptr);
|
|
|
}
|
|
@@ -808,7 +833,6 @@ namespace MIVA
|
|
|
{
|
|
|
uint32_t result = 0;
|
|
|
|
|
|
-
|
|
|
return num;
|
|
|
}
|
|
|
|