|
@@ -2,6 +2,7 @@
|
|
import os
|
|
import os
|
|
import time
|
|
import time
|
|
import oss2
|
|
import oss2
|
|
|
|
+import json
|
|
|
|
|
|
from resource import parse_pji_image
|
|
from resource import parse_pji_image
|
|
|
|
|
|
@@ -15,6 +16,45 @@ logging.basicConfig(filename=path1 + 'log/camera-pjibot_guide.log', level=loggin
|
|
key1 = 'pjibot/'
|
|
key1 = 'pjibot/'
|
|
sleep_time = 2 # 每多少秒扫描一次
|
|
sleep_time = 2 # 每多少秒扫描一次
|
|
|
|
|
|
|
|
+error_bag_json = "/mnt/disk001/dcl_data_process/src/python2/pjibot/camera-errorBag.json"
|
|
|
|
+def parse_json_to_string_array(file_path):
|
|
|
|
+ try:
|
|
|
|
+ # 打开并读取JSON文件(Python 2中不支持encoding参数,需要使用codecs模块或处理文件读取后的编码)
|
|
|
|
+ with open(file_path, 'r') as file:
|
|
|
|
+ # 读取文件内容
|
|
|
|
+ file_content = file.read()
|
|
|
|
+ # 解析JSON内容(Python 2中json.loads用于解析字符串)
|
|
|
|
+ data = json.loads(file_content.decode('utf-8')) # 假设文件是UTF-8编码,这里需要手动解码
|
|
|
|
+
|
|
|
|
+ # 检查数据是否是一个列表,并且列表中的元素是否是字符串
|
|
|
|
+ if isinstance(data, list):
|
|
|
|
+ for item in data:
|
|
|
|
+ if not isinstance(item, basestring): # Python 2中字符串类型包括str和unicode,用basestring检查
|
|
|
|
+ raise ValueError("JSON数组中的元素不是字符串")
|
|
|
|
+ return data
|
|
|
|
+ else:
|
|
|
|
+ return []
|
|
|
|
+ except Exception as e:
|
|
|
|
+ return []
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+def list_to_json_file(data, file_path):
|
|
|
|
+ """
|
|
|
|
+ 将列表转换为JSON格式并写入指定的文件路径。
|
|
|
|
+ 如果文件已存在,则覆盖它。
|
|
|
|
+
|
|
|
|
+ 参数:
|
|
|
|
+ data (list): 要转换为JSON的列表。
|
|
|
|
+ file_path (str): 要写入JSON数据的文件路径。
|
|
|
|
+ """
|
|
|
|
+ # 将列表转换为JSON格式的字符串,并确保输出为UTF-8编码的字符串
|
|
|
|
+ json_data = json.dumps(data, ensure_ascii=False, indent=4)
|
|
|
|
+ json_data_utf8 = json_data.encode('utf-8') # 编码为UTF-8
|
|
|
|
+
|
|
|
|
+ # 以写入模式打开文件,如果文件已存在则覆盖
|
|
|
|
+ with open(file_path, 'w') as file:
|
|
|
|
+ # 将UTF-8编码的JSON字符串写入文件
|
|
|
|
+ file.write(json_data_utf8)
|
|
|
|
|
|
def parse_to_mp4(merged_bag_file_path, parse_prefix, local_parse_dir, local_delete_list):
|
|
def parse_to_mp4(merged_bag_file_path, parse_prefix, local_parse_dir, local_delete_list):
|
|
try:
|
|
try:
|
|
@@ -35,6 +75,9 @@ def parse_to_mp4(merged_bag_file_path, parse_prefix, local_parse_dir, local_dele
|
|
bucket.put_object_from_file(oss_csv_object_key2, local_mp4_file_path2)
|
|
bucket.put_object_from_file(oss_csv_object_key2, local_mp4_file_path2)
|
|
|
|
|
|
except Exception as e2:
|
|
except Exception as e2:
|
|
|
|
+ error_bag_list = parse_json_to_string_array(error_bag_json)
|
|
|
|
+ error_bag_list.append(parse_prefix)
|
|
|
|
+ list_to_json_file(error_bag_list, error_bag_json)
|
|
# 当出现异常时执行的代码
|
|
# 当出现异常时执行的代码
|
|
logging.exception("生成摄像头视频报错: %s", e2)
|
|
logging.exception("生成摄像头视频报错: %s", e2)
|
|
# logging.exception("生成摄像头视频报错,删除脏数据: %s", e2)
|
|
# logging.exception("生成摄像头视频报错,删除脏数据: %s", e2)
|
|
@@ -85,6 +128,9 @@ if __name__ == '__main__':
|
|
if not callback_done: # 不存在存在callback.json的就不处理了
|
|
if not callback_done: # 不存在存在callback.json的就不处理了
|
|
# logging.info("数据已回调完成,不需要处理: %s" % str(parse_prefix_full))
|
|
# logging.info("数据已回调完成,不需要处理: %s" % str(parse_prefix_full))
|
|
continue
|
|
continue
|
|
|
|
+ error_bag_list = parse_json_to_string_array(error_bag_json)
|
|
|
|
+ if parse_prefix_full in error_bag_list:
|
|
|
|
+ continue
|
|
|
|
|
|
local_merged_bag_path = path1 + 'camera/' + merged_bag_object_key
|
|
local_merged_bag_path = path1 + 'camera/' + merged_bag_object_key
|
|
local_merged_dir = '/'.join(local_merged_bag_path.split('/')[:-1])
|
|
local_merged_dir = '/'.join(local_merged_bag_path.split('/')[:-1])
|