python中的多线程 - 阻止在后台运行的调用

时间:2013-03-14 15:52:54

标签: python multithreading udp

我最近一直在研究一个程序(正如你可能从我之前提出的问题中看到的那样)而且我在理解和实现多线程方面遇到了麻烦。

我按照教程(binary tides)设置了UDP服务器,效果很好。然而,我遇到的问题是,当我在新线程上创建阻塞UDP套接字时,我在主程序中最初创建线程的代码不起作用。以下是我的一些代码:

main.py:

from thread import*
import connections


start_new_thread(networkStart.startConnecton())
print 'This should print!'

networkStart.py:

def startConnecton():
    userData.s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
    print 'Socket created'
    try:
        userData.s.bind((HOST, PORT))
    except socket.error, msg:
        print 'Bind failed. Error code: ' +str(msg[0]) + 'Message' +msg[1]
        sys.exit()
    print 'Socket bind complete'
    userData.s.listen(10) 
    # Set the socket to listening mode, if there are more than 10 connections waiting reject the rest
    print 'Socket now listening' 
    #Function for handling connections. Each new connection is handled on a separate thread
    start_new_thread(connections.connectionListen())

connections.py:

def connectionListen():
    while 1:
            print 'waiting for connection'
            #wait to accept a connection - blocking call
            conn, addr = userData.s.accept()
            userData.clients += 1
            print 'Connected with ' + addr[0] + ':' + str(addr[1])
            #start new thread takes 1st argument as a function name to be run, second is the tuple of arguments 
            start_new_thread(users.clientthread ,(conn, userData.clients))

我基本上只是希望能够在新线程上调用startConnection函数后在main.py中执行任何代码(即,在此实例中打印字符串)。

我一直在努力学习这个程序很长一段时间,Python对我来说是新手,我发现它非常具有挑战性。我假设我必须在实现多线程的方式上犯一些错误,任何帮助都会非常感激!

1 个答案:

答案 0 :(得分:5)

start_new_thread接收函数和参数列表,但您直接使用函数调用:start_new_thread(networkStart.startConnecton())

但是,我建议您使用具有更高抽象级别的threading模块(the official documentation does so)。

import threading
import connections

threading.Thread(target=networkStart.startConnecton).start()
print 'This should print!'