Exemplo n.º 1
0
 def delete_rule_by_uuid(cls, uuids) -> int:
     try:
         # 数据库删除规则
         SqliteInterface.delete_rule(uuids)
         # 删除规则脚本
         for uuid in uuids:
             js_path = RULE_JS_SCRIPT_FOLDER + "/" + uuid + '.js'
             py_path = RULE_PY_SCRIPT_FOLDER + "/" + uuid + '.py'
             pyc_path = RULE_PY_SCRIPT_FOLDER + "/" + uuid + '.pyc'
             if os.path.exists(js_path):
                 os.remove(js_path)
             if os.path.exists(py_path):
                 os.remove(py_path)
             if os.path.exists(pyc_path):
                 os.remove(pyc_path)
         # 从正在运行的队列中删除
         remove_running_rule_endtime(uuids)
         DevCommandQueueMng.clear_command_by_rule_uuid(uuids)
         DevCommandQueueMng.all_dev_exe()
         # 规则决策
         return g_retValue.qjBoxOpcodeSucess.value
     except Exception as e:
         msg = MyLog.color_red('delete_rule_by_uuid has except: ' + str(e))
         MyLog.logger.error(msg)
         return g_retValue.qjBoxOpcodeExcept.value
Exemplo n.º 2
0
    def disable_rule(cls, uuids) -> int:
        try:
            if not uuids:
                msg = MyLog.color_red("uuids is empty")
                MyLog.logger.error(msg)
                return g_retValue.qjBoxOpcodeInputParamErr.value
            for uuid in uuids:
                if not SqliteInterface.rule_exist(uuid):
                    msg = MyLog.color_red("rule(%s) has not exist" % (uuid))
                    MyLog.logger.error(msg)
                    return g_retValue.qjBoxOpcodeInputParamErr.value
            # 数据库删除规则
            SqliteInterface.set_rule_disable(uuids)

            # 从正在运行的队列中删除
            remove_running_rule_endtime(uuids)
            DevCommandQueueMng.clear_command_by_rule_uuid(uuids)
            DevCommandQueueMng.all_dev_exe()

            # 规则决策
            RuleMng.start_new_rule_decision_timer(0)
            return g_retValue.qjBoxOpcodeSucess.value
        except Exception as e:
            msg = MyLog.color_red('disable_rule has except: ' + str(e))
            MyLog.logger.error(msg)
            return g_retValue.qjBoxOpcodeExcept.value
Exemplo n.º 3
0
    def clear_all_rule(cls) -> int:
        try:
            # 数据库清空规则
            SqliteInterface.clear_all_rule()
            # 清空规则脚本
            js_path = RULE_JS_SCRIPT_FOLDER
            py_path = RULE_PY_SCRIPT_FOLDER
            if os.path.isdir(js_path):
                shutil.rmtree(js_path)
            if os.path.isdir(py_path):
                shutil.rmtree(py_path)

            DevCommandQueueMng.clear_all_command()
            return g_retValue.qjBoxOpcodeSucess.value
        except Exception as e:
            msg = MyLog.color_red('clear_all_rule has except: ' + str(e))
            MyLog.logger.error(msg)
            return g_retValue.qjBoxOpcodeExcept.value
Exemplo n.º 4
0
    def add_rule(cls, rules) -> int:
        try:
            for rule_dict in rules:
                ret = cls.__check_rule_param(rule_dict)
                if ret != g_retValue.qjBoxOpcodeSucess.value:
                    msg = MyLog.color_red('check_rule_param failed')
                    MyLog.logger.error(msg)
                    return ret

                if SqliteInterface.rule_exist(rule_dict['uuid']):
                    msg = MyLog.color_red("rule(%s) has exist" %
                                          (rule_dict['uuid']))
                    MyLog.logger.error(msg)
                    return g_retValue.qjBoxOpcodeInputParamErr.value

            for rule_dict in rules:
                if not os.path.exists(RULE_JS_SCRIPT_FOLDER):
                    os.makedirs(RULE_JS_SCRIPT_FOLDER)
                if not os.path.exists(RULE_PY_SCRIPT_FOLDER):
                    os.makedirs(RULE_PY_SCRIPT_FOLDER)
                # 将平台下发的规则脚本转换成py脚本,并将两个脚本内容都保存到文件,以uuid为文件名。
                js_path = RULE_JS_SCRIPT_FOLDER + "/" + rule_dict[
                    'uuid'] + '.js'
                py_path = RULE_PY_SCRIPT_FOLDER + "/" + rule_dict[
                    'uuid'] + '.py'
                MyLog.logger.info("js_path:%s" % js_path)
                MyLog.logger.info("py_path:%s" % py_path)
                write_file(rule_dict['script'], js_path)
                conver_to_py(rule_dict['script'], py_path)

                # 将规则插入数据库
                SqliteInterface.add_rule(
                    rule_dict['uuid'], rule_dict['enable'], rule_dict['type'],
                    rule_dict['priority'], rule_dict['date'],
                    rule_dict['time'], rule_dict['srcDevice'],
                    rule_dict['dstDevice'], js_path, py_path)

            # 规则决策
            RuleMng.start_new_rule_decision_timer(0)
            return g_retValue.qjBoxOpcodeSucess.value
        except Exception as e:
            msg = MyLog.color_red('add_rule has except: ' + str(e))
            MyLog.logger.error(msg)
            return g_retValue.qjBoxOpcodeExcept.value
