Подтвердить что ты не робот

Связь процесса в Python

Каков наилучший способ установления связи между двумя процессами в python? После некоторого googling я попытался сделать это:

parent_pipe, child_pipe = Pipe()
p = Process(target = instance_tuple.instance.run(), \
    args = (parent_pipe, child_pipe,))
p.start()

Отправка данных дочернему процессу:

command = Command(command_name, args)
parent_pipe.send(command)

Целевая функция процесса:

while True:
    if (self.parent_pipe.poll()):
        command = parent_pipe.recv()
        if (command.name == 'init_model'):
            self.init_model()
        elif (command.name == 'get_tree'):
            tree = self.get_fidesys_tree(*command.args)
            result = CommandResult(command.name, tree)
            self.child_pipe.send(result)
        elif(command.name == 'set_variable'):
            name = command.args[0]
            value = command.args[1]
            self.config[name] = value

Но он не работает (дочерний процесс ничего не получает через parent_pipe). Как я могу это исправить?

Спасибо заранее.

4b9b3361

Ответ 2

Если я понимаю документацию, в дочернем процессе вы должны читать из дочерней части канала.

# Process Target function

while True:
        # poll(None) because you don't want to go through the loop fast between commands
        if (self.child_pipe.poll(None)):    
            command = child_pipe.recv()
            if (command.name == 'init_model'):
                self.init_model()
            elif (command.name == 'get_tree'):
                tree = self.get_fidesys_tree(*command.args)
                result = CommandResult(command.name, tree)
                self.child_pipe.send(result)
            elif(command.name == 'set_variable'):
                name = command.args[0]
                value = command.args[1]
                self.config[name] = value