|
@@ -1,96 +1,94 @@
|
|
|
package service
|
|
|
|
|
|
-import (
|
|
|
- "cicv-data-closedloop/aarch64/pjibot_delivery/common/config"
|
|
|
- "cicv-data-closedloop/common/config/c_log"
|
|
|
- "cicv-data-closedloop/common/util"
|
|
|
- "os"
|
|
|
-)
|
|
|
+import commonConfig "cicv-data-closedloop/aarch64/pjibot_delivery/common/config"
|
|
|
|
|
|
func CollectOneMsg() {
|
|
|
- collectMap()
|
|
|
- collectTfStatic()
|
|
|
- collectCostmap()
|
|
|
-}
|
|
|
-
|
|
|
-func collectMap() {
|
|
|
-
|
|
|
- // rosbag record -O /root/cicv-data-closedloop/map_data.bag -l 1 /map
|
|
|
- ossMapBagObjectKey := config.LocalConfig.OssBasePrefix + config.LocalConfig.EquipmentNo + "/map.bag"
|
|
|
-
|
|
|
- var command []string
|
|
|
- command = append(command, "record")
|
|
|
- command = append(command, "-O")
|
|
|
- command = append(command, config.CloudConfig.MapBagPath)
|
|
|
- command = append(command, "-l")
|
|
|
- command = append(command, "1")
|
|
|
- command = append(command, "/map")
|
|
|
- _, s, err := util.ExecuteWithEnvAndDir(config.RosbagEnvs, config.CloudConfig.BagDataDir, config.RosbagPath, command...)
|
|
|
- if err != nil {
|
|
|
- c_log.GlobalLogger.Error("程序异常退出。采集/map包", command, "出错:", s, "----", err)
|
|
|
- os.Exit(-1)
|
|
|
- }
|
|
|
- c_log.GlobalLogger.Info("采集/map包", command, "完成。")
|
|
|
- config.OssMutex.Lock()
|
|
|
- err = config.OssBucket.PutObjectFromFile(ossMapBagObjectKey, config.CloudConfig.MapBagPath)
|
|
|
- config.OssMutex.Unlock()
|
|
|
- if err != nil {
|
|
|
- c_log.GlobalLogger.Error("程序异常退出。上传/map包", config.CloudConfig.MapBagPath, "->", ossMapBagObjectKey, "出错:", err)
|
|
|
- os.Exit(-1)
|
|
|
- }
|
|
|
- c_log.GlobalLogger.Info("上传/map包", config.CloudConfig.MapBagPath, "------", ossMapBagObjectKey, "成功。")
|
|
|
-}
|
|
|
-func collectTfStatic() {
|
|
|
-
|
|
|
- // rosbag record -O /root/cicv-data-closedloop/map_data.bag -l 1 /map
|
|
|
- ossMapBagObjectKey := config.LocalConfig.OssBasePrefix + config.LocalConfig.EquipmentNo + "/tfstatic.bag"
|
|
|
-
|
|
|
- var command []string
|
|
|
- command = append(command, "record")
|
|
|
- command = append(command, "-O")
|
|
|
- command = append(command, config.CloudConfig.MapBagPath)
|
|
|
- command = append(command, "-l")
|
|
|
- command = append(command, "1")
|
|
|
- command = append(command, "/tf_static")
|
|
|
- _, s, err := util.ExecuteWithEnvAndDir(config.RosbagEnvs, config.CloudConfig.BagDataDir, config.RosbagPath, command...)
|
|
|
- if err != nil {
|
|
|
- c_log.GlobalLogger.Error("程序异常退出。采集/tf_static包", command, "出错:", s, "----", err)
|
|
|
- os.Exit(-1)
|
|
|
+ if !commonConfig.CloudConfig.HasOneMsgTopic {
|
|
|
+ return
|
|
|
}
|
|
|
- c_log.GlobalLogger.Info("采集/tf_static包", command, "完成。")
|
|
|
- config.OssMutex.Lock()
|
|
|
- err = config.OssBucket.PutObjectFromFile(ossMapBagObjectKey, config.CloudConfig.MapBagPath)
|
|
|
- config.OssMutex.Unlock()
|
|
|
- if err != nil {
|
|
|
- c_log.GlobalLogger.Error("程序异常退出。上传/tf_static包", config.CloudConfig.MapBagPath, "->", ossMapBagObjectKey, "出错:", err)
|
|
|
- os.Exit(-1)
|
|
|
- }
|
|
|
- c_log.GlobalLogger.Info("上传/tf_static包", config.CloudConfig.MapBagPath, "------", ossMapBagObjectKey, "成功。")
|
|
|
+ //collectMap()
|
|
|
+ //collectTfStatic()
|
|
|
+ //collectCostmap()
|
|
|
}
|
|
|
-func collectCostmap() {
|
|
|
-
|
|
|
- // rosbag record -O /root/cicv-data-closedloop/map_data.bag -l 1 /map
|
|
|
- ossMapBagObjectKey := config.LocalConfig.OssBasePrefix + config.LocalConfig.EquipmentNo + "/costmap.bag"
|
|
|
|
|
|
- var command []string
|
|
|
- command = append(command, "record")
|
|
|
- command = append(command, "-O")
|
|
|
- command = append(command, config.CloudConfig.MapBagPath)
|
|
|
- command = append(command, "-l")
|
|
|
- command = append(command, "1")
|
|
|
- command = append(command, "/move_base/global_costmap/costmap")
|
|
|
- _, s, err := util.ExecuteWithEnvAndDir(config.RosbagEnvs, config.CloudConfig.BagDataDir, config.RosbagPath, command...)
|
|
|
- if err != nil {
|
|
|
- c_log.GlobalLogger.Error("程序异常退出。采集/move_base/global_costmap/costmap包", command, "出错:", s, "----", err)
|
|
|
- os.Exit(-1)
|
|
|
- }
|
|
|
- c_log.GlobalLogger.Info("采集/move_base/global_costmap/costmap包", command, "完成。")
|
|
|
- config.OssMutex.Lock()
|
|
|
- err = config.OssBucket.PutObjectFromFile(ossMapBagObjectKey, config.CloudConfig.MapBagPath)
|
|
|
- config.OssMutex.Unlock()
|
|
|
- if err != nil {
|
|
|
- c_log.GlobalLogger.Error("程序异常退出。上传/move_base/global_costmap/costmap包", config.CloudConfig.MapBagPath, "->", ossMapBagObjectKey, "出错:", err)
|
|
|
- os.Exit(-1)
|
|
|
- }
|
|
|
- c_log.GlobalLogger.Info("上传/move_base/global_costmap/costmap包", config.CloudConfig.MapBagPath, "------", ossMapBagObjectKey, "成功。")
|
|
|
-}
|
|
|
+//func collectMap() {
|
|
|
+//
|
|
|
+// // rosbag record -O /root/cicv-data-closedloop/map_data.bag -l 1 /map
|
|
|
+// ossMapBagObjectKey := config.LocalConfig.OssBasePrefix + config.LocalConfig.EquipmentNo + "/map.bag"
|
|
|
+//
|
|
|
+// var command []string
|
|
|
+// command = append(command, "record")
|
|
|
+// command = append(command, "-O")
|
|
|
+// command = append(command, config.CloudConfig.MapBagPath)
|
|
|
+// command = append(command, "-l")
|
|
|
+// command = append(command, "1")
|
|
|
+// command = append(command, "/map")
|
|
|
+// _, s, err := util.ExecuteWithEnvAndDir(config.RosbagEnvs, config.CloudConfig.BagDataDir, config.RosbagPath, command...)
|
|
|
+// if err != nil {
|
|
|
+// c_log.GlobalLogger.Error("程序异常退出。采集/map包", command, "出错:", s, "----", err)
|
|
|
+// os.Exit(-1)
|
|
|
+// }
|
|
|
+// c_log.GlobalLogger.Info("采集/map包", command, "完成。")
|
|
|
+// config.OssMutex.Lock()
|
|
|
+// err = config.OssBucket.PutObjectFromFile(ossMapBagObjectKey, config.CloudConfig.MapBagPath)
|
|
|
+// config.OssMutex.Unlock()
|
|
|
+// if err != nil {
|
|
|
+// c_log.GlobalLogger.Error("程序异常退出。上传/map包", config.CloudConfig.MapBagPath, "->", ossMapBagObjectKey, "出错:", err)
|
|
|
+// os.Exit(-1)
|
|
|
+// }
|
|
|
+// c_log.GlobalLogger.Info("上传/map包", config.CloudConfig.MapBagPath, "------", ossMapBagObjectKey, "成功。")
|
|
|
+//}
|
|
|
+//func collectTfStatic() {
|
|
|
+//
|
|
|
+// // rosbag record -O /root/cicv-data-closedloop/map_data.bag -l 1 /map
|
|
|
+// ossMapBagObjectKey := config.LocalConfig.OssBasePrefix + config.LocalConfig.EquipmentNo + "/tfstatic.bag"
|
|
|
+//
|
|
|
+// var command []string
|
|
|
+// command = append(command, "record")
|
|
|
+// command = append(command, "-O")
|
|
|
+// command = append(command, config.CloudConfig.MapBagPath)
|
|
|
+// command = append(command, "-l")
|
|
|
+// command = append(command, "1")
|
|
|
+// command = append(command, "/tf_static")
|
|
|
+// _, s, err := util.ExecuteWithEnvAndDir(config.RosbagEnvs, config.CloudConfig.BagDataDir, config.RosbagPath, command...)
|
|
|
+// if err != nil {
|
|
|
+// c_log.GlobalLogger.Error("程序异常退出。采集/tf_static包", command, "出错:", s, "----", err)
|
|
|
+// os.Exit(-1)
|
|
|
+// }
|
|
|
+// c_log.GlobalLogger.Info("采集/tf_static包", command, "完成。")
|
|
|
+// config.OssMutex.Lock()
|
|
|
+// err = config.OssBucket.PutObjectFromFile(ossMapBagObjectKey, config.CloudConfig.MapBagPath)
|
|
|
+// config.OssMutex.Unlock()
|
|
|
+// if err != nil {
|
|
|
+// c_log.GlobalLogger.Error("程序异常退出。上传/tf_static包", config.CloudConfig.MapBagPath, "->", ossMapBagObjectKey, "出错:", err)
|
|
|
+// os.Exit(-1)
|
|
|
+// }
|
|
|
+// c_log.GlobalLogger.Info("上传/tf_static包", config.CloudConfig.MapBagPath, "------", ossMapBagObjectKey, "成功。")
|
|
|
+//}
|
|
|
+//func collectCostmap() {
|
|
|
+//
|
|
|
+// // rosbag record -O /root/cicv-data-closedloop/map_data.bag -l 1 /map
|
|
|
+// ossMapBagObjectKey := config.LocalConfig.OssBasePrefix + config.LocalConfig.EquipmentNo + "/costmap.bag"
|
|
|
+//
|
|
|
+// var command []string
|
|
|
+// command = append(command, "record")
|
|
|
+// command = append(command, "-O")
|
|
|
+// command = append(command, config.CloudConfig.MapBagPath)
|
|
|
+// command = append(command, "-l")
|
|
|
+// command = append(command, "1")
|
|
|
+// command = append(command, "/move_base/global_costmap/costmap")
|
|
|
+// _, s, err := util.ExecuteWithEnvAndDir(config.RosbagEnvs, config.CloudConfig.BagDataDir, config.RosbagPath, command...)
|
|
|
+// if err != nil {
|
|
|
+// c_log.GlobalLogger.Error("程序异常退出。采集/move_base/global_costmap/costmap包", command, "出错:", s, "----", err)
|
|
|
+// os.Exit(-1)
|
|
|
+// }
|
|
|
+// c_log.GlobalLogger.Info("采集/move_base/global_costmap/costmap包", command, "完成。")
|
|
|
+// config.OssMutex.Lock()
|
|
|
+// err = config.OssBucket.PutObjectFromFile(ossMapBagObjectKey, config.CloudConfig.MapBagPath)
|
|
|
+// config.OssMutex.Unlock()
|
|
|
+// if err != nil {
|
|
|
+// c_log.GlobalLogger.Error("程序异常退出。上传/move_base/global_costmap/costmap包", config.CloudConfig.MapBagPath, "->", ossMapBagObjectKey, "出错:", err)
|
|
|
+// os.Exit(-1)
|
|
|
+// }
|
|
|
+// c_log.GlobalLogger.Info("上传/move_base/global_costmap/costmap包", config.CloudConfig.MapBagPath, "------", ossMapBagObjectKey, "成功。")
|
|
|
+//}
|