libcamera v0.4.0
Supporting cameras in Linux since 2019
 
Loading...
Searching...
No Matches
event_dispatcher_poll.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2/*
3 * Copyright (C) 2019, Google Inc.
4 *
5 * Poll-based event dispatcher
6 */
7
8#pragma once
9
10#include <list>
11#include <map>
12#include <vector>
13
14#include <libcamera/base/private.h>
15
18
19struct pollfd;
20
21namespace libcamera {
22
23class EventNotifier;
24class Timer;
25
26class EventDispatcherPoll final : public EventDispatcher
27{
28public:
29 EventDispatcherPoll();
30 ~EventDispatcherPoll();
31
34
35 void registerTimer(Timer *timer);
36 void unregisterTimer(Timer *timer);
37
38 void processEvents();
39 void interrupt();
40
41private:
42 struct EventNotifierSetPoll {
43 short events() const;
44 EventNotifier *notifiers[3];
45 };
46
47 int poll(std::vector<struct pollfd> *pollfds);
48 void processInterrupt(const struct pollfd &pfd);
49 void processNotifiers(const std::vector<struct pollfd> &pollfds);
50 void processTimers();
51
52 std::map<int, EventNotifierSetPoll> notifiers_;
53 std::list<Timer *> timers_;
54 UniqueFD eventfd_;
55
56 bool processingEvents_;
57};
58
59} /* namespace libcamera */
void registerTimer(Timer *timer)
Register a timer.
Definition event_dispatcher_poll.cpp:113
void unregisterEventNotifier(EventNotifier *notifier)
Unregister an event notifier.
Definition event_dispatcher_poll.cpp:80
void unregisterTimer(Timer *timer)
Unregister a timer.
Definition event_dispatcher_poll.cpp:125
void interrupt()
Interrupt any running processEvents() call as soon as possible.
Definition event_dispatcher_poll.cpp:174
void registerEventNotifier(EventNotifier *notifier)
Register an event notifier.
Definition event_dispatcher_poll.cpp:65
void processEvents()
Wait for and process pending events.
Definition event_dispatcher_poll.cpp:142
Interface to manage the libcamera events and timers.
Definition event_dispatcher.h:18
Notify of activity on a file descriptor.
Definition event_notifier.h:20
Single-shot timer interface.
Definition timer.h:22
unique_ptr-like wrapper for a file descriptor
Definition unique_fd.h:18
Top-level libcamera namespace.
Definition backtrace.h:17
File descriptor wrapper that owns a file descriptor.