summaryrefslogtreecommitdiff
path: root/src/cam/event_loop.cpp
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-01-23 10:17:21 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-01-25 17:41:03 +0200
commit71ef5532d9777e9511bc982cab33e3d2d95cf4be (patch)
tree18e4de3ecc7c08a71813517118e6ab297721fa96 /src/cam/event_loop.cpp
parent67d313240c9ba5159b7600eae6a3c843fea849a8 (diff)
cam: Add event loop
Add a simple event loop to the cam application and use it in the main() function, with an example of how to handle SIGINT to gracefully stop the loop. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Diffstat (limited to 'src/cam/event_loop.cpp')
-rw-r--r--src/cam/event_loop.cpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/cam/event_loop.cpp b/src/cam/event_loop.cpp
new file mode 100644
index 00000000..e8ab8617
--- /dev/null
+++ b/src/cam/event_loop.cpp
@@ -0,0 +1,39 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+/*
+ * Copyright (C) 2019, Google Inc.
+ *
+ * event_loop.cpp - cam - Event loop
+ */
+
+#include <libcamera/event_dispatcher.h>
+
+#include "event_loop.h"
+
+using namespace libcamera;
+
+EventLoop::EventLoop(EventDispatcher *dispatcher)
+ : dispatcher_(dispatcher)
+{
+}
+
+EventLoop::~EventLoop()
+{
+}
+
+int EventLoop::exec()
+{
+ exitCode_ = -1;
+ exit_.store(false, std::memory_order_release);
+
+ while (!exit_.load(std::memory_order_acquire))
+ dispatcher_->processEvents();
+
+ return exitCode_;
+}
+
+void EventLoop::exit(int code)
+{
+ exitCode_ = code;
+ exit_.store(true, std::memory_order_release);
+ dispatcher_->interrupt();
+}