mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-12 23:09:45 +03:00
Source files in libcamera start by a comment block header, which includes the file name and a one-line description of the file contents. While the latter is useful to get a quick overview of the file contents at a glance, the former is mostly a source of inconvenience. The name in the comments can easily get out of sync with the file name when files are renamed, and copy & paste during development have often lead to incorrect names being used to start with. Readers of the source code are expected to know which file they're looking it. Drop the file name from the header comment block. The change was generated with the following script: ---------------------------------------- dirs="include/libcamera src test utils" declare -rA patterns=( ['c']=' \* ' ['cpp']=' \* ' ['h']=' \* ' ['py']='# ' ['sh']='# ' ) for ext in ${!patterns[@]} ; do files=$(for dir in $dirs ; do find $dir -name "*.${ext}" ; done) pattern=${patterns[${ext}]} for file in $files ; do name=$(basename ${file}) sed -i "s/^\(${pattern}\)${name} - /\1/" "$file" done done ---------------------------------------- This misses several files that are out of sync with the comment block header. Those will be addressed separately and manually. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
170 lines
3.4 KiB
C++
170 lines
3.4 KiB
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* Messages test
|
|
*/
|
|
|
|
#include <chrono>
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <thread>
|
|
|
|
#include <libcamera/base/message.h>
|
|
#include <libcamera/base/object.h>
|
|
#include <libcamera/base/thread.h>
|
|
|
|
#include "test.h"
|
|
|
|
using namespace std;
|
|
using namespace libcamera;
|
|
|
|
class MessageReceiver : public Object
|
|
{
|
|
public:
|
|
enum Status {
|
|
NoMessage,
|
|
InvalidThread,
|
|
MessageReceived,
|
|
};
|
|
|
|
MessageReceiver(Object *parent = nullptr)
|
|
: Object(parent), status_(NoMessage)
|
|
{
|
|
}
|
|
|
|
Status status() const { return status_; }
|
|
void reset() { status_ = NoMessage; }
|
|
|
|
protected:
|
|
void message(Message *msg)
|
|
{
|
|
if (msg->type() != Message::None) {
|
|
Object::message(msg);
|
|
return;
|
|
}
|
|
|
|
if (thread() != Thread::current())
|
|
status_ = InvalidThread;
|
|
else
|
|
status_ = MessageReceived;
|
|
}
|
|
|
|
private:
|
|
Status status_;
|
|
};
|
|
|
|
class RecursiveMessageReceiver : public Object
|
|
{
|
|
public:
|
|
RecursiveMessageReceiver()
|
|
: child_(this), success_(false)
|
|
{
|
|
}
|
|
|
|
bool success() const { return success_; }
|
|
|
|
protected:
|
|
void message([[maybe_unused]] Message *msg)
|
|
{
|
|
if (msg->type() != Message::None) {
|
|
Object::message(msg);
|
|
return;
|
|
}
|
|
|
|
child_.postMessage(std::make_unique<Message>(Message::None));
|
|
|
|
/*
|
|
* If the child has already received the message, something is
|
|
* wrong.
|
|
*/
|
|
if (child_.status() != MessageReceiver::NoMessage)
|
|
return;
|
|
|
|
Thread::current()->dispatchMessages(Message::None);
|
|
|
|
/* The child should now have received the message. */
|
|
if (child_.status() == MessageReceiver::MessageReceived)
|
|
success_ = true;
|
|
}
|
|
|
|
private:
|
|
MessageReceiver child_;
|
|
bool success_;
|
|
};
|
|
|
|
class MessageTest : public Test
|
|
{
|
|
protected:
|
|
int run()
|
|
{
|
|
Message::Type msgType[2] = {
|
|
Message::registerMessageType(),
|
|
Message::registerMessageType(),
|
|
};
|
|
|
|
if (msgType[0] != Message::UserMessage ||
|
|
msgType[1] != Message::UserMessage + 1) {
|
|
cout << "Failed to register message types" << endl;
|
|
return TestFail;
|
|
}
|
|
|
|
MessageReceiver *receiver = new MessageReceiver();
|
|
receiver->moveToThread(&thread_);
|
|
|
|
thread_.start();
|
|
|
|
receiver->postMessage(std::make_unique<Message>(Message::None));
|
|
|
|
this_thread::sleep_for(chrono::milliseconds(100));
|
|
|
|
MessageReceiver::Status status = receiver->status();
|
|
receiver->deleteLater();
|
|
|
|
switch (status) {
|
|
case MessageReceiver::NoMessage:
|
|
cout << "No message received" << endl;
|
|
return TestFail;
|
|
case MessageReceiver::InvalidThread:
|
|
cout << "Message received in incorrect thread" << endl;
|
|
return TestFail;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
/*
|
|
* Test recursive calls to Thread::dispatchMessages(). Messages
|
|
* should be delivered correctly, without crashes or memory
|
|
* leaks. Two messages need to be posted to ensure we don't only
|
|
* test the simple case of a queue containing a single message.
|
|
*/
|
|
RecursiveMessageReceiver *recursiveReceiver = new RecursiveMessageReceiver();
|
|
recursiveReceiver->moveToThread(&thread_);
|
|
|
|
recursiveReceiver->postMessage(std::make_unique<Message>(Message::None));
|
|
recursiveReceiver->postMessage(std::make_unique<Message>(Message::UserMessage));
|
|
|
|
this_thread::sleep_for(chrono::milliseconds(10));
|
|
|
|
bool success = recursiveReceiver->success();
|
|
recursiveReceiver->deleteLater();
|
|
|
|
if (!success) {
|
|
cout << "Recursive message delivery failed" << endl;
|
|
return TestFail;
|
|
}
|
|
|
|
return TestPass;
|
|
}
|
|
|
|
void cleanup()
|
|
{
|
|
thread_.exit(0);
|
|
thread_.wait();
|
|
}
|
|
|
|
private:
|
|
Thread thread_;
|
|
};
|
|
|
|
TEST_REGISTER(MessageTest)
|