summaryrefslogtreecommitdiff
path: root/include/libcamera/object.h
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2021-06-15 16:15:12 +0100
committerKieran Bingham <kieran.bingham@ideasonboard.com>2021-06-25 16:11:08 +0100
commit27aff949fbc1b9aabfc594bbfd6f94be55a086ec (patch)
tree9ddbc2462a685a6db3ed33f09ed7a493376439d6 /include/libcamera/object.h
parent6410d1d37c1ea9d1d168840a7ba063facb0bc9d6 (diff)
libcamera/base: Move extended base functionality
Move the functionality for the following components to the new base support library: - BoundMethod - EventDispatcher - EventDispatcherPoll - Log - Message - Object - Signal - Semaphore - Thread - Timer While it would be preferable to see these split to move one component per commit, these components are all interdependent upon each other, which leaves us with one big change performing the move for all of them. Reviewed-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'include/libcamera/object.h')
-rw-r--r--include/libcamera/object.h71
1 files changed, 0 insertions, 71 deletions
diff --git a/include/libcamera/object.h b/include/libcamera/object.h
deleted file mode 100644
index a1882f05..00000000
--- a/include/libcamera/object.h
+++ /dev/null
@@ -1,71 +0,0 @@
-/* SPDX-License-Identifier: LGPL-2.1-or-later */
-/*
- * Copyright (C) 2019, Google Inc.
- *
- * object.h - Base object
- */
-#ifndef __LIBCAMERA_OBJECT_H__
-#define __LIBCAMERA_OBJECT_H__
-
-#include <list>
-#include <memory>
-#include <vector>
-
-#include <libcamera/bound_method.h>
-
-namespace libcamera {
-
-class Message;
-template<typename... Args>
-class Signal;
-class SignalBase;
-class Thread;
-
-class Object
-{
-public:
- Object(Object *parent = nullptr);
- virtual ~Object();
-
- void deleteLater();
-
- void postMessage(std::unique_ptr<Message> msg);
-
- template<typename T, typename R, typename... FuncArgs, typename... Args,
- typename std::enable_if_t<std::is_base_of<Object, T>::value> * = nullptr>
- R invokeMethod(R (T::*func)(FuncArgs...), ConnectionType type,
- Args... args)
- {
- T *obj = static_cast<T *>(this);
- auto *method = new BoundMethodMember<T, R, FuncArgs...>(obj, this, func, type);
- return method->activate(args..., true);
- }
-
- Thread *thread() const { return thread_; }
- void moveToThread(Thread *thread);
-
- Object *parent() const { return parent_; }
-
-protected:
- virtual void message(Message *msg);
-
-private:
- friend class SignalBase;
- friend class Thread;
-
- void notifyThreadMove();
-
- void connect(SignalBase *signal);
- void disconnect(SignalBase *signal);
-
- Object *parent_;
- std::vector<Object *> children_;
-
- Thread *thread_;
- std::list<SignalBase *> signals_;
- unsigned int pendingMessages_;
-};
-
-} /* namespace libcamera */
-
-#endif /* __LIBCAMERA_OBJECT_H__ */