From 4ed75d3bacf3dcf91889fb693b179557eb7b7509 Mon Sep 17 00:00:00 2001 From: zhangmeng <775834166@qq.com> Date: 星期一, 06 五月 2019 10:21:24 +0800 Subject: [PATCH] decoder ipc --- decoder/main.go | 57 +++++++++++++++++++++++++++++++++------------------------ 1 files changed, 33 insertions(+), 24 deletions(-) diff --git a/decoder/main.go b/decoder/main.go index c6e75b8..fa513b3 100644 --- a/decoder/main.go +++ b/decoder/main.go @@ -7,6 +7,8 @@ "encoding/json" "flag" "fmt" + "strconv" + "strings" // "videoServer/demo" ) @@ -16,6 +18,8 @@ ipcURL string proc string + + testIt bool ) func init() { @@ -23,6 +27,8 @@ flag.StringVar(&picFolder, "f", ".", "test pic folder") flag.StringVar(&ipcURL, "ipc", "ipc:///tmp/pic.ipc", "ipc label") + + flag.BoolVar(&testIt, "test", false, "use test") } // CameraInfo camera info @@ -67,33 +73,36 @@ func main() { flag.Parse() - test() + if testIt { + test() + } - // ctx, cancel := context.WithCancel(context.Background()) + ctx, cancel := context.WithCancel(context.Background()) - // ch := make(chan CameraInfo) - // go recvFromIPC(ctx, "tcp://192.168.1.124:7000", ch) + ch := make(chan CameraInfo) + go recvFromIPC(ctx, "tcp://192.168.1.124:7000", ch) - // for { - // select { - // case <-ctx.Done(): - // return - // case c := <-ch: - // if _, ok := mapCI[c.ID]; !ok { - // mapCI[c.ID] = c - // ipc := "tcp://192.168.1.124:" + strconv.Itoa(port) - // port++ - // fmt.Printf("create ipc %s for decode : %s, on camera id %s\n", ipc, c.URL, c.ID) + // demo.SendByIPC("rtsp://admin:a1234567@192.168.1.188:554/h264/ch1/main/av_stream", "cid0", + // "tcp://192.168.1.140:7000", false) + for { + select { + case <-ctx.Done(): + return + case c := <-ch: + if _, ok := mapCI[c.ID]; !ok { + mapCI[c.ID] = c + ipc := "tcp://192.168.1.124:" + strconv.Itoa(port) + port++ + fmt.Printf("create ipc %s for decode : %s, on camera id %s\n", ipc, c.URL, c.ID) - // url := strings.TrimSpace(c.URL) - // id := strings.TrimSpace(c.ID) - // i := strings.TrimSpace(ipc) - // go demo.SendByIPC(url, id, i) - // } - // } - // } - // cancel() - + url := strings.TrimSpace(c.URL) + id := strings.TrimSpace(c.ID) + i := strings.TrimSpace(ipc) + go demo.SendByIPC(url, id, i, false) + } + } + } + cancel() } func test() { @@ -101,5 +110,5 @@ fmt.Println(picFolder) - demo.SendByIPC(streamURL, "camera1", ipcURL, true) + demo.SendByIPC(streamURL, "camera1", ipcURL, false) } -- Gitblit v1.8.0