Exemplo n.º 5
0
 def enable_rule(cls, uuids):
     try:
         if not uuids:
             msg = MyLog.color_red("uuids is empty")
             MyLog.logger.error(msg)
             return g_retValue.qjBoxOpcodeInputParamErr.value
         for uuid in uuids:
             if not SqliteInterface.rule_exist(uuid):
                 msg = MyLog.color_red("rule(%s) has not exist" % (uuid))
                 MyLog.logger.error(msg)
                 return g_retValue.qjBoxOpcodeInputParamErr.value
         # 更新数据库
         SqliteInterface.set_rule_enable(uuids)
         # 规则决策
         RuleMng.start_new_rule_decision_timer(0)
         return g_retValue.qjBoxOpcodeSucess.value
     except Exception as e:
         msg = MyLog.color_red('enable_rule has except: ' + str(e))
         MyLog.logger.error(msg)
         return g_retValue.qjBoxOpcodeExcept.value
Exemplo n.º 6
0
    def update_rule(cls, rules) -> int:
        try:
            uuid_list = []
            for rule_dict in rules:
                ret = cls.__check_rule_param(rule_dict)
                if ret != g_retValue.qjBoxOpcodeSucess.value:
                    msg = MyLog.color_red('check_rule_param failed')
                    MyLog.logger.error(msg)
                    return ret

                uuid_list.append(rule_dict['uuid'])
            # 数据库删除规则
            SqliteInterface.delete_rule(uuid_list)
            # 删除规则脚本
            for uuid in uuid_list:
                js_path = RULE_JS_SCRIPT_FOLDER + "/" + uuid + '.js'
                py_path = RULE_PY_SCRIPT_FOLDER + "/" + uuid + '.py'
                pyc_path = RULE_PY_SCRIPT_FOLDER + "/" + uuid + '.pyc'
                if os.path.exists(js_path):
                    os.remove(js_path)
                if os.path.exists(py_path):
                    os.remove(py_path)
                if os.path.exists(pyc_path):
                    os.remove(pyc_path)
            # 从正在运行的队列中删除
            remove_running_rule_endtime(uuid_list)
            # 删除指令队列中的相关指令
            DevCommandQueueMng.clear_command_by_rule_uuid(uuid_list)
            DevCommandQueueMng.all_dev_exe()
            # 重新添加规则
            ret = RuleMng.add_rule(rules)
            return ret
        except Exception as e:
            msg = MyLog.color_red('update_rule has except: ' + str(e))
            MyLog.logger.error(msg)
            return g_retValue.qjBoxOpcodeExcept.value
Exemplo n.º 7
0
    def get_rule_by_uuid(cls, uuids) -> (int, dict):
        try:
            rules = {}
            rule_list = []
            for uuid in uuids:
                rule_dict = {}
                ret, get_rule_dict = SqliteInterface.get_rule(uuid)
                if ret:
                    rule_dict['uuid'] = uuid
                    rule_dict['enable'] = get_rule_dict['enable']
                    rule_dict['type'] = get_rule_dict['type']
                    rule_dict['priority'] = get_rule_dict['priority']
                    rule_dict['date'] = []
                    rule_dict['time'] = []
                    rule_dict['srcDevice'] = []
                    rule_dict['dstDevice'] = []
                    for date in get_rule_dict['date_list']:
                        date_dict = {}
                        date_dict['startDate'] = date['start_date']
                        date_dict['endDate'] = date['end_date']
                        rule_dict['date'].append(date_dict)

                    for time in get_rule_dict['time_list']:
                        time_dict = {}
                        time_dict['startTime'] = time['start_time']
                        time_dict['endTime'] = time['end_time']
                        rule_dict['time'].append(time_dict)

                    for dev in get_rule_dict['src_dev_list']:
                        rule_dict['srcDevice'].append(dev)

                    for dev in get_rule_dict['dst_dev_list']:
                        rule_dict['dstDevice'].append(dev)

                    script_path = get_rule_dict['script_path']
                    if os.path.exists(script_path):
                        with open(script_path, 'r', encoding='utf-8') as fp:
                            rule_dict['script'] = fp.read()

                    rule_list.append(rule_dict)
            rules["rules"] = rule_list
            return g_retValue.qjBoxOpcodeSucess.value, rules
        except Exception as e:
            return g_retValue.qjBoxOpcodeExcept.value, None
