Przeglądaj źródła

修复资源释放不成功导致程序异常的Bug

lishengyin 3 lat temu
rodzic
commit
85881d1b08

+ 0 - 1
modules/inference/src/inference.cpp

@@ -227,7 +227,6 @@ namespace MIVA{
                 sourceId++;
             }
             NoticeCenter::Instance().emitEvent(NOTICE_RELEASE);
-            WarnL << "释放资源成功";
         });
         pool.start();
     }

+ 12 - 2
modules/userApp/src/user_app.cpp

@@ -1,5 +1,10 @@
 #include "user_app.h"
 
+
+struct timespec time1 = {0, 0};
+struct timespec time2 = {0, 0};
+struct timespec time3 = {0, 0};
+
 namespace MIVA
 {  
     ThreadPool poolInfer(6,ThreadPool::PRIORITY_HIGHEST, false);
@@ -174,8 +179,8 @@ namespace MIVA
     void UserApp::ListenInfer(int Source_id, int num)
     {   
         if(this->start == true){
-            this->m_timer2 = std::make_shared<Timer>(10.0f,[&](){
-                // this->m_Infer->PauseTask();
+            this->m_timer2 = std::make_shared<Timer>(5.0f,[&](){
+                this->m_Infer->PauseTask();
                 this->m_Infer->StopTask();
                 // 推理结束发布InferData事件
                 NoticeCenter::Instance().emitEvent(NOTICE_INFERDATA);
@@ -194,6 +199,8 @@ namespace MIVA
     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
     void UserApp::ConnectNetty()
@@ -296,6 +303,7 @@ namespace MIVA
     void UserApp::ListenClosed()
     {
         if(this->play == false){
+            clock_gettime(CLOCK_BOOTTIME, &time1);
             if(this->m_Infer != NULL) m_Infer->StartTask();
             this->play = true;
             this->start = true;
@@ -350,6 +358,8 @@ namespace MIVA
             // 更新数据
             sqlUpdata << grade << result << ctime << iter->first << sqlRet;
         }
+        clock_gettime(CLOCK_BOOTTIME, &time2);
+        WarnL << "推理所用时间: " << (time2.tv_sec - time1.tv_sec) *1000 + (time2.tv_nsec - time1.tv_nsec)/1000000 << " ms";
     }
 
     // 数据计算