ipc_device.go 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package camera
  2. import (
  3. "context"
  4. "errors"
  5. "github.com/sirupsen/logrus"
  6. goonvif "github.com/use-go/onvif"
  7. "github.com/use-go/onvif/device"
  8. sdkdevice "github.com/use-go/onvif/sdk/device"
  9. "net/http"
  10. "runtime/debug"
  11. "server/edge/util/logger"
  12. "server/edge/util/mqtt"
  13. "sync"
  14. )
  15. var mutex sync.Mutex
  16. func NewDevice(camera CameraDev) (*goonvif.Device, error) {
  17. defer func() {
  18. if err := recover(); err != nil {
  19. logrus.Errorf("NewDevice.Handle发生异常:%v", err)
  20. logrus.Errorf("NewDevice.Handle发生异常,堆栈信息:%s", string(debug.Stack()))
  21. go NewDevice(camera)
  22. }
  23. }()
  24. params := goonvif.DeviceParams{
  25. Xaddr: camera.IP,
  26. Username: camera.User,
  27. Password: camera.Password,
  28. HttpClient: &http.Client{},
  29. }
  30. //初始化 ONVIF 客户端
  31. dev, err := goonvif.NewDevice(params)
  32. if err != nil {
  33. logrus.Errorf("摄像机%s初始化失败,原因:%s", camera.Code, err.Error())
  34. return nil, err
  35. }
  36. ctx := context.Background()
  37. getDeviceInformation := device.GetDeviceInformation{}
  38. getDeviceInformationResponse, err := sdkdevice.Call_GetDeviceInformation(ctx, dev, getDeviceInformation)
  39. if err != nil {
  40. logrus.Errorf("[%s]获取信息失败", camera.Code)
  41. return nil, err
  42. }
  43. if getDeviceInformationResponse == (device.GetDeviceInformationResponse{}) {
  44. logrus.Errorf("设备[%s]权限认证失败", camera.Code)
  45. return nil, errors.New("权限认证失败")
  46. }
  47. return dev, nil
  48. }
  49. func TestCameraOnline(devices map[string]*goonvif.Device) error {
  50. ctx := context.Background()
  51. var online string
  52. for code, dev := range devices {
  53. //读取设备能力信息,判断是否在线
  54. capabilities := device.GetCapabilities{Category: "All"}
  55. _, state := sdkdevice.Call_GetCapabilities(ctx, dev, capabilities)
  56. topic := GetTopic(code, TopicDeviceCamera)
  57. if state != nil {
  58. //1表示离线
  59. online = "1"
  60. } else {
  61. //0表示在线
  62. online = "0"
  63. }
  64. mutex.Lock()
  65. err := mqtt.GetMQTTMgr().Publish(topic, online, mqtt.AtLeastOnce)
  66. mutex.Unlock()
  67. if err != nil {
  68. logger.Logger.Errorf("Publish err = %s", err.Error())
  69. return err
  70. }
  71. }
  72. return nil
  73. }