亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

通過Onvif協議停止調用云臺接口為pending狀態該如何處理

發布時間:2021-12-23 10:08:56 來源:億速云 閱讀:134 作者:柒染 欄目:互聯網科技

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

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

通過Onvif協議停止調用云臺接口為pending狀態該如何處理

通過瀏覽器調試界面可以看到該接口的pending狀態,一直沒有返回內容。

分析后端接口,發現具體到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}

重新運行并調用接口檢查,可以看到以上的報錯內容消失,問題已解決:

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
}

重新運行并調用接口檢查,可以看到以上的報錯內容消失,問題已解決:

通過Onvif協議停止調用云臺接口為pending狀態該如何處理

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

保山市| 杭州市| 苗栗县| 龙南县| 盱眙县| 西乌珠穆沁旗| 醴陵市| 阿鲁科尔沁旗| 高淳县| 敦煌市| 英山县| 阿克陶县| 连州市| 延庆县| 临沂市| 哈巴河县| 怀远县| 东莞市| 盈江县| 新巴尔虎右旗| 漾濞| 津南区| 东明县| 郧西县| 红安县| 建始县| 宣城市| 宁安市| 调兵山市| 阳泉市| 华阴市| 云林县| 阿城市| 寿阳县| 金阳县| 信阳市| 建阳市| 林芝县| 武穴市| 玉田县| 罗定市|