Exemplo n.º 8
0
    def get_closest_timestamp(cls) -> float:
        time_list = SqliteInterface.get_all_enable_timer_rule_time_list()
        if not time_list:
            MyLog.logger.debug("time_list is none")
            return 0.0

        now_datetime = datetime.now()
        now_time = now_datetime.time()
        closest_time = None
        smallest_time = time_list[0]
        for time in time_list:
            # 在当前时间点之后 且 小于之前的最小值
            if compare_time(now_time, time):
                if closest_time == None:
                    closest_time = time
                else:
                    if compare_time(time, closest_time):
                        closest_time = time

            if compare_time(time, smallest_time):
                smallest_time = time

        if closest_time == None:
            # 下一天最早的时间
            MyLog.logger.debug("time is in next day")
            next_day = datetime.now() + timedelta(days=1)
            closest_datetime = datetime(next_day.year, next_day.month,
                                        next_day.day, smallest_time.hour,
                                        smallest_time.minute,
                                        smallest_time.second,
                                        smallest_time.microsecond)
        else:
            closest_datetime = datetime(
                now_datetime.year, now_datetime.month, now_datetime.day,
                closest_time.hour, closest_time.minute, closest_time.second,
                smallest_time.microsecond)  # here seems to be a bug

        closest_timestamp = datetime.timestamp(closest_datetime)
        now_timestamp = datetime.timestamp(now_datetime)
        t = closest_timestamp - now_timestamp
        return t
Exemplo n.º 9
0
    def stop_linkage_rule_running(cls, uuids) -> int:
        try:
            for uuid in uuids:
                rule_type = SqliteInterface.get_type_by_uuid(uuid)
                if not rule_type or rule_type != 'linkage':
                    msg = MyLog.color_red(
                        "stop_linkage_rule_running the type of input uuid is invalid"
                    )
                    MyLog.logger.error(msg)
                    return g_retValue.qjBoxOpcodeInputParamErr.value

            DevCommandQueueMng.clear_command_by_rule_uuid(uuids)
            remove_running_rule_endtime(uuids)
            DevCommandQueueMng.all_dev_exe()

            return g_retValue.qjBoxOpcodeSucess.value
        except Exception as e:
            msg = MyLog.color_red('stop_linkage_rule_running has except: ' +
                                  str(e))
            MyLog.logger.error(msg)
            return g_retValue.qjBoxOpcodeExcept.value
