| | |
| | | |
| | | type FaceSdkService struct { |
| | | File []byte |
| | | Id string |
| | | Id int64 |
| | | Result []*protomsg.ResultFaceDetect |
| | | DeadTime time.Duration |
| | | } |
| | |
| | | Ipc_Push_Ext = "_2.ipc" |
| | | Ipc_Pull_Ext = "_1.ipc" |
| | | Ipc_Url_Pre = "ipc:///tmp///" |
| | | faceExtractWebCID = "virtual-face-extract-web-camera-id" |
| | | Virtual_FaceTaskId = "92496BDF-2BFA-98F2-62E8-96DD9866ABD2" |
| | | Virtual_FaceSdkId = "virtual-faceextract-sdk-pull" |
| | | Url_Service_PUSH = Ipc_Url_Pre + Virtual_FaceSdkId + Ipc_Push_Ext |
| | |
| | | func NewFaceSdkService(fileBytes []byte, deadTime time.Duration) FaceSdkService{ |
| | | return FaceSdkService{ |
| | | File:fileBytes, |
| | | Id:uuid.NewV4().String(), |
| | | Id:time.Now().UnixNano(), |
| | | DeadTime:deadTime, |
| | | } |
| | | } |
| | |
| | | Height: height, |
| | | Timestamp: formatTimeStr, |
| | | Data: data, |
| | | Id: timeUnix, |
| | | Cid:s.Id, |
| | | Id: s.Id, |
| | | Cid: faceExtractWebCID, |
| | | },nil |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | type FeaResult struct { |
| | | FaceM map[string][]*protomsg.ResultFaceDetect |
| | | FaceM map[int64][]*protomsg.ResultFaceDetect |
| | | Lock sync.Mutex |
| | | } |
| | | |
| | | func (f *FeaResult) Write(id string,faceDetectResult []*protomsg.ResultFaceDetect){ |
| | | func (f *FeaResult) Write(id int64,faceDetectResult []*protomsg.ResultFaceDetect){ |
| | | f.Lock.Lock() |
| | | defer f.Lock.Unlock() |
| | | f.FaceM[id] = faceDetectResult |
| | | } |
| | | |
| | | func (f *FeaResult) Get(id string) ([]*protomsg.ResultFaceDetect,bool){ |
| | | func (f *FeaResult) Get(id int64) ([]*protomsg.ResultFaceDetect,bool){ |
| | | f.Lock.Lock() |
| | | defer f.Lock.Unlock() |
| | | coms,ok := f.FaceM[id] |
| | |
| | | func InitService() { |
| | | logger.Debug("service init!") |
| | | imgPushChan = make(chan []byte) |
| | | resultMap.FaceM = make(map[string][]*protomsg.ResultFaceDetect,0) |
| | | resultMap.FaceM = make(map[int64][]*protomsg.ResultFaceDetect,0) |
| | | client_push = deliver.NewClient(deliver.PushPull, Url_Service_PUSH) |
| | | client_pull = deliver.NewClient(deliver.PushPull, Url_Service_PULL) |
| | | defer func() { |
| | |
| | | rMsg := protomsg.SdkMessage{} |
| | | if err := proto.Unmarshal(resultBytes, &rMsg); err == nil { |
| | | logger.Debug("received MSG:", rMsg.Cid) |
| | | perId := rMsg.Cid //数据id |
| | | i := protomsg.Image{} |
| | | err := proto.Unmarshal(rMsg.Data, &i) |
| | | if err !=nil { |
| | | continue |
| | | } |
| | | perId := i.Id //数据id |
| | | if rMsg.Tasklab != nil && rMsg.Tasklab.Taskid == Virtual_FaceTaskId { |
| | | sdkInfos := rMsg.Tasklab.Sdkinfos |
| | | |