Files
external_libcamera/include/libcamera/object.h
Laurent Pinchart 5a954cb8b5 libcamera: object: Notify objects of thread move
Send a synchronous message to objects just before they get moved to a
new thread. This allows the object to perform any required processing.
EventNotifier and Timer objects will use this mechanism to move
themselves to the new thread's event disaptcher.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
2019-08-17 18:32:30 +03:00

68 lines
1.4 KiB
C++

/* 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 <libcamera/bound_method.h>
namespace libcamera {
class Message;
template<typename... Args>
class Signal;
class SignalBase;
class Thread;
class Object
{
public:
Object();
virtual ~Object();
void postMessage(std::unique_ptr<Message> msg);
template<typename T, typename... Args, typename std::enable_if<std::is_base_of<Object, T>::value>::type * = nullptr>
void invokeMethod(void (T::*func)(Args...), Args... args)
{
T *obj = static_cast<T *>(this);
BoundMethodBase *method = new BoundMemberMethod<T, Args...>(obj, this, func);
void *pack = new typename BoundMemberMethod<T, Args...>::PackType{ args... };
invokeMethod(method, pack);
}
Thread *thread() const { return thread_; }
void moveToThread(Thread *thread);
protected:
virtual void message(Message *msg);
private:
template<typename... Args>
friend class Signal;
friend class BoundMethodBase;
friend class Thread;
void invokeMethod(BoundMethodBase *method, void *pack);
void notifyThreadMove();
void connect(SignalBase *signal);
void disconnect(SignalBase *signal);
Thread *thread_;
std::list<SignalBase *> signals_;
unsigned int pendingMessages_;
};
}; /* namespace libcamera */
#endif /* __LIBCAMERA_OBJECT_H__ */