本文整理汇总了Python中connector.Connector.send方法的典型用法代码示例。如果您正苦于以下问题:Python Connector.send方法的具体用法?Python Connector.send怎么用?Python Connector.send使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类connector.Connector
的用法示例。
在下文中一共展示了Connector.send方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Modem
# 需要导入模块: from connector import Connector [as 别名]
# 或者: from connector.Connector import send [as 别名]
#.........这里部分代码省略.........
self.conn.close()
def recvData(self):
"""
Receive the data as they are from the node, it is a blocking
function. To check if data has to be received, query the
self.conn.dataAvailable() function
@param self pointer to the class object
@return the incoming string from the TCP connection
"""
prec_state = self.status
self.status = Modem.Status.BUSY2RECV
data = self.conn.recvData()
self.status = prec_state
self.checkConnection(data)
return data
def recvCommand(self):
"""
Receive and process a command from the node
@param self pointer to the class object
@return the incoming string from the TCP connection
"""
prec_state = self.status
self.status = Modem.Status.BUSY2RECV
command = self.conn.recvCommand()
self.status = prec_state
self.checkConnection(command)
# self.parseCommand(command.rstrip('\n'))
self.parseDivCommands(command)
return command
def send(self, msg):
"""
Send a message to the submerged node
@param self pointer to the class object
@param msg message that has to be conveyed to the submerged node
"""
sleep(self.m_to)
self.conn.send(msg)
def sendDataFile(self, file_path):
"""
Send a file to the submerged node. It may raise an exception.
@param self pointer to the class object
@param file_path path of the file that has to be sent
"""
while self.status != Modem.Status.IDLE :
sleep(0.1)
if self.status != Modem.Status.IDLE:
raise ValueError("Modem sendDataFile unexpected status: \
" + str(self.status))
if not os.path.isfile(file_path):
raise FileNotFoundError("Modem sendDataFile file does not \
exist: " + file_path)
self.status = Modem.Status.BUSY2REQ
name = os.path.basename(file_path)
size = os.path.getsize(file_path)
self.send(self.interpreter.buildSendFile(name,size))
#sleep(self.m_to/2) #to give the rx the time to parse the command
while self.status != Modem.Status.IDLE and self.status != Modem.Status.KILL:
sleep(self.m_to)
# self.recvCommand()
if self.status == Modem.Status.KILL: