I have a Python program and when I exit the application with Ctrl-c, the script does not close. My process still shows in running processes.
#!/usr/bin/env python
import socket
import threading
import Queue
import serial
import mysql.connector
from datetime import datetime, date, time
host = '0.0.0.0'
port = 1024
buffer = 102400
my_queue = Queue.Queue()
class readFromUDPSocket(threading.Thread):
def __init__(self, my_queue):
threading.Thread.__init__(self)
self.my_queue = my_queue
def run(self):
while True:
buffer1,addr = socketUDP.recvfrom(buffer)
self.my_queue.put(buffer1)
print 'UDP received'
class readFromSerial(threading.Thread):
def __init__(self, my_queue):
threading.Thread.__init__(self)
self.my_queue = my_queue
def run(self):
while True:
buffer2 = ser.readline(eol=';')
if buffer2:
self.my_queue.put(buffer2)
print 'Serial received'
class process(threading.Thread):
def __init__(self, my_queue):
threading.Thread.__init__(self)
self.my_queue = my_queue
self.alive = threading.Event()
self.alive.set()
def run(self):
while True:
buffer3 = self.my_queue.get()
today = datetime.now()
timestamp = today.strftime("%A, %B %d, %Y %H:%M:%S")
print 'Data pushed at:', timestamp
print buffer3
if buffer3.startswith('temp:'):
temp = buffer3.replace('temp:','')
cnx = mysql.connector.connect(user='root', password='xxxxx', database='temperature')
cursor = cnx.cursor()
cursor.execute("INSERT INTO temperature.temperature (time,temperature) VALUES (%s, %s)", [timestamp, temp])
print 'Data inserted into Database'
cnx.commit()
cursor.close()
cnx.close()
if __name__ == '__main__':
# Create socket (IPv4 protocol, datagram (UDP)) and bind to address
socketUDP = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
socketUDP.bind((host, port))
ser = serial.Serial('/dev/ttyUSB0', 57600, timeout=2)
# Instantiate & start threads
myServer = readFromUDPSocket(my_queue)
mySerial = readFromSerial(my_queue)
myDisplay = process(my_queue)
myServer.start()
myDisplay.start()
mySerial.start()
while 1:
pass
UDPSock.close()
ser.close()
Why does the python thread not close with Ctrl+c?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…