Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rmw preallocate #51

Merged
merged 7 commits into from
May 2, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 48 additions & 7 deletions rmw_implementation/src/functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,17 @@ RMW_INTERFACE_FN(rmw_node_get_graph_guard_condition,
const rmw_guard_condition_t *, nullptr,
1, ARG_TYPES(const rmw_node_t *))

RMW_INTERFACE_FN(rmw_init_publisher_allocation,
rmw_ret_t, RMW_RET_ERROR,
3, ARG_TYPES(
const rosidl_message_type_support_t *,
const rosidl_message_bounds_t *,
rmw_publisher_allocation_t *))

RMW_INTERFACE_FN(rmw_fini_publisher_allocation,
rmw_ret_t, RMW_RET_ERROR,
1, ARG_TYPES(rmw_publisher_allocation_t *))

RMW_INTERFACE_FN(rmw_create_publisher,
rmw_publisher_t *, nullptr,
4, ARG_TYPES(
Expand All @@ -269,7 +280,7 @@ RMW_INTERFACE_FN(rmw_destroy_publisher,

RMW_INTERFACE_FN(rmw_publish,
rmw_ret_t, RMW_RET_ERROR,
2, ARG_TYPES(const rmw_publisher_t *, const void *))
3, ARG_TYPES(const rmw_publisher_t *, const void *, rmw_publisher_allocation_t *))

RMW_INTERFACE_FN(rmw_publisher_count_matched_subscriptions,
rmw_ret_t, RMW_RET_ERROR,
Expand All @@ -281,7 +292,16 @@ RMW_INTERFACE_FN(rmw_publisher_get_actual_qos,

RMW_INTERFACE_FN(rmw_publish_serialized_message,
rmw_ret_t, RMW_RET_ERROR,
2, ARG_TYPES(const rmw_publisher_t *, const rmw_serialized_message_t *))
3,
ARG_TYPES(const rmw_publisher_t *, const rmw_serialized_message_t *,
rmw_publisher_allocation_t *))

RMW_INTERFACE_FN(rmw_get_serialized_message_size,
rmw_ret_t, RMW_RET_ERROR,
3, ARG_TYPES(
const rosidl_message_type_support_t *,
const rosidl_message_bounds_t *,
size_t *))

RMW_INTERFACE_FN(rmw_serialize,
rmw_ret_t, RMW_RET_ERROR,
Expand All @@ -291,6 +311,17 @@ RMW_INTERFACE_FN(rmw_deserialize,
rmw_ret_t, RMW_RET_ERROR,
3, ARG_TYPES(const rmw_serialized_message_t *, const rosidl_message_type_support_t *, void *))

RMW_INTERFACE_FN(rmw_init_subscription_allocation,
rmw_ret_t, RMW_RET_ERROR,
3, ARG_TYPES(
const rosidl_message_type_support_t *,
const rosidl_message_bounds_t *,
rmw_subscription_allocation_t *))

RMW_INTERFACE_FN(rmw_fini_subscription_allocation,
rmw_ret_t, RMW_RET_ERROR,
1, ARG_TYPES(rmw_subscription_allocation_t *))

RMW_INTERFACE_FN(rmw_create_subscription,
rmw_subscription_t *, nullptr,
5, ARG_TYPES(
Expand All @@ -307,20 +338,25 @@ RMW_INTERFACE_FN(rmw_subscription_count_matched_publishers,

RMW_INTERFACE_FN(rmw_take,
rmw_ret_t, RMW_RET_ERROR,
3, ARG_TYPES(const rmw_subscription_t *, void *, bool *))
4, ARG_TYPES(const rmw_subscription_t *, void *, bool *, rmw_subscription_allocation_t *))

RMW_INTERFACE_FN(rmw_take_with_info,
rmw_ret_t, RMW_RET_ERROR,
4, ARG_TYPES(const rmw_subscription_t *, void *, bool *, rmw_message_info_t *))
5,
ARG_TYPES(const rmw_subscription_t *, void *, bool *, rmw_message_info_t *,
rmw_subscription_allocation_t *))

RMW_INTERFACE_FN(rmw_take_serialized_message,
rmw_ret_t, RMW_RET_ERROR,
3, ARG_TYPES(const rmw_subscription_t *, rmw_serialized_message_t *, bool *))
4,
ARG_TYPES(const rmw_subscription_t *, rmw_serialized_message_t *, bool *,
rmw_subscription_allocation_t *))

RMW_INTERFACE_FN(rmw_take_serialized_message_with_info,
rmw_ret_t, RMW_RET_ERROR,
4, ARG_TYPES(
const rmw_subscription_t *, rmw_serialized_message_t *, bool *, rmw_message_info_t *))
5, ARG_TYPES(
const rmw_subscription_t *, rmw_serialized_message_t *, bool *, rmw_message_info_t *,
rmw_subscription_allocation_t *))

RMW_INTERFACE_FN(rmw_create_client,
rmw_client_t *, nullptr,
Expand Down Expand Up @@ -458,14 +494,19 @@ void prefetch_symbols(void)
GET_SYMBOL(rmw_create_node)
GET_SYMBOL(rmw_destroy_node)
GET_SYMBOL(rmw_node_get_graph_guard_condition)
GET_SYMBOL(rmw_init_publisher_allocation);
GET_SYMBOL(rmw_fini_publisher_allocation);
GET_SYMBOL(rmw_create_publisher)
GET_SYMBOL(rmw_destroy_publisher)
GET_SYMBOL(rmw_publish)
GET_SYMBOL(rmw_publisher_count_matched_subscriptions);
GET_SYMBOL(rmw_publisher_get_actual_qos);
GET_SYMBOL(rmw_publish_serialized_message)
GET_SYMBOL(rmw_get_serialized_message_size)
GET_SYMBOL(rmw_serialize)
GET_SYMBOL(rmw_deserialize)
GET_SYMBOL(rmw_init_subscription_allocation)
GET_SYMBOL(rmw_fini_subscription_allocation)
GET_SYMBOL(rmw_create_subscription)
GET_SYMBOL(rmw_destroy_subscription)
GET_SYMBOL(rmw_subscription_count_matched_publishers);
Expand Down