libcamera v0.1.0+127-8e215127-dirty (2023-12-02T01:06:12+00:00)
Supporting cameras in Linux since 2019
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 * event_dispatcher_poll.h - 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
27{
28public:
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 */
A poll-based event dispatcher.
Definition: event_dispatcher_poll.h:27
void registerTimer(Timer *timer)
Register a timer.
Definition: event_dispatcher_poll.cpp:114
void unregisterEventNotifier(EventNotifier *notifier)
Unregister an event notifier.
Definition: event_dispatcher_poll.cpp:81
void unregisterTimer(Timer *timer)
Unregister a timer.
Definition: event_dispatcher_poll.cpp:126
void interrupt()
Interrupt any running processEvents() call as soon as possible.
Definition: event_dispatcher_poll.cpp:175
void registerEventNotifier(EventNotifier *notifier)
Register an event notifier.
Definition: event_dispatcher_poll.cpp:66
void processEvents()
Wait for and process pending events.
Definition: event_dispatcher_poll.cpp:143
Interface to manage the libcamera events and timers.
Definition: event_dispatcher.h:20
Notify of activity on a file descriptor.
Definition: event_notifier.h:20
Single-shot timer interface.
Definition: timer.h:23
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.