blob: a479166604241740f09a881cb63f3ff6abee2e34 [file] [log] [blame]
Shad Ansari30a23732021-09-29 23:07:21 -07001import time
2import threading
3try:
4 from greenlet import getcurrent as get_ident
5except ImportError:
6 try:
7 from thread import get_ident
8 except ImportError:
9 from _thread import get_ident
10
11
12class CameraEvent(object):
13 """An Event-like class that signals all active clients when a new frame is
14 available.
15 """
16 def __init__(self):
17 self.events = {}
18
19 def wait(self):
20 """Invoked from each client's thread to wait for the next frame."""
21 ident = get_ident()
22 if ident not in self.events:
23 # this is a new client
24 # add an entry for it in the self.events dict
25 # each entry has two elements, a threading.Event() and a timestamp
26 self.events[ident] = [threading.Event(), time.time()]
27 return self.events[ident][0].wait()
28
29 def set(self):
30 """Invoked by the camera thread when a new frame is available."""
31 now = time.time()
32 remove = None
33 for ident, event in self.events.items():
34 if not event[0].isSet():
35 # if this client's event is not set, then set it
36 # also update the last set timestamp to now
37 event[0].set()
38 event[1] = now
39 else:
40 # if the client's event is already set, it means the client
41 # did not process a previous frame
42 # if the event stays set for more than 5 seconds, then assume
43 # the client is gone and remove it
44 if now - event[1] > 5:
45 remove = ident
46 if remove:
47 del self.events[remove]
48
49 def clear(self):
50 """Invoked from each client's thread after a frame was processed."""
51 self.events[get_ident()][0].clear()
52
53
54class BaseCamera(object):
55 thread = None # background thread that reads frames from camera
56 frame = None # current frame is stored here by background thread
57 last_access = 0 # time of last client access to the camera
58 event = CameraEvent()
Shad Ansarib5808d72021-10-04 12:43:27 -070059 port = 0 # default starting port offset
Shad Ansari30a23732021-09-29 23:07:21 -070060
61 def __init__(self):
62 """Start the background camera thread if it isn't running yet."""
63 if BaseCamera.thread is None:
64 BaseCamera.last_access = time.time()
65
66 # start background frame thread
67 BaseCamera.thread = threading.Thread(target=self._thread)
68 BaseCamera.thread.start()
69
70 # wait until frames are available
71 while self.get_frame() is None:
72 time.sleep(0)
73
74 def get_frame(self):
75 """Return the current camera frame."""
76 BaseCamera.last_access = time.time()
77
78 # wait for a signal from the camera thread
79 BaseCamera.event.wait()
80 BaseCamera.event.clear()
81
82 return BaseCamera.frame
83
Shad Ansari341ca3a2021-09-30 12:10:00 -070084 def frames(self):
Shad Ansari30a23732021-09-29 23:07:21 -070085 """"Generator that returns frames from the camera."""
Shad Ansari341ca3a2021-09-30 12:10:00 -070086 raise NotImplementedError('Must be implemented by subclasses.')
Shad Ansari30a23732021-09-29 23:07:21 -070087
88 def _thread(self):
89 """Camera background thread."""
90 frames_iterator = self.frames()
91 for frame in frames_iterator:
92 BaseCamera.frame = frame
93 BaseCamera.event.set() # send signal to clients
94 time.sleep(0)
95
96 # if there hasn't been any clients asking for frames in
97 # the last 10 seconds then stop the thread
98 if time.time() - BaseCamera.last_access > 10:
99 frames_iterator.close()
100 print('Stopping camera thread due to inactivity.')
101 break
102 BaseCamera.thread = None