DDS笔记: hello world解析

fast dds 2.2.x中hello world代码总结:

1) 核心逻辑流程

获取DomainParticipantFactory -> 创建participant -> 注册sub-pub type -> 创建topic(顺序可延后) -> 创建publisher / subscriber -> 创建writer / reader -> write / read / WaitSet.wait

2)除获取factory外,创建其他对象之前都要准备好对应qos、listener、mask等参数。

3)subscriber有2种模式:

(1)listener callback

创建subscriber时传入listener参数,通过listener回调事件和数据(on_subscription_matched, on_data_available)。

(2)wait set

创建subscriber后,通过WaitSet来关联多个Condition,监听相应各个Condition的变化。

关联reader的status condition,监听topic的订阅和数据更新

关联stop condition,监听程序停止动作。

  1. publisher app主要流程
    1)创建factory
    2)创建participant
    3)创建publisher
    4)创建topic
    5)创建writer
    6)发布数据
c++ 复制代码
	// 1
	auto factory = DomainParticipantFactory::get_instance();
	// 2 listener null, mask none
	auto participant = factory->create_participant_with_default_profile(null_listener, mask);
	assert(participant);
	// 注册关联pub-sub-type
	pub_sub_type.register_type(participant);

	// 3 listener null, mask none
	auto publisher = pariticipant->create_publisher(pub_qos, null_listener, mask);
	assert(publisher);

	// 4
	auto topic = participant->create_topic(topic_name, topic_type, topic_qos);
	assert(topic);
	
	// 5 listener, mask all
	auto writer = publisher->create_datawriter(topic, writer_qos, listener, mask);
	assert(writer);

	// 6
	Helloworld hello{...};
	writer->write(&hello);
  1. ListenerSubscriberApp主要流程
    1)创建participant factory
    2)创建participant
    3)创建subscriber
    4)创建topic
    5)创建data reader
    6)data callback
cpp 复制代码
	// 1
	auto factory = DomainParticipantFactory::get_instance();

	// 2 listener null, mask none
	auto participant = factory->create_participant_with_default_profile(null_listener, mask);
	assert(participant);
	pub_sub_type.register_type(participant);

	// 3 listener null, mask none
	auto subscriber = participant->create_subscriber(sub_qos, null_listener, mask);
	assert(subscriber);

	// 4
	auto topic = participant->create_topic(topic_name, topic_type, topic_qos);
	assert(topic);

	// 5 listener, mask all
	auto reader = subscriber->create_datareader(topic, reader_qos, listener, mask);
	assert(reader);

	// 6 data callback
	class DataReaderListener {
		void on_data_available(DataReader *reader); // <<<---
		void on_subscription_matched(DataReader *reader, status); // <<<---
		void on_requested_deadline_missed(DataReader *reader, status);
		void on_liveness_changed(DataReader *reader, status);
		void on_sample_rejected(DataReader *reader, status);
		void on_sample_lost(DataReader *reader, status);
		void on_requested_incompatible_qos(DataReader *reader, status);
	};
	
	void on_subscription_matched(DataReader *reader, SubscriptionMatchedStatus& status) {
		// check matched count
	}

	void on_data_available(Datareader *reader) {
		// read and process data
		Helloworld hello;
		SampleInfo info;
		reader->take_next_sample(&hello, &info);
	}
  1. WaitsetSubscriberApp main process
    1)创建factory
    2)创建participant
    3)创建subscriber
    4)创建topic
    5)创建data reader
    6)WaitSet attach Condition
    7)WaitSet wait Condition
cpp 复制代码
	// 1
	auto factory = DomainParticipantFactory::get_instance();
	
	// 2 listener null, mask none
	auto participant = factory->create_participant_with_default_profile(null_listener, mask);
	assert(participant);	
	pub_sub_type.register_type(participant);

	// 3 listener null, mask none
	auto subscriber = participant->create_subscriber(sub_qos, null_listener, mask)
	assert(subscriber);
	
	// 4
	auto topic = participant->create_topic(topic_name, topic_type, topic_qos);
	assert(topic);

	// 5 null listener, mask all
	auto reader = subscriber->create_datareader(topic, sub_qos, null_listener, mask);
	assert(reader);

	// 6
//	.hpp: 	WaitSet wait_setp;
//			GuardCondtion terminate_condition;

	// ---->>> ***************
	// 这里是关键,把wait和reader的status condition关联起来,监听reader的变化
	// 同时处理terminate_condition,监听stop事件
	wait_set.attach_condition(reader->get_statuscondition());
	wait_set.attach_condition(terminate_condition);

	// 7
	ConditionSeq triggered_conditions;
	wait_set.wait(triggered_conditions, timeout);
	for(Condition* cond : triggered_conditions) {
		auto *status_cond = dynamic_cast<StatusCondition>(cond);
		assert(status_cond);

		Entity *entity = status_cond.get_entity();
		StatusMask changed_status = entity->get_status_changes();

		if (changed_status.is_active(StatusMask::subscriptioin_matched()) {
			// check matched count
		}

		if (changed_status.is_active(StatusMask::data_available())) {
			// read and process data
			SampleInfo info;
			Helloworld hello;
			reader->take_next_sample(&hello, &info);
		}
	}
相关推荐
敲上瘾7 分钟前
操作系统的理解
linux·运维·服务器·c++·大模型·操作系统·aigc
不会写代码的ys13 分钟前
【类与对象】--对象之舞,类之华章,共绘C++之美
c++
兵哥工控15 分钟前
MFC工控项目实例三十二模拟量校正值添加修改删除
c++·mfc
长弓聊编程25 分钟前
Linux系统使用valgrind分析C++程序内存资源使用情况
linux·c++
dr李四维31 分钟前
iOS构建版本以及Hbuilder打iOS的ipa包全流程
前端·笔记·ios·产品运营·产品经理·xcode
cherub.32 分钟前
深入解析信号量:定义与环形队列生产消费模型剖析
linux·c++
暮色_年华1 小时前
Modern Effective C++item 9:优先考虑别名声明而非typedef
c++
重生之我是数学王子1 小时前
QT基础 编码问题 定时器 事件 绘图事件 keyPressEvent QT5.12.3环境 C++实现
开发语言·c++·qt
我们的五年1 小时前
【Linux课程学习】:进程程序替换,execl,execv,execlp,execvp,execve,execle,execvpe函数
linux·c++·学习
做人不要太理性2 小时前
【C++】深入哈希表核心:从改造到封装,解锁 unordered_set 与 unordered_map 的终极奥义!
c++·哈希算法·散列表·unordered_map·unordered_set