Python에서 BlockingQueue를 사용하여 키보드 처리기를 구현하는 방법은 무엇입니까?

Susan Sarandon
풀어 주다: 2024-10-30 12:47:02
원래의
204명이 탐색했습니다.

How to Implement a Keyboard Handler Using a BlockingQueue in Python?

키 누름을 수신할 때마다 함수를 호출하는 키보드 핸들러를 구현하는 가장 간단한 방법 중 하나(Linux와 Windows 모두에서 작동함)는 BlockingQueue를 사용하고 키를 눌렀을 때 큐에 키를 배치하고 큐는 나중에 코드에서 키를 가져오는 스레드입니다. 간단한 구현은 다음과 같습니다.

<code class="python">import queue
import sys
import threading

# blocking
q = queue.Queue()
last_input = 0.0


def input_thread(q):
    global last_input
    while True:
        ch = sys.stdin.read(1)
        last_input = time.time()
        print("got key: '{}'".format(ch))
        q.put(ch)

if __name__ == '__main__':
    t = threading.Thread(target=input_thread, args=(q,))
    t.daemon = True
    t.start()

    last_input_time = last_input

    while True:
        if not q.empty() and (time.time() - last_input) < 5:
            print("polling '{}' in the queue".format(q.get()))

        if time.time() - last_input_time > 5:
            print("nothing in the queue for a while")
            raise RuntimeError("no input")</code>
로그인 후 복사

위 내용은 Python에서 BlockingQueue를 사용하여 키보드 처리기를 구현하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!