from tools.ToolBase import ToolBase

class NcTool(ToolBase):
    def validate_instruction(self, instruction):
        timeout = 60
        #指令过滤
        if "<<<" in instruction:
            instruction = f"bash -c \"{instruction}\""
        return instruction,timeout

    def analyze_result(self, result,instruction,stderr,stdout):
        #指令结果分析

        return result