-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Add Lossless Data Product Compression Components #5235
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
Merged
Merged
Changes from 45 commits
Commits
Show all changes
64 commits
Select commit
Hold shift + click to select a range
cbbeb55
Add unit tests for shrinking processed buffer
kubiak-jpl 543990c
Update DpWriter to shrink processed buffers after processing
kubiak-jpl fc6fa39
Formatting
LeStarch 5372062
Updated DpWriter to use the dataSize in the container header to shrin…
kubiak-jpl 58c9381
Update DpWriter SDD with container shrinking steps
kubiak-jpl 88c9bff
Re-run formatting
kubiak-jpl 6784bc9
Initial build and unit test for DpCompressProc
kubiak-jpl f1cae22
Added unit tests for DpCompressProc
kubiak-jpl 6ae17e8
ZLib compression engine implemented with unit tests
kubiak-jpl 2c1a5fb
Updated the DpCompressProc record format to use array records
kubiak-jpl f384a28
Incorporated compressed data products into the Ref demo
kubiak-jpl 1274db2
Removed ENABLE_CHUNKING parameter
kubiak-jpl d423f0c
Add documentation for DpCompressProc
kubiak-jpl 1c65aee
Updated sdds for DpCompressProc and DpZLibCompressor
kubiak-jpl db50046
Updated diagrams in DpCompressProc sdd
kubiak-jpl c438e32
Fixed Requirements display in DpZLibCompressor sdd
kubiak-jpl a004d68
Merge remote-tracking branch 'origin/devel' into dev/dpcompressproc
kubiak-jpl 4a57e95
Fix DpCompressProc compile errors from latest F Prime devel
kubiak-jpl 37eacac
Cleaned up TODO comments
kubiak-jpl bac2c93
Update sdd.md with a description of the compression state machine
kubiak-jpl d695ad2
Add Compression State Machine diagram
kubiak-jpl 0140228
Update DpCompressProc SDD with State Machine diagram
kubiak-jpl 4a3fd69
Fixed compile warning in DpZLibCompressor
kubiak-jpl 0b48918
Address spelling issues
kubiak-jpl df19f20
Fixing spelling in the proper location
kubiak-jpl 4877373
Fix grammar issues
kubiak-jpl af60f16
Merge branch 'devel' into dev/dpcompressproc
kubiak-jpl 3125644
Fixed formatting for DpCompressProc and DpZLibCompressor
kubiak-jpl a53a8c9
Merge branch 'devel' into dev/dpcompressproc
kubiak-jpl 5d87700
Remove += operator due to RHEL compiler error about type promotion
kubiak-jpl db3044f
Add explicit to internal DpZLibCompressor constructor
kubiak-jpl 54dfffb
Add zlib development files to rhel8 container workflow
kubiak-jpl 7027d29
Add zlib-devel to other RHEL8 workflows
kubiak-jpl 199f2b6
Add cast to FwSizeStoreType
kubiak-jpl f520ffb
Dummy cast to make RHEL8 happy
kubiak-jpl a761f3f
Revert changes to DataProduct subtopology and RefPackets
kubiak-jpl f297d7e
Check for zlib before adding the DpZLibCompressor component to the build
kubiak-jpl 9accf9b
Remove printf from DpZLibCompressorTester
kubiak-jpl 7f98154
Fixed formatting for DpCompressProcTester
kubiak-jpl eb9193d
Merge remote-tracking branch 'origin/devel' into dev/dpcompressproc
kubiak-jpl 30c80fd
Adding DpCompression subtopology
kubiak-jpl 7a12b72
Expose dpWriter.procBufferSendOut port in DataProducts subtopology
kubiak-jpl c71d2a0
Add commented out subtopology for DpCompression to Ref deployment
kubiak-jpl a8be073
Fixed code formatting
kubiak-jpl 2419bf3
Merge remote-tracking branch 'origin/devel' into dev/dpcompressproc
kubiak-jpl d82d987
Update Svc/DpCompressProc/docs/sdd.md
kubiak-jpl af3a9bf
Updated docs/ directory with pointers to new Lossless compression work
kubiak-jpl 6cb62f0
Minor fixes to compression components
kubiak-jpl 3ba43d5
Removed TODO. Having the compressor write data at an offset simplifie…
kubiak-jpl 4269ec0
Add events section to DpCompressProc and DpZLibCompressor
kubiak-jpl 06dcae3
Add test for CompressionComplete EVR
kubiak-jpl c9169cd
Add param_ENABLE DISABLED test
kubiak-jpl 421db16
Added ZLibInitError test
kubiak-jpl f6d9454
Added more event tests for DpZLibCompressor
kubiak-jpl 5c8c58f
Run fprime-util format
kubiak-jpl 51764d7
Merge remote-tracking branch 'origin/devel' into dev/dpcompressproc
kubiak-jpl 0c5015d
Merge remote-tracking branch 'origin/devel' into dev/dpcompressproc
kubiak-jpl c755df0
Updated TestUtils::Option to Fw::Optional
kubiak-jpl b995bff
Add ProcType argument to dpDemo integration test
kubiak-jpl d0d0a29
Fix dp_demo_intergration_test.py formatting
kubiak-jpl c689a1b
Merge branch 'devel' into dev/dpcompressproc
thomas-bc 6c2ff7e
Checking serialization status across the DpCompressProc component
kubiak-jpl 0afe549
Added debug output to serialization asserts
kubiak-jpl 9e8b176
fix formatting
thomas-bc 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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| #### | ||
| # F Prime CMakeLists.txt: | ||
| # | ||
| # SOURCES: list of source files (to be compiled) | ||
| # AUTOCODER_INPUTS: list of files to be passed to the autocoders | ||
| # DEPENDS: list of libraries that this module depends on | ||
| # | ||
| # More information in the F´ CMake API documentation: | ||
| # https://fprime.jpl.nasa.gov/latest/docs/reference/api/cmake/API/ | ||
| # | ||
| #### | ||
|
|
||
| # Module names are derived from the path from the nearest project/library/framework | ||
| # root when not specifically overridden by the developer, i.e. the module defined by | ||
| # `MyProj/Some/Path/CMakeLists.txt` will be named `MyProj_Some_Path`. | ||
|
|
||
| add_fprime_subdirectory("${CMAKE_CURRENT_LIST_DIR}/Types") | ||
| add_fprime_subdirectory("${CMAKE_CURRENT_LIST_DIR}/Ports") | ||
|
|
||
| register_fprime_library( | ||
| AUTOCODER_INPUTS | ||
| "${CMAKE_CURRENT_LIST_DIR}/DpCompressProc.fpp" | ||
| SOURCES | ||
| "${CMAKE_CURRENT_LIST_DIR}/DpCompressProc.cpp" | ||
| # DEPENDS | ||
| # MyPackage_MyOtherModule | ||
| ) | ||
|
|
||
|
|
||
| register_fprime_ut( | ||
| AUTOCODER_INPUTS | ||
| "${CMAKE_CURRENT_LIST_DIR}/DpCompressProc.fpp" | ||
| SOURCES | ||
| "${CMAKE_CURRENT_LIST_DIR}/test/ut/AbstractState.cpp" | ||
| "${CMAKE_CURRENT_LIST_DIR}/test/ut/DpCompressProcTestMain.cpp" | ||
| "${CMAKE_CURRENT_LIST_DIR}/test/ut/DpCompressProcTester.cpp" | ||
| "${CMAKE_CURRENT_LIST_DIR}/test/ut/Rules/ProcRequest.cpp" | ||
| "${CMAKE_CURRENT_LIST_DIR}/test/ut/Rules/Testers.cpp" | ||
| #"${CMAKE_CURRENT_LIST_DIR}/test/ut/Scenarios/Random.cpp" | ||
| DEPENDS | ||
| STest | ||
| UT_AUTO_HELPERS | ||
| ) |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.