Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/276.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 具有子处理函数的多处理_Python_Linux_Subprocess_Python Multiprocessing - Fatal编程技术网

Python 具有子处理函数的多处理

Python 具有子处理函数的多处理,python,linux,subprocess,python-multiprocessing,Python,Linux,Subprocess,Python Multiprocessing,我正在编写一个程序,该程序具有使用子进程接收/传输消息的功能。然而,我希望能够在后台运行接收,同时能够打印接收到的任何内容 请参阅代码: #!/usr/bin/python import subprocess,time, timeit from multiprocessing import Process, Queue import re, os, pprint, math from collections import defaultdict Dict = {} identifier =

我正在编写一个程序,该程序具有使用子进程接收/传输消息的功能。然而,我希望能够在后台运行接收,同时能够打印接收到的任何内容

请参阅代码:

#!/usr/bin/python

import subprocess,time, timeit
from multiprocessing import Process, Queue
import re, os, pprint, math
from collections import defaultdict

Dict = {}
identifier = ""
hexbits = []
count = defaultdict(int)


def receive():
    process = subprocess.Popen('receivetest -f=/dev/pcan32', stdout=subprocess.PIPE)
    lines = iter(process.stdout.readline, "")
    try:
        start = time.clock()
        for line in lines:
            if re.match(r"^\d+.*$",line):
                splitline = line.split()
                del splitline[1:4]
                identifier = splitline[1]
                count[identifier] += 1
                end = time.clock()
                timing = round((end - start) * 10000, 100)
                dlc = splitline[2]
                hexbits = splitline[3:]
                Dict[identifier] = [dlc, hexbits, count[identifier],int(timing)]
                time.sleep(0.005)
                start = end 


    except keyboardinterrupt:
        pass

def transmit(command):
    transfile = "transfile.txt"
    file = open(transfile,'w')
    file.write("# please type your can message below\n")
    file.write("# using the following example\n")
    file.write("# m s [can id] [data bytes]\n")
    file.close()
    os.system("vi transfile.txt")
    trans = subprocess.Popen(command, stdout=subprocess.pipe)
    lines = trans.communicate()
    print lines

operation = raw_input('please enter T for transmit and R for receive: ')

if((operation == 'T') or (operation == 't')):
    transmit(["transmitest", "transfile.txt","-f=/dev/pcan32"])
elif((operation == 'R') or (operation == 'r')):
    if __name__ == '__main__':
        os.system("echo \"i 0x011c e\"  >/dev/pcan32")
        #receive(["receivetest", "-f=/dev/pcan32"])
        run_receive = Process(target=receive, args=())
        run_receive.start()
        run_receive.join()
        for identifier, hexbits in Dict.items():
            os.system("clear")
            pprint.pprint(Dict, width = 150)

else:
    print("PLEASE ENTER VALID OPTION")
但是,我遇到以下错误:

Trace (most recent call last):
    File "/usr/lib/python2.7/multiprocessing/process.py", line 258, in _bootstrap
        self.run()
    File "/usr/lib/python2.7/multiprocessing/process.py", line 258, in run
        self._target(*self._args, **self._kwargs)
    File "./cancheck.py", line 16, in receive
        process = subprocess.Popen(command, stdout=subprocess.PIPE)
    File "/usr/lib/python2.7/subprocess.py", line 679, in __init__
        errread, errwrite)
    File "/usr/lib/python2.7/subprocess.py", line 679, in _execute_child
        raise child_exception
OSError: [Errno 2] No such file or directory

有人能帮忙吗,我不知道如何对包含子进程的函数进行多处理。

看来子进程命令调用无法解析文件。我建议验证
transmit
是否在执行路径中,以及
transfile.txt
/dev/pcan32
是否都存在

另一个注意事项是,在
receive
定义中,
Popen
调用看起来需要更改

# Original version
# process = subprocess.Popen('receivetest -f=/dev/pcan32', stdout=subprocess.PIPE)

# Change to this:
process = subprocess.Popen('receivetest -f=/dev/pcan32'.split(), stdout=subprocess.PIPE)

原因是Popen期望一个iterable序列作为其第一个参数。

我认为如果直接调用
receive
,而不涉及
多处理
,您将得到相同的错误。