Improve error message when create_topic fails (#405)

* Improve error message when create_topic fails

Signed-off-by: Shane Loretz <sloretz@osrfoundation.org>

* Grammar

Signed-off-by: Shane Loretz <sloretz@osrfoundation.org>

Signed-off-by: Shane Loretz <sloretz@osrfoundation.org>
(cherry picked from commit 0898d191c14d7b84f438c445d4d92d586bd91225)
This commit is contained in:
Shane Loretz 2022-08-23 16:00:20 -07:00 committed by Mergify
parent d83b3f3903
commit 2e5c950eb4

View file

@ -1498,6 +1498,26 @@ static dds_entity_t create_topic(dds_entity_t pp, struct ddsi_sertopic * sertopi
return tp; return tp;
} }
void set_error_message_from_create_topic(dds_entity_t topic)
{
assert(topic < 0);
if (DDS_RETCODE_BAD_PARAMETER == topic) {
RMW_SET_ERROR_MSG(
"failed to create topic because the function was given"
" invalid parameters");
} else if (DDS_RETCODE_INCONSISTENT_POLICY == topic) {
RMW_SET_ERROR_MSG(
"failed to create topic because it's already in use"
" in this context with incompatible QoS settings");
} else if (DDS_RETCODE_PRECONDITION_NOT_MET == topic) {
RMW_SET_ERROR_MSG(
"failed to create topic because it's already in use"
" in this context with a different message type");
} else {
RMW_SET_ERROR_MSG("failed to create topic for unknown reasons");
}
}
///////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////
/////////// /////////// /////////// ///////////
/////////// PUBLICATIONS /////////// /////////// PUBLICATIONS ///////////
@ -1875,7 +1895,7 @@ static CddsPublisher * create_cdds_publisher(
struct ddsi_sertopic * stact; struct ddsi_sertopic * stact;
topic = create_topic(dds_ppant, sertopic, &stact); topic = create_topic(dds_ppant, sertopic, &stact);
if (topic < 0) { if (topic < 0) {
RMW_SET_ERROR_MSG("failed to create topic"); set_error_message_from_create_topic(topic);
goto fail_topic; goto fail_topic;
} }
if ((qos = create_readwrite_qos(qos_policies, false)) == nullptr) { if ((qos = create_readwrite_qos(qos_policies, false)) == nullptr) {
@ -2250,7 +2270,7 @@ static CddsSubscription * create_cdds_subscription(
rmw_cyclonedds_cpp::make_message_value_type(type_supports)); rmw_cyclonedds_cpp::make_message_value_type(type_supports));
topic = create_topic(dds_ppant, sertopic); topic = create_topic(dds_ppant, sertopic);
if (topic < 0) { if (topic < 0) {
RMW_SET_ERROR_MSG("failed to create topic"); set_error_message_from_create_topic(topic);
goto fail_topic; goto fail_topic;
} }
if ((qos = create_readwrite_qos(qos_policies, ignore_local_publications)) == nullptr) { if ((qos = create_readwrite_qos(qos_policies, ignore_local_publications)) == nullptr) {
@ -3842,7 +3862,7 @@ static rmw_ret_t rmw_init_cs(
struct ddsi_sertopic * pub_stact; struct ddsi_sertopic * pub_stact;
pubtopic = create_topic(node->context->impl->ppant, pub_st, &pub_stact); pubtopic = create_topic(node->context->impl->ppant, pub_st, &pub_stact);
if (pubtopic < 0) { if (pubtopic < 0) {
RMW_SET_ERROR_MSG("failed to create topic"); set_error_message_from_create_topic(pubtopic);
goto fail_pubtopic; goto fail_pubtopic;
} }
@ -3851,7 +3871,7 @@ static rmw_ret_t rmw_init_cs(
std::move(sub_msg_ts)); std::move(sub_msg_ts));
subtopic = create_topic(node->context->impl->ppant, sub_st); subtopic = create_topic(node->context->impl->ppant, sub_st);
if (subtopic < 0) { if (subtopic < 0) {
RMW_SET_ERROR_MSG("failed to create topic"); set_error_message_from_create_topic(subtopic);
goto fail_subtopic; goto fail_subtopic;
} }
// before proceeding to outright ignore given QoS policies, sanity check them // before proceeding to outright ignore given QoS policies, sanity check them