-
Notifications
You must be signed in to change notification settings - Fork 76
Merge various fixes and improvements into the humble branch #131
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
base: rolling
Are you sure you want to change the base?
Changes from 10 commits
196f7a5
2e315b7
c2eda98
29ae50f
37465cc
1ab50d5
17e38de
12d0a46
6a0c1d5
0917633
b8595da
1b4c0da
be1a43d
baa46f4
a7b0f09
1ccc55d
4c35963
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| <?xml version="1.0" encoding="UTF-8" ?> | ||
| <dds xmlns="http://www.eprosima.com/XMLSchemas/fastRTPS_Profiles" > | ||
| <library_settings> | ||
| <intraprocess_delivery>OFF</intraprocess_delivery> | ||
| </library_settings> | ||
| <profiles> | ||
| <transport_descriptors> | ||
| <transport_descriptor> | ||
| <transport_id>UDP</transport_id> | ||
| <type>UDPv4</type> | ||
| </transport_descriptor> | ||
| </transport_descriptors> | ||
| <participant profile_name="participant_profile" is_default_profile="true"> | ||
| <rtps> | ||
| <userTransports> | ||
| <transport_id>UDP</transport_id> | ||
| </userTransports> | ||
| <useBuiltinTransports>false</useBuiltinTransports> | ||
| </rtps> | ||
| </participant> | ||
| <data_writer profile_name="/number"> | ||
| <propertiesPolicy> | ||
| <properties> | ||
| <property> | ||
| <name>fastdds.match_local_endpoints</name> | ||
| <value>false</value> | ||
| <propagate>false</propagate> | ||
| </property> | ||
| </properties> | ||
| </propertiesPolicy> | ||
| </data_writer> | ||
| <data_reader profile_name="/number"> | ||
| <propertiesPolicy> | ||
| <properties> | ||
| <property> | ||
| <name>fastdds.match_local_endpoints</name> | ||
| <value>false</value> | ||
| <propagate>false</propagate> | ||
| </property> | ||
| </properties> | ||
| </propertiesPolicy> | ||
| </data_reader> | ||
| </profiles> | ||
| </dds> |
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. profiles are in a different directory, and I think we already have one almost identical to this:
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. From what I was able to see, these are indeed identical. The potential path I see here to avoid this duplication would be to make the Please let me know if you consider the change worthy so I can apply the change and give these scripts a try to confirm there are no regressions.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @mauropasse / @alsora Is there any strong preference for having these profile files installed instead of what we currently have under scripts/rmw ? I don't think I have enough experience with this to have an informed decision myself.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. gentle ping |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| <?xml version="1.0" encoding="UTF-8" ?> | ||
| <profiles xmlns="http://www.eprosima.com/XMLSchemas/fastRTPS_Profiles"> | ||
|
|
||
| <!-- Default publisher profile --> | ||
| <data_writer profile_name="default publisher profile" is_default_profile="true"> | ||
| <qos> | ||
| <publishMode> | ||
| <kind>ASYNCHRONOUS</kind> | ||
| </publishMode> | ||
| <data_sharing> | ||
| <kind>AUTOMATIC</kind> | ||
| </data_sharing> | ||
| </qos> | ||
| <historyMemoryPolicy>PREALLOCATED_WITH_REALLOC</historyMemoryPolicy> | ||
| </data_writer> | ||
|
|
||
| <data_reader profile_name="default subscription profile" is_default_profile="true"> | ||
| <qos> | ||
| <data_sharing> | ||
| <kind>AUTOMATIC</kind> | ||
| </data_sharing> | ||
| </qos> | ||
| <historyMemoryPolicy>PREALLOCATED_WITH_REALLOC</historyMemoryPolicy> | ||
| </data_reader> | ||
|
|
||
| </profiles> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| { | ||
| "nodes": [ | ||
| { | ||
| "node_name": "debug_node", | ||
| "subscribers":[ | ||
| {"topic_name":"amazon", "msg_type":"stamped9_float32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"arkansas", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"congo", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"danube", "msg_type":"stamped_int64", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"ganges", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"lena", "msg_type":"stamped50b", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"mekong", "msg_type":"stamped100b", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"missouri", "msg_type":"stamped10kb", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"nile", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"parana", "msg_type":"stamped3_float32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"salween", "msg_type":"stamped12_float32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"tigris", "msg_type":"stamped4_float32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"volga", "msg_type":"stamped_int64", "qos_reliability":"best_effort"} | ||
| ] | ||
| } | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| { | ||
| "nodes": [ | ||
| { | ||
| "node_name": "debug_node", | ||
| "subscribers":[ | ||
| {"topic_name":"amazon", "msg_type":"stamped9_float32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"arkansas", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"brazos", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"chenab", "msg_type":"stamped1kb", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"colorado", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"columbia", "msg_type":"stamped600kb", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"congo", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"danube", "msg_type":"stamped_int64", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"ganges", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"godavari", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"lena", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"loire", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"mekong", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"missouri", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"murray", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"nile", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"ohio", "msg_type":"stamped100b", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"parana", "msg_type":"stamped3_float32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"salween", "msg_type":"stamped12_float32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"tagus", "msg_type":"stamped_vector", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"tigris", "msg_type":"stamped4_float32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"volga", "msg_type":"stamped_int64", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"yamuna", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"yamuna", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"} | ||
| ] | ||
| } | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| { | ||
| "nodes": [ | ||
| { | ||
| "node_name": "debug_node", | ||
| "subscribers":[ | ||
| {"topic_name":"amazon", "msg_type":"stamped9_float32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"arkansas", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"brazos", "msg_type":"stamped25kb", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"chenab", "msg_type":"stamped1kb", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"colorado", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"columbia", "msg_type":"stamped600kb", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"congo", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"danube", "msg_type":"stamped_int64", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"ganges", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"godavari", "msg_type":"stamped5kb", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"lena", "msg_type":"stamped50b", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"loire", "msg_type":"stamped1kb", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"mekong", "msg_type":"stamped100b", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"missouri", "msg_type":"stamped10kb", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"murray", "msg_type":"stamped100b", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"nile", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"ohio", "msg_type":"stamped100b", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"parana", "msg_type":"stamped3_float32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"salween", "msg_type":"stamped12_float32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"tagus", "msg_type":"stamped50kb", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"tigris", "msg_type":"stamped4_float32", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"volga", "msg_type":"stamped_int64", "qos_reliability":"best_effort"}, | ||
| {"topic_name":"yamuna", "msg_type":"stamped4_int32", "qos_reliability":"best_effort"} | ||
| ] | ||
| } | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,109 @@ | ||
| { | ||
| "nodes": [ | ||
| { | ||
| "node_name": "montreal", | ||
| "publishers": [ | ||
| {"topic_name": "amazon", "msg_type": "stamped9_float32", "period_ms": 10, "msg_pass_by":"shared_ptr"}, | ||
| {"topic_name": "nile", "msg_type": "stamped4_int32", "period_ms": 10, "msg_pass_by":"shared_ptr"}, | ||
| {"topic_name": "ganges", "msg_type": "stamped4_int32", "period_ms": 10, "msg_pass_by":"shared_ptr"}, | ||
| {"topic_name": "danube", "msg_type": "stamped_int64", "period_ms": 10, "msg_pass_by":"shared_ptr"} | ||
| ] | ||
| }, | ||
|
|
||
| { | ||
| "node_name": "lyon", | ||
| "subscribers":[ | ||
| {"topic_name":"amazon", "msg_type":"stamped9_float32"} | ||
| ], | ||
| "publishers": [ | ||
| {"topic_name": "tigris", "msg_type": "stamped4_float32", "period_ms": 10, "msg_pass_by":"shared_ptr"} | ||
| ] | ||
| }, | ||
|
|
||
| { | ||
| "node_name": "hamburg", | ||
| "subscribers":[ | ||
| {"topic_name":"nile", "msg_type":"stamped4_int32"}, | ||
| {"topic_name":"tigris", "msg_type":"stamped4_float32"}, | ||
| {"topic_name":"ganges", "msg_type":"stamped4_int32"}, | ||
| {"topic_name":"danube", "msg_type":"stamped_int64"} | ||
| ], | ||
| "publishers": [ | ||
| {"topic_name": "parana", "msg_type": "stamped3_float32", "period_ms": 10, "msg_pass_by":"shared_ptr"} | ||
| ] | ||
| }, | ||
|
|
||
| { | ||
| "node_name": "osaka", | ||
| "subscribers":[ | ||
| {"topic_name":"parana", "msg_type":"stamped3_float32"} | ||
| ], | ||
| "publishers": [ | ||
| {"topic_name": "salween", "msg_type": "stamped12_float32", "period_ms": 100, "msg_pass_by":"shared_ptr"} | ||
| ] | ||
| }, | ||
|
|
||
| { | ||
| "node_name": "mandalay", | ||
| "subscribers":[ | ||
| {"topic_name":"salween", "msg_type":"stamped12_float32"}, | ||
| {"topic_name":"danube", "msg_type":"stamped_int64"} | ||
| ], | ||
| "publishers": [ | ||
| {"topic_name": "missouri", "msg_type": "stamped10kb", "period_ms": 100, "msg_pass_by":"shared_ptr"} | ||
| ] | ||
| }, | ||
|
|
||
| { | ||
| "node_name": "ponce", | ||
| "subscribers":[ | ||
| {"topic_name":"missouri", "msg_type":"stamped10kb"}, | ||
| {"topic_name":"danube", "msg_type":"stamped_int64"}, | ||
| {"topic_name":"volga", "msg_type":"stamped_int64"} | ||
| ], | ||
| "publishers": [ | ||
| {"topic_name": "mekong", "msg_type": "stamped100b", "period_ms": 500, "msg_pass_by":"shared_ptr"}, | ||
| {"topic_name": "congo", "msg_type": "stamped4_int32", "period_ms": 100, "msg_pass_by":"shared_ptr"} | ||
| ] | ||
| }, | ||
|
|
||
| { | ||
| "node_name": "barcelona", | ||
| "subscribers":[ | ||
| {"topic_name":"mekong", "msg_type":"stamped100b"} | ||
| ], | ||
| "publishers": [ | ||
| {"topic_name": "lena", "msg_type": "stamped50b", "period_ms": 100, "msg_pass_by":"shared_ptr"} | ||
| ] | ||
| }, | ||
|
|
||
| { | ||
| "node_name": "georgetown", | ||
| "subscribers":[ | ||
| {"topic_name":"lena", "msg_type":"stamped50b"} | ||
| ], | ||
| "publishers": [ | ||
| {"topic_name": "volga", "msg_type": "stamped_int64", "period_ms": 500, "msg_pass_by":"shared_ptr"} | ||
| ] | ||
| }, | ||
|
|
||
| { | ||
| "node_name": "geneva", | ||
| "subscribers":[ | ||
| {"topic_name":"congo", "msg_type":"stamped4_int32"}, | ||
| {"topic_name":"danube", "msg_type":"stamped_int64"}, | ||
| {"topic_name":"parana", "msg_type":"stamped3_float32"} | ||
| ], | ||
| "publishers": [ | ||
| {"topic_name": "arkansas", "msg_type": "stamped4_int32", "period_ms": 100, "msg_pass_by":"shared_ptr"} | ||
| ] | ||
| }, | ||
|
|
||
| { | ||
| "node_name": "arequipa", | ||
| "subscribers":[ | ||
| {"topic_name":"arkansas", "msg_type":"stamped4_int32"} | ||
| ] | ||
| } | ||
| ] | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.