Exemplo n.º 10
0
    def run_linkage_rule_by_devid(cls, dev_id, attrs) -> None:
        try:
            MyLog.logger.info(
                f'##########run_linkage_rule_by_devid({dev_id} attrs: {attrs})############'
            )
            uuid_list = SqliteInterface.get_current_linkage_rule_by_src_devid(
                dev_id)
            msg = f"get_current_linkage_rule_by_src_devid({dev_id}, sizeof uuid_list = {len(uuid_list)})"
            MyLog.logger.debug(msg)
            for uuid in uuid_list:
                py_path = RULE_PY_SCRIPT_FOLDER + "/" + uuid + '.py'
                if not os.path.exists(py_path):
                    msg = MyLog.color_red(
                        "run_linkage_rule_by_devid: py(%s) is not exist" %
                        (py_path))
                    MyLog.logger.error(msg)
                    continue
                # 执行脚本
                py_import_path = RULE_PY_MODEL_PATH + uuid
                MyLog.logger.debug('py_import_path: ' + py_import_path)
                file = importlib.import_module(py_import_path)
                importlib.reload(file)
                MyLog.logger.debug('run script fun')
                # dev_command_list = [{'product_id': '', 'dev_id': "", "command_list":[{'service':'', 'param':'', 'time':10 }]}]
                dev_command_list, event_list, attr_list = file.script_fun()
                msg = f'dev_command_list size: {len(dev_command_list)}, event_list size: {len(event_list)}'
                MyLog.logger.debug(msg)

                # 如果相同的联动策略已经在运行中了,那么这个策略的所有服务都被忽略
                if find_running_rule_by_uuid(uuid):
                    for dev_commands_dict in dev_command_list:
                        __, dev_id, service_list = dev_commands_dict.values()
                        for command_dict in service_list:
                            MyLog.logger.debug(
                                f'dev_id:{dev_id},cmd:{command_dict["service"]},uuid:{uuid}'
                            )
                            EventReport.report_rule_command_ignore_event(
                                dev_id, command_dict['service'], uuid, uuid)
                    continue

                if attrs:
                    allow_exe = RuleMng.attrs_has_one_in_changed(
                        dev_id, attr_list, attrs)
                else:
                    allow_exe = True
                MyLog.logger.debug(f'allow exe: {allow_exe}')

                if allow_exe and (dev_command_list or event_list):
                    priority = SqliteInterface.get_priority_by_uuid(uuid)
                    if priority < 0:
                        continue
                    current_ts = time.time()
                    # 上报规则开始执行
                    EventReport.report_rule_start_event(uuid)

                    continue_time = 1
                    for dev_command in dev_command_list:
                        command_info_list = []
                        for command in dev_command['command_list']:
                            if continue_time < command['time']:
                                continue_time = command['time']
                            command_info = CommandInfo(
                                uuid, command['service'], command['param'],
                                current_ts, current_ts + command['time'],
                                priority, 'linkage')
                            command_info_list.append(command_info)
                        if command_info_list:
                            DevCommandQueueMng.add_linkage_command(
                                dev_command['product_id'],
                                dev_command['dev_id'], command_info_list)

                    end_ts = current_ts + continue_time
                    uuid_endtime_list = [{'uuid': uuid, 'end_ts': end_ts}]
                    add_running_rule_endtime(uuid_endtime_list)

                    for custom_event in event_list:
                        EventReport.report_linkage_custom_event(
                            custom_event['event_id'],
                            custom_event['src_dev_list'])
            MyLog.logger.info(
                f'##########run_linkage_rule_by_devid finished({dev_id} attrs: {attrs})############'
            )
        except Exception as e:
            msg = MyLog.color_red('run_linkage_rule_by_devid has except: ' +
                                  str(e))
            MyLog.logger.error(msg)
Exemplo n.º 11
0
 def get_all_rules(cls) -> (int, dict):
     ret, uuid_list = SqliteInterface.get_all_uuids()
     if ret:
         return RuleMng.get_rule_by_uuid(uuid_list)
     else:
         return g_retValue.qjBoxOpcodeHandleSqlFailure.value, None
Exemplo n.º 12
0
    def timer_rule_decision(cls) -> None:
        try:
            MyLog.logger.info('进行定时规则决策')
            # 计算出下一次最近的执行时间戳,启动定时器
            next_decision_time = cls.get_closest_timestamp()
            if next_decision_time > 0.0:
                RuleMng.start_new_rule_decision_timer(next_decision_time)
            # 获取符合要求的uuid列表
            uuid_list = SqliteInterface.get_current_timer_rule()
            # 执行规则,将规则指令下发给指令管理器
            MyLog.logger.info('uuid_list size: ' + str(len(uuid_list)))
            dev_id_list = []
            rule_endtime_list = []
            for uuid in uuid_list:
                MyLog.logger.info('===开始执行规则(%s)===' % (uuid))
                priority = SqliteInterface.get_priority_by_uuid(uuid)
                if priority < 0:
                    continue
                py_model = RULE_PY_MODEL_PATH + uuid
                # 如果已经添加到了g_running_rule_endtime_list里,说明这个定时策略早就开始执行了
                if not find_running_rule_by_uuid(uuid):
                    EventReport.report_rule_start_event(uuid)

                    # 记录规则结束时间戳到全局变量g_running_rule,等待结束上报结束事件
                    start_ts, end_ts = cls.get_rule_timestamp(uuid)
                    MyLog.logger.info('规则(%s)结束时间戳:%d' % (uuid, end_ts))
                    if end_ts > 0:
                        rule_endtime_list.append({
                            'uuid': uuid,
                            "end_ts": end_ts
                        })
                # 执行脚本
                file = importlib.import_module(py_model)
                importlib.reload(file)
                # dev_command_list = [{'product_id': '', 'dev_id': "", "command_list":[{'service':'', 'param': , 'time': 10}]}]
                # event_list = event_list = [{"event_id":"", "src_dev_list":[{"productId":"p_id", "deviceId":"d_id"}]}]
                dev_command_list, event_list, attr_list = file.script_fun()
                ts = time.time()
                for dev_command in dev_command_list:
                    command_info_list = []
                    for command in dev_command['command_list']:
                        command_info = CommandInfo(uuid, command['service'],
                                                   command['param'], ts,
                                                   ts + command['time'],
                                                   priority, 'timer')
                        command_info_list.append(command_info)
                    if command_info_list:
                        # 如果已经添加到了g_running_rule_endtime_list里,说明联动事件已经添加到命令队列里了
                        if not find_running_rule_by_uuid(uuid):
                            DevCommandQueueMng.add_timer_command(
                                dev_command['product_id'],
                                dev_command['dev_id'], command_info_list)
                        # dev_id_list.append(dev_command['dev_id'])
                        DevCommandQueueMng.dev_exe_by_command_list(
                            dev_command['dev_id'], command_info_list)

                # 如果已经添加到了g_running_rule_endtime_list里,说明联动事件已经上报过了
                if not find_running_rule_by_uuid(uuid):
                    for custom_event in event_list:
                        EventReport.report_linkage_custom_event(
                            custom_event['event_id'],
                            custom_event['src_dev_list'])
                MyLog.logger.info('===结束执行规则(%s)===' % (uuid))

            add_running_rule_endtime(rule_endtime_list)
        except Exception as e:
            msg = MyLog.color_red("timer_rule_decision has except: " + str(e))
            MyLog.logger.error(msg)
Exemplo n.º 13
0
    def get_rule_timestamp(cls, uuid) -> (float, float):
        date_list, time_list = SqliteInterface.get_date_time_by_uuid(uuid)
        if not date_list or not time_list:
            msg = MyLog.color_red(
                "get_rule_timestamp has not date_list or time_list")
            MyLog.logger.error(msg)
            return 0, 0

        now_datetime = datetime.now()
        now_time = now_datetime.time()
        is_find_time = False
        for t in time_list:
            if compare_time(t['start_time'], now_time) and compare_time(
                    now_time, t['end_time']):
                # 规则时间段没有跨天
                end_time = t['end_time']
                start_time = t['start_time']
                end_datetime = datetime(now_datetime.year, now_datetime.month,
                                        now_datetime.day, end_time.hour,
                                        end_time.minute, end_time.second)
                start_datetime = datetime(now_datetime.year,
                                          now_datetime.month, now_datetime.day,
                                          start_time.hour, start_time.minute,
                                          start_time.second)
                is_find_time = True
                break
            elif compare_time(t['end_time'], t['start_time']) and \
                    (compare_time(t['start_time'], now_time) or compare_time(now_time, t['end_time'])):
                # 规则时间段跨天
                today_is_end_day = False
                end_time = t['end_time']
                start_time = t['start_time']
                for date in date_list:
                    if now_datetime.year == date[
                            'end_date'].year and now_datetime.month == date[
                                'end_date'].month and now_datetime.day == date[
                                    'end_date'].day:
                        # 如果当天为规则日期的最后一天,并且时间段跨天,那么规则要在0点的时候结束
                        today_is_end_day = True
                        break
                if today_is_end_day:
                    end_datetime = datetime(now_datetime.year,
                                            now_datetime.month,
                                            now_datetime.day, 23, 59, 59)
                else:
                    next_day = datetime.now() + timedelta(days=1)
                    end_datetime = datetime(next_day.year, next_day.month,
                                            next_day.day, end_time.hour,
                                            end_time.minute, end_time.second)
                start_datetime = datetime(now_datetime.year,
                                          now_datetime.month, now_datetime.day,
                                          start_time.hour, start_time.minute,
                                          start_time.second)
                is_find_time = True
                break

        if is_find_time:
            start_timestamp = datetime.timestamp(start_datetime)
            end_timestamp = datetime.timestamp(end_datetime)
            return start_timestamp, end_timestamp
        else:
            msg = MyLog.color_red(
                "get_rule_timestamp not find corresponding time")
            MyLog.logger.error(msg)
            return 0, 0
Exemplo n.º 14
0
 def __commit_data_db(cls, dev_id):
     try:
         SqliteInterface.add_run_cmd(dev_id=dev_id,
                                     cmd_list=cls.dev_run_cmd[dev_id])
     except Exception as db_exc:
         MyLog.logger.error(f'💉 commit db exception:{db_exc}')
Exemplo n.º 15
0
 def __get_run_cmd_data_db(cls):
     try:
         return SqliteInterface.get_run_cmd()
     except Exception as db_exc:
         MyLog.logger.error(f'💉 get db exception:{db_exc}')
Exemplo n.º 16
0
 def __remove_data_db(cls, dev_id):
     try:
         SqliteInterface.del_run_cmd_record(dev_id=dev_id)
     except Exception as db_exc:
         MyLog.logger.error(f'💉 remove db exception:{db_exc}')