libcamera v0.3.2
Supporting cameras in Linux since 2019
Loading...
Searching...
No Matches
object.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 * Base object
6 */
7
8#pragma once
9
10#include <list>
11#include <memory>
12#include <vector>
13
15
16namespace libcamera {
17
18class Message;
19template<typename... Args>
20class Signal;
21class SignalBase;
22class Thread;
23
24class Object
25{
26public:
27 Object(Object *parent = nullptr);
28 virtual ~Object();
29
30 void deleteLater();
31
32 void postMessage(std::unique_ptr<Message> msg);
33
34 template<typename T, typename R, typename... FuncArgs, typename... Args,
35 std::enable_if_t<std::is_base_of<Object, T>::value> * = nullptr>
36 R invokeMethod(R (T::*func)(FuncArgs...), ConnectionType type,
37 Args&&... args)
38 {
39 T *obj = static_cast<T *>(this);
40 auto *method = new BoundMethodMember<T, R, FuncArgs...>(obj, this, func, type);
41 return method->activate(args..., true);
42 }
43
44 Thread *thread() const { return thread_; }
46
47 Object *parent() const { return parent_; }
48
49protected:
50 virtual void message(Message *msg);
51
52 bool assertThreadBound(const char *message);
53
54private:
55 friend class SignalBase;
56 friend class Thread;
57
58 void notifyThreadMove();
59
60 void connect(SignalBase *signal);
61 void disconnect(SignalBase *signal);
62
63 Object *parent_;
64 std::vector<Object *> children_;
65
66 Thread *thread_;
67 std::list<SignalBase *> signals_;
68 unsigned int pendingMessages_;
69};
70
71} /* namespace libcamera */
Method bind and invocation.
A message that can be posted to a Thread.
Definition message.h:24
Base object to support automatic signal disconnection.
Definition object.h:25
Object(Object *parent=nullptr)
Construct an Object instance.
Definition object.cpp:69
R invokeMethod(R(T::*func)(FuncArgs...), ConnectionType type, Args &&... args)
Invoke a method asynchronously on an Object instance.
Definition object.h:36
Object * parent() const
Retrieve the object's parent.
Definition object.h:47
virtual void message(Message *msg)
Message handler for the object.
Definition object.cpp:201
bool assertThreadBound(const char *message)
Check if the caller complies with thread-bound constraints.
Definition object.cpp:247
void deleteLater()
Schedule deletion of the instance in the thread it belongs to.
Definition object.cpp:160
void moveToThread(Thread *thread)
Move the object and all its children to a different thread.
Definition object.cpp:306
virtual ~Object()
Destroy an Object instance.
Definition object.cpp:98
Thread * thread() const
Retrieve the thread the object is bound to.
Definition object.h:44
void postMessage(std::unique_ptr< Message > msg)
Post a message to the object's thread.
Definition object.cpp:184
A thread of execution.
Definition thread.h:29
Top-level libcamera namespace.
Definition backtrace.h:17
ConnectionType
Connection type for asynchronous communication.
Definition bound_method.h:19