当前位置: 首页>>代码示例>>Python>>正文


Python Interpreter.buildRun方法代码示例

本文整理汇总了Python中interpreter.Interpreter.buildRun方法的典型用法代码示例。如果您正苦于以下问题:Python Interpreter.buildRun方法的具体用法?Python Interpreter.buildRun怎么用?Python Interpreter.buildRun使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在interpreter.Interpreter的用法示例。


在下文中一共展示了Interpreter.buildRun方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: Modem

# 需要导入模块: from interpreter import Interpreter [as 别名]
# 或者: from interpreter.Interpreter import buildRun [as 别名]

#.........这里部分代码省略.........
            1 (force) stop recording and start transmitting
            2 (both) do both the operations together
        """
        while self.status != Modem.Status.IDLE :
            sleep(0.1)
        if self.status != Modem.Status.IDLE:
            raise ValueError("Modem playProj unexpected status: \
                " + str(self.status))
        self.status = Modem.Status.BUSY2REQ
        self.send(self.interpreter.buildPlay(name, ID_list, starting_time, \
            n_rip, delete, force_flag))
        while self.status != Modem.Status.IDLE and self.status != Modem.Status.KILL:
            sleep(self.m_to)
            # self.recvCommand()
        if self.status == Modem.Status.KILL:
            return self.close()
        return self.errorCheck()

    def reqRunScript(self, script_name, output_name, starting_time, duration):
        """
        Run a script in the node. 
        @param self pointer to the class object
        @param script_name of the file that has to be run
        @paran output_name where to redirect the output of the script
        @param starting_time Unix timestamp, in second, when to start playing the file
        @param duration in minutes of the script
        """
        while self.status != Modem.Status.IDLE :
            sleep(0.1)
        if self.status != Modem.Status.IDLE:
            raise ValueError("Modem reqRunScript unexpected status: \
                " + str(self.status))
        self.status = Modem.Status.BUSY2REQ
        self.send(self.interpreter.buildRun(script_name, output_name, \
            starting_time, duration))
        while self.status != Modem.Status.IDLE and self.status != Modem.Status.KILL:
            sleep(self.m_to)
            #self.recvCommand()
        if self.status == Modem.Status.KILL:
            return self.close()
        return self.errorCheck()
        
    def reqRecordData(self, name, sens_t, ID_list, starting_time, duration, \
                        force_flag = 0):
        """
        record via sensors (either hydrophones, camera or others).
        @param self pointer to the class object
        @param name of the file where to record the audio
        @param sens_t of the sensors that have to record the data:
            0 --> hydrophone,
            1 --> camera
            2 --> others
        @param ID_list list of the projector IDs used to record the audio
        @param starting_time Unix timestamp, in second, when to start recording the file
        @param duration duration, in minutes of the recording
        @param force_flag if trying to record while transmitting:
            0 (default) not allowed (error feedback)
            1 (force) stop transmitting and start recording
            2 (both) do both the operations together
        """
        while self.status != Modem.Status.IDLE :
            sleep(0.1)
        if self.status != Modem.Status.IDLE:
            raise ValueError("Modem recordAudio unexpected status:\
                " + str(self.status))
        self.status = Modem.Status.BUSY2REQ
开发者ID:marinetech,项目名称:Udoo,代码行数:70,代码来源:modem.py


注:本文中的interpreter.Interpreter.buildRun方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。