-
Notifications
You must be signed in to change notification settings - Fork 2
[21768] DDS data publication implementation #2
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
Closed
Closed
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
7541907
Created Typed Tests
adriancampo 0c67317
Added submodule
adriancampo 1d381b5
Added blackbox typed test
adriancampo 9e1d0f5
Fix for empty filename in log callback
adriancampo be140f6
Named typed tests. Disabled stdout log.
adriancampo 19277a5
Reworked ddsEnabler blackbox tests.
adriancampo 6f4ce63
Removed old file. Applied suggestions.
adriancampo 28f4b3d
Rebased.
adriancampo 1b6f0c5
Fixed bug disabling stdout log.
adriancampo ef63105
Changed publishedTime to int64.
adriancampo b8324ec
Added check for empty callbacks. Removed missing header.
adriancampo 5274098
Added tests for history.
adriancampo 7a1eb65
Included cstdint for callbacks.
adriancampo 780d228
Added JSON config. Fixes for thirdparty.
adriancampo b20a48d
Changed init to use JSON config file. Install script now returns erro…
adriancampo b2a10da
Added dds lvl to JSON config file.
adriancampo 551d34e
Fixed bug loading json config file.
adriancampo 612e7e7
Fixed cofigFile tests.
adriancampo 824fff0
DDS data publication implementation
juanlofer-eprosima bb85f86
Skip null JSON elements
juanlofer-eprosima 85fb5a5
Uncrustify
juanlofer-eprosima File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| [submodule "ddsenabler/test/resources/dds-types-test"] | ||
| path = ddsenabler/test/resources/dds-types-test | ||
| url = https://github.com/eProsima/dds-types-test.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| { | ||
| "dds": { | ||
| "ddsmodule": { | ||
| "dds": { | ||
| "domain": 0, | ||
| "allowlist": [ | ||
| { | ||
| "name": "*" | ||
| } | ||
| ], | ||
| "blocklist": [ | ||
| { | ||
| "name": "add_blocked_topics_list_here" | ||
| } | ||
| ] | ||
| }, | ||
| "topics": { | ||
| "name": "*", | ||
| "qos": { | ||
| "durability": "TRANSIENT_LOCAL", | ||
| "history-depth": 10 | ||
| } | ||
| }, | ||
| "ddsenabler": null, | ||
| "specs": { | ||
| "threads": 12, | ||
| "logging": { | ||
| "stdout": false, | ||
| "verbosity": "info" | ||
| } | ||
| } | ||
| }, | ||
| "ngsild": { | ||
| "topics": { | ||
| "P1": { | ||
| "entityType": "Camera", | ||
| "entityId": "urn:ngsi-ld:camera:cam1", | ||
| "attribute": "shutterSpeed" | ||
| }, | ||
| "P2": { | ||
| "entityType": "Arm", | ||
| "entityId": "urn:ngsi-ld:arm:arm1", | ||
| "attribute": "armReach" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO