溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

通過Onvif協(xié)議停止調(diào)用云臺接口為pending狀態(tài)該如何處理

發(fā)布時間:2021-12-23 10:08:56 來源:億速云 閱讀:133 作者:柒染 欄目:互聯(lián)網(wǎng)科技

通過Onvif協(xié)議停止調(diào)用云臺接口為pending狀態(tài)該如何處理,針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

在攝像頭設(shè)備支持云臺的情況下,視頻結(jié)構(gòu)化安防智能平臺EasyNVR是支持通過onvif協(xié)議來調(diào)用攝像頭的云臺控制,但是在調(diào)用過程中,如果用戶名和密碼錯誤,調(diào)用停止云臺控制接口會一直處于pending狀態(tài)。

通過Onvif協(xié)議停止調(diào)用云臺接口為pending狀態(tài)該如何處理

通過瀏覽器調(diào)試界面可以看到該接口的pending狀態(tài),一直沒有返回內(nèi)容。

分析后端接口,發(fā)現(xiàn)具體到StopPTZ方法里面邏輯有問題,目前采用的邏輯如下:

func StopPTZ(host, username, password, deviceUrl string) (err error) {
   if dll == nil {
      err = fmt.Errorf("onvif dll not init")
      return
   }
   ptz := fmt.Sprintf("stop ptz host[%s] username[%s] password[%s] deviceUrl[%s]", host, username, password, deviceUrl)
   global.OperationLogger.Info(ptz)
   _host := uintptr(unsafe.Pointer(syscall.StringBytePtr(host)))
   _username := uintptr(unsafe.Pointer(syscall.StringBytePtr(username)))
   _password := uintptr(unsafe.Pointer(syscall.StringBytePtr(password)))
   _deviceUrl := uintptr(unsafe.Pointer(syscall.StringBytePtr(deviceUrl)))
 
   i := 1
   for i <= 500 {
      r1, _, _ := procStopPtz.Call(_host, _username, _password, _deviceUrl)
      if r1 == 0 {
         break
      }
      if i == 500 {
         log.Printf("EasyOnvifClient_StopPtz failed, ret[%d], retryed 5s", r1)
         err = fmt.Errorf("EasyOnvifClient_StopPtz failed, ret[%d]", r1)
      }
      time.Sleep(10 * time.Millisecond)
   }
 
   return
}

我們將其中的i := 1邏輯進行修改,且time.Sleep處為1而非為10,即可解決問題。修改后的邏輯代碼參考如下:

func StopPTZ(host, username, password, deviceUrl string) (err error) {
   if dll == nil {  err = fmt.Errorf("onvif dll not init")  return
   }
   ptz := fmt.Sprintf("stop ptz host[%s] username[%s] password[%s] deviceUrl[%s]", host, username, password, deviceUrl)
   global.OperationLogger.Info(ptz)
   _host := uintptr(unsafe.Pointer(syscall.StringBytePtr(host)))
   _username := uintptr(unsafe.Pointer(syscall.StringBytePtr(username)))
   _password := uintptr(unsafe.Pointer(syscall.StringBytePtr(password)))
   _deviceUrl := uintptr(unsafe.Pointer(syscall.StringBytePtr(deviceUrl)))
 
   for i := 0; i <= 500; i += 100 {  r1, _, _ := procStopPtz.Call(_host, _username, _password, _deviceUrl)  if r1 == 0 { return  }  if i == 500 { log.Printf("EasyOnvifClient_StopPtz failed, ret[%d], retryed 5s", r1) err = fmt.Errorf("EasyOnvifClient_StopPtz failed, ret[%d], timeout 5s", r1)  }  time.Sleep(1 * time.Millisecond)
   }
 
   return}

重新運行并調(diào)用接口檢查,可以看到以上的報錯內(nèi)容消失,問題已解決:

func StopPTZ(host, username, password, deviceUrl string) (err error) {
   if dll == nil {
      err = fmt.Errorf("onvif dll not init")
      return
   }
   ptz := fmt.Sprintf("stop ptz host[%s] username[%s] password[%s] deviceUrl[%s]", host, username, password, deviceUrl)
   global.OperationLogger.Info(ptz)
   _host := uintptr(unsafe.Pointer(syscall.StringBytePtr(host)))
   _username := uintptr(unsafe.Pointer(syscall.StringBytePtr(username)))
   _password := uintptr(unsafe.Pointer(syscall.StringBytePtr(password)))
   _deviceUrl := uintptr(unsafe.Pointer(syscall.StringBytePtr(deviceUrl)))
 
   for i := 0; i <= 500; i += 100 {
      r1, _, _ := procStopPtz.Call(_host, _username, _password, _deviceUrl)
      if r1 == 0 {
         return
      }
      if i == 500 {
         log.Printf("EasyOnvifClient_StopPtz failed, ret[%d], retryed 5s", r1)
         err = fmt.Errorf("EasyOnvifClient_StopPtz failed, ret[%d], timeout 5s", r1)
      }
      time.Sleep(1 * time.Millisecond)
   }
 
   return
}

重新運行并調(diào)用接口檢查,可以看到以上的報錯內(nèi)容消失,問題已解決:

通過Onvif協(xié)議停止調(diào)用云臺接口為pending狀態(tài)該如何處理

關(guān)于通過Onvif協(xié)議停止調(diào)用云臺接口為pending狀態(tài)該如何處理問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI