[PR #1361] [MERGED] Rust updates #2134

Open
opened 2026-01-29 17:20:28 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/CCExtractor/ccextractor/pull/1361
Author: @PunitLodha
Created: 7/18/2021
Status: Merged
Merged: 7/18/2021
Merged by: @cfsmp3

Base: masterHead: rust_updates


📝 Commits (9)

  • fb7f73e add handlers for CLW, HDW, TGW, DLW, and CR
  • 5a2c973 refactor rust code
  • 3b40731 fix clippy warnings
  • aeb2a5b add ccxr_ prefix to rust functions
  • cb76fef Add SPA, SPC, SPL and CWx commands
  • 051af89 Add DSW and DFx commands
  • ea46a76 Add more C0 and extended commands
  • c183fbc Use slice instead of sending whole packet and pos
  • 402d8ec Merge branch 'master' into rust_updates

📊 Changes

7 files changed (+643 additions, -159 deletions)

View changed files

📝 src/rust/src/decoder/commands.rs (+32 -0)
📝 src/rust/src/decoder/mod.rs (+12 -27)
📝 src/rust/src/decoder/service_decoder.rs (+401 -130)
📝 src/rust/src/decoder/window.rs (+179 -0)
📝 src/rust/src/lib.rs (+7 -2)
src/rust/src/utils.rs (+11 -0)
📝 src/rust/wrapper.h (+1 -0)

📄 Description

In raising this pull request, I confirm the following (please check boxes):

  • I have read and understood the contributors guide.
  • I have checked that another pull request for this purpose does not exist.
  • I have considered, and confirmed that this submission will be valuable to others.
  • I accept that this submission may not be used, and the pull request closed at the will of the maintainer.
  • I give this submission freely, and claim no ownership to its content.
  • I have mentioned this change in the changelog.

My familiarity with the project is as follows (check one):

  • I have never used CCExtractor.
  • I have used CCExtractor just a couple of times.
  • I absolutely love CCExtractor, but have not contributed previously.
  • I am an active contributor to CCExtractor.

Added DSW, DFx, some C0 and extended commands.
Also did some refactoring


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/CCExtractor/ccextractor/pull/1361 **Author:** [@PunitLodha](https://github.com/PunitLodha) **Created:** 7/18/2021 **Status:** ✅ Merged **Merged:** 7/18/2021 **Merged by:** [@cfsmp3](https://github.com/cfsmp3) **Base:** `master` ← **Head:** `rust_updates` --- ### 📝 Commits (9) - [`fb7f73e`](https://github.com/CCExtractor/ccextractor/commit/fb7f73e9ecc1525708a65454419ec8dc85e450fa) add handlers for CLW, HDW, TGW, DLW, and CR - [`5a2c973`](https://github.com/CCExtractor/ccextractor/commit/5a2c9734931f2d130d14886b06ce796dd60655ae) refactor rust code - [`3b40731`](https://github.com/CCExtractor/ccextractor/commit/3b407318da783b4d490eb477f82d2400f97896c1) fix clippy warnings - [`aeb2a5b`](https://github.com/CCExtractor/ccextractor/commit/aeb2a5bca895a630cd9d575b95b2bc8c2f55ca3e) add ccxr_ prefix to rust functions - [`cb76fef`](https://github.com/CCExtractor/ccextractor/commit/cb76feff7e8ec22f504e237baa25320f98b244bc) Add SPA, SPC, SPL and CWx commands - [`051af89`](https://github.com/CCExtractor/ccextractor/commit/051af896897eba7a621f0ad8e8a5931340ab048e) Add DSW and DFx commands - [`ea46a76`](https://github.com/CCExtractor/ccextractor/commit/ea46a760c161bd3c03f9a5e214e19bb3fd6c7c17) Add more C0 and extended commands - [`c183fbc`](https://github.com/CCExtractor/ccextractor/commit/c183fbc0f3cbaa35657646e0621ce1c04cea6c1d) Use slice instead of sending whole packet and pos - [`402d8ec`](https://github.com/CCExtractor/ccextractor/commit/402d8ecfbb128dbd648b9b09f88d83aa021bfc15) Merge branch 'master' into rust_updates ### 📊 Changes **7 files changed** (+643 additions, -159 deletions) <details> <summary>View changed files</summary> 📝 `src/rust/src/decoder/commands.rs` (+32 -0) 📝 `src/rust/src/decoder/mod.rs` (+12 -27) 📝 `src/rust/src/decoder/service_decoder.rs` (+401 -130) 📝 `src/rust/src/decoder/window.rs` (+179 -0) 📝 `src/rust/src/lib.rs` (+7 -2) ➕ `src/rust/src/utils.rs` (+11 -0) 📝 `src/rust/wrapper.h` (+1 -0) </details> ### 📄 Description <!-- Please prefix your pull request with one of the following: **[FEATURE]** **[FIX]** **[IMPROVEMENT]**. --> **In raising this pull request, I confirm the following (please check boxes):** - [x] I have read and understood the [contributors guide](https://github.com/CCExtractor/ccextractor/blob/master/.github/CONTRIBUTING.md). - [x] I have checked that another pull request for this purpose does not exist. - [x] I have considered, and confirmed that this submission will be valuable to others. - [x] I accept that this submission may not be used, and the pull request closed at the will of the maintainer. - [x] I give this submission freely, and claim no ownership to its content. - [ ] **I have mentioned this change in the [changelog](https://github.com/CCExtractor/ccextractor/blob/master/docs/CHANGES.TXT).** **My familiarity with the project is as follows (check one):** - [ ] I have never used CCExtractor. - [ ] I have used CCExtractor just a couple of times. - [ ] I absolutely love CCExtractor, but have not contributed previously. - [x] I am an active contributor to CCExtractor. Added DSW, DFx, some C0 and extended commands. Also did some refactoring --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 17:20:28 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ccextractor#2134