|
@@ -4,7 +4,7 @@
|
|
* @Autor: lishengyin
|
|
* @Autor: lishengyin
|
|
* @Date: 2021-10-13 09:35:42
|
|
* @Date: 2021-10-13 09:35:42
|
|
* @LastEditors: lishengyin
|
|
* @LastEditors: lishengyin
|
|
- * @LastEditTime: 2021-12-27 13:53:09
|
|
|
|
|
|
+ * @LastEditTime: 2021-12-29 17:09:54
|
|
*/
|
|
*/
|
|
#include "user_app.h"
|
|
#include "user_app.h"
|
|
|
|
|
|
@@ -109,10 +109,11 @@ namespace MIVA
|
|
|
|
|
|
sqlUpdata << sqlRet;
|
|
sqlUpdata << sqlRet;
|
|
// 查询需要播放的流
|
|
// 查询需要播放的流
|
|
- SqlWriter sqlSelect("SELECT Id,Uri,RecognitionRange FROM MIVA_DB.`DataSources` WHERE Play = 1 and Del = 0");
|
|
|
|
|
|
+ SqlWriter sqlSelect("SELECT Id,Uri,RecognitionRange,PId FROM MIVA_DB.`DataSources` WHERE Play = 1 and Del = 0");
|
|
sqlSelect << sqlRet;
|
|
sqlSelect << sqlRet;
|
|
|
|
|
|
- this->m_InferInfo = std::make_shared<InferInfo>();
|
|
|
|
|
|
+ this->m_InferInfo = InferInfo::CreateNew();
|
|
|
|
+
|
|
if(!sqlRet.empty()){
|
|
if(!sqlRet.empty()){
|
|
int sourceId = 0;
|
|
int sourceId = 0;
|
|
for(auto &line : sqlRet){
|
|
for(auto &line : sqlRet){
|
|
@@ -120,8 +121,10 @@ namespace MIVA
|
|
data.Id = std::atoi(line[0].c_str());
|
|
data.Id = std::atoi(line[0].c_str());
|
|
data.uri = line[1];
|
|
data.uri = line[1];
|
|
data.range = line[2];
|
|
data.range = line[2];
|
|
|
|
+ data.Pid = line[3];
|
|
data.Play = true;
|
|
data.Play = true;
|
|
data.sourceId = sourceId;
|
|
data.sourceId = sourceId;
|
|
|
|
+ data.AddrNum = GetAddrNum(data.Pid);
|
|
this->m_InferInfo->DataSources.push_back(data);
|
|
this->m_InferInfo->DataSources.push_back(data);
|
|
sourceId++;
|
|
sourceId++;
|
|
}
|
|
}
|
|
@@ -131,7 +134,7 @@ namespace MIVA
|
|
ErrorL << "Inference module creation failed!";
|
|
ErrorL << "Inference module creation failed!";
|
|
return ERR;
|
|
return ERR;
|
|
}
|
|
}
|
|
- if(m_Infer->Init(this->m_InferInfo) != OK){
|
|
|
|
|
|
+ if(m_Infer->Init() != OK){
|
|
ErrorL << "Inference module initialization failed";
|
|
ErrorL << "Inference module initialization failed";
|
|
return ERR;
|
|
return ERR;
|
|
}
|
|
}
|
|
@@ -243,7 +246,7 @@ namespace MIVA
|
|
// 定时监控数据变化
|
|
// 定时监控数据变化
|
|
this->m_timer4 = std::make_shared<Timer>(3.0f,[&](){
|
|
this->m_timer4 = std::make_shared<Timer>(3.0f,[&](){
|
|
// 监听数据
|
|
// 监听数据
|
|
- if(this->play == false) this->MonitorData();
|
|
|
|
|
|
+ // if(this->play == false) this->MonitorData();
|
|
return true;
|
|
return true;
|
|
},nullptr);
|
|
},nullptr);
|
|
|
|
|
|
@@ -283,6 +286,18 @@ namespace MIVA
|
|
NoticeCenter::Instance().emitEvent(NOTICE_INFERDATA);
|
|
NoticeCenter::Instance().emitEvent(NOTICE_INFERDATA);
|
|
this->start = false;
|
|
this->start = false;
|
|
}
|
|
}
|
|
|
|
+ // if(!this->enable) return;
|
|
|
|
+ // this->enable = false;
|
|
|
|
+ // this->m_timer6 = std::make_shared<Timer>(3.0f,[&](){
|
|
|
|
+ // if(this->start == true){
|
|
|
|
+ // this->m_Infer->StopTask();
|
|
|
|
+ // // 推理结束发布InferData事件
|
|
|
|
+ // NoticeCenter::Instance().emitEvent(NOTICE_INFERDATA);
|
|
|
|
+ // this->start = false;
|
|
|
|
+ // this->enable = true;
|
|
|
|
+ // }
|
|
|
|
+ // return false;
|
|
|
|
+ // },nullptr);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -530,7 +545,7 @@ namespace MIVA
|
|
vector<DataSource>::iterator iter;
|
|
vector<DataSource>::iterator iter;
|
|
|
|
|
|
if(this->m_Infer == NULL || this->m_InferInfo->DataSources.empty()){
|
|
if(this->m_Infer == NULL || this->m_InferInfo->DataSources.empty()){
|
|
- SqlWriter sqlSelect("SELECT Id,Uri,RecognitionRange FROM MIVA_DB.`DataSources` WHERE Play = 1 and Del = 0");
|
|
|
|
|
|
+ SqlWriter sqlSelect("SELECT Id,Uri,RecognitionRange,PId FROM MIVA_DB.`DataSources` WHERE Play = 1 and Del = 0");
|
|
sqlSelect << sqlRet;
|
|
sqlSelect << sqlRet;
|
|
if(sqlRet.empty()) return;
|
|
if(sqlRet.empty()) return;
|
|
int sourceId = 0;
|
|
int sourceId = 0;
|
|
@@ -539,6 +554,8 @@ namespace MIVA
|
|
data.Id = std::atoi(line[0].c_str());
|
|
data.Id = std::atoi(line[0].c_str());
|
|
data.uri = line[1];
|
|
data.uri = line[1];
|
|
data.range = line[2];
|
|
data.range = line[2];
|
|
|
|
+ data.Pid = line[3];
|
|
|
|
+ data.AddrNum = GetAddrNum(data.Pid);
|
|
data.Play = true;
|
|
data.Play = true;
|
|
data.sourceId = sourceId;
|
|
data.sourceId = sourceId;
|
|
this->m_InferInfo->DataSources.push_back(data);
|
|
this->m_InferInfo->DataSources.push_back(data);
|
|
@@ -552,7 +569,7 @@ namespace MIVA
|
|
ErrorL << "Inference module creation failed!";
|
|
ErrorL << "Inference module creation failed!";
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
- if(this->m_Infer->Init(this->m_InferInfo) != OK){
|
|
|
|
|
|
+ if(this->m_Infer->Init() != OK){
|
|
ErrorL << "Inference module initialization failed";
|
|
ErrorL << "Inference module initialization failed";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -560,7 +577,7 @@ namespace MIVA
|
|
}
|
|
}
|
|
if(this->m_InferInfo->DataSources.empty()) return;
|
|
if(this->m_InferInfo->DataSources.empty()) return;
|
|
// 查询
|
|
// 查询
|
|
- std::string sql = "SELECT Id,Uri,RecognitionRange,Play FROM MIVA_DB.`DataSources` WHERE Del = 0";
|
|
|
|
|
|
+ std::string sql = "SELECT Id,Uri,RecognitionRange,Play,PId FROM MIVA_DB.`DataSources` WHERE Del = 0";
|
|
SqlWriter sqlSelect(sql.c_str());
|
|
SqlWriter sqlSelect(sql.c_str());
|
|
sqlSelect << sqlRet;
|
|
sqlSelect << sqlRet;
|
|
if(!sqlRet.empty()){
|
|
if(!sqlRet.empty()){
|
|
@@ -588,6 +605,8 @@ namespace MIVA
|
|
this->m_InferInfo->DataSources[i].uri = line[1];
|
|
this->m_InferInfo->DataSources[i].uri = line[1];
|
|
this->m_InferInfo->DataSources[i].range = line[2];
|
|
this->m_InferInfo->DataSources[i].range = line[2];
|
|
this->m_InferInfo->DataSources[i].Play = atoi(line[3].c_str()) ? true:false;
|
|
this->m_InferInfo->DataSources[i].Play = atoi(line[3].c_str()) ? true:false;
|
|
|
|
+ this->m_InferInfo->DataSources[i].Pid = line[4];
|
|
|
|
+ this->m_InferInfo->DataSources[i].AddrNum = GetAddrNum(line[4]);
|
|
i++;
|
|
i++;
|
|
}
|
|
}
|
|
if(size > (int)sqlRet.size()){
|
|
if(size > (int)sqlRet.size()){
|
|
@@ -614,6 +633,7 @@ namespace MIVA
|
|
this->m_Infer->add_sources(i,sqlRet[i][1]);
|
|
this->m_Infer->add_sources(i,sqlRet[i][1]);
|
|
}
|
|
}
|
|
}else{
|
|
}else{
|
|
|
|
+ ErrorL;
|
|
this->m_Infer->stop_release_source(i);
|
|
this->m_Infer->stop_release_source(i);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -621,6 +641,8 @@ namespace MIVA
|
|
this->m_InferInfo->DataSources[i].uri = sqlRet[i][1];
|
|
this->m_InferInfo->DataSources[i].uri = sqlRet[i][1];
|
|
this->m_InferInfo->DataSources[i].range = sqlRet[i][2];
|
|
this->m_InferInfo->DataSources[i].range = sqlRet[i][2];
|
|
this->m_InferInfo->DataSources[i].Play = atoi(sqlRet[i][3].c_str()) ? true:false;
|
|
this->m_InferInfo->DataSources[i].Play = atoi(sqlRet[i][3].c_str()) ? true:false;
|
|
|
|
+ this->m_InferInfo->DataSources[i].Pid = sqlRet[i][4];
|
|
|
|
+ this->m_InferInfo->DataSources[i].AddrNum = GetAddrNum(sqlRet[i][4]);
|
|
}
|
|
}
|
|
for(i = size; i < (int)sqlRet.size(); i++)
|
|
for(i = size; i < (int)sqlRet.size(); i++)
|
|
{
|
|
{
|
|
@@ -630,9 +652,11 @@ namespace MIVA
|
|
data.range = sqlRet[i][2];
|
|
data.range = sqlRet[i][2];
|
|
data.Play = atoi(sqlRet[i][3].c_str()) ? true:false;
|
|
data.Play = atoi(sqlRet[i][3].c_str()) ? true:false;
|
|
data.sourceId = i;
|
|
data.sourceId = i;
|
|
|
|
+ data.Pid = sqlRet[i][4];
|
|
|
|
+ data.AddrNum = GetAddrNum(data.Pid);
|
|
this->m_InferInfo->DataSources.push_back(data);
|
|
this->m_InferInfo->DataSources.push_back(data);
|
|
if(data.Play){
|
|
if(data.Play){
|
|
- DebugL << "Id" << i << ",Url:" << data.uri << endl;
|
|
|
|
|
|
+ DebugL << "Id:" << i << ",Url:" << data.uri << endl;
|
|
this->m_Infer->add_sources(i, data.uri);
|
|
this->m_Infer->add_sources(i, data.uri);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -778,6 +802,13 @@ namespace MIVA
|
|
return num;
|
|
return num;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ int UserApp::GetAddrNum(std::string Pid){
|
|
|
|
+ vector<vector<string>> sqlRet;
|
|
|
|
+ SqlWriter sqlSelect("SELECT * FROM MIVA_DB.`DataSources` WHERE Play = 1 and Del=0 and Pid='?'");
|
|
|
|
+ sqlSelect << Pid << sqlRet;
|
|
|
|
+ return (int)sqlRet.size();
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* @description: 拥挤程度判定
|
|
* @description: 拥挤程度判定
|
|
* @param {int} num 最终结果
|
|
* @param {int} num 最终结果
|