[PR #884] Handle parsing, storing, writing DPM #1173

Open
opened 2026-01-29 15:43:12 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/aaru-dps/Aaru/pull/884
Author: @HeroponRikiBestest
Created: 11/11/2025
Status: 🔄 Open

Base: develHead: add-mds-dpm-parsing


📝 Commits (5)

  • e9bea61 Basic DPM parsing from mds
  • 863dbde PR
  • 57d0063 Merge branch 'devel' into add-mds-dpm-parsing
  • 5c718db WIP - need to go add not supported on a bunch of stuff. And do a lot of other things. Etc
  • 4fcc432 Bulk add unimplemented API

📊 Changes

15 files changed (+320 additions, -0 deletions)

View changed files

📝 Aaru.CommonTypes/Interfaces/IOpticalMediaImage.cs (+13 -0)
📝 Aaru.Images/AaruFormat/Read.cs (+17 -0)
📝 Aaru.Images/Alcohol120/Alcohol120.cs (+5 -0)
📝 Aaru.Images/Alcohol120/Read.cs (+103 -0)
📝 Aaru.Images/Alcohol120/Structs.cs (+12 -0)
📝 Aaru.Images/BlindWrite4/Read.cs (+17 -0)
📝 Aaru.Images/BlindWrite5/Read.cs (+17 -0)
📝 Aaru.Images/CDRDAO/Read.cs (+17 -0)
📝 Aaru.Images/CDRWin/Read.cs (+17 -0)
📝 Aaru.Images/CHD/Read.cs (+17 -0)
📝 Aaru.Images/CloneCD/Read.cs (+17 -0)
📝 Aaru.Images/DiscJuggler/Read.cs (+17 -0)
📝 Aaru.Images/GDI/Read.cs (+17 -0)
📝 Aaru.Images/Nero/Read.cs (+17 -0)
📝 Aaru.Images/ZZZRawImage/Read.cs (+17 -0)

📄 Description

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • New filesystem, test images in [url]
  • New media image, test images in [url]
  • New partition scheme, test images in [url]
  • Breaking change (fix or feature that would cause existing functionality to change)
  • I have read the CONTRIBUTING document.
  • My code follows the code style of this project.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have added tests to cover my changes.
  • All new and existing tests passed.

Please let me know what you think of what i have so far when you have time.


🔄 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/aaru-dps/Aaru/pull/884 **Author:** [@HeroponRikiBestest](https://github.com/HeroponRikiBestest) **Created:** 11/11/2025 **Status:** 🔄 Open **Base:** `devel` ← **Head:** `add-mds-dpm-parsing` --- ### 📝 Commits (5) - [`e9bea61`](https://github.com/aaru-dps/Aaru/commit/e9bea610e6744b2b61acc0b724b77d7f802efe63) Basic DPM parsing from mds - [`863dbde`](https://github.com/aaru-dps/Aaru/commit/863dbdec7fb8d982497c847a74261b25ec55e6a7) PR - [`57d0063`](https://github.com/aaru-dps/Aaru/commit/57d00638127b067c5d1c96b474f1a6d4beb7be7f) Merge branch 'devel' into add-mds-dpm-parsing - [`5c718db`](https://github.com/aaru-dps/Aaru/commit/5c718db08a2dc06770ec4313d1d88e635a2dd981) WIP - need to go add not supported on a bunch of stuff. And do a lot of other things. Etc - [`4fcc432`](https://github.com/aaru-dps/Aaru/commit/4fcc432cb4c0639600ab66b63a3382d2559e8d88) Bulk add unimplemented API ### 📊 Changes **15 files changed** (+320 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `Aaru.CommonTypes/Interfaces/IOpticalMediaImage.cs` (+13 -0) 📝 `Aaru.Images/AaruFormat/Read.cs` (+17 -0) 📝 `Aaru.Images/Alcohol120/Alcohol120.cs` (+5 -0) 📝 `Aaru.Images/Alcohol120/Read.cs` (+103 -0) 📝 `Aaru.Images/Alcohol120/Structs.cs` (+12 -0) 📝 `Aaru.Images/BlindWrite4/Read.cs` (+17 -0) 📝 `Aaru.Images/BlindWrite5/Read.cs` (+17 -0) 📝 `Aaru.Images/CDRDAO/Read.cs` (+17 -0) 📝 `Aaru.Images/CDRWin/Read.cs` (+17 -0) 📝 `Aaru.Images/CHD/Read.cs` (+17 -0) 📝 `Aaru.Images/CloneCD/Read.cs` (+17 -0) 📝 `Aaru.Images/DiscJuggler/Read.cs` (+17 -0) 📝 `Aaru.Images/GDI/Read.cs` (+17 -0) 📝 `Aaru.Images/Nero/Read.cs` (+17 -0) 📝 `Aaru.Images/ZZZRawImage/Read.cs` (+17 -0) </details> ### 📄 Description ## Types of changes <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Bug fix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) - [ ] New filesystem, test images in [url] - [ ] New media image, test images in [url] - [ ] New partition scheme, test images in [url] - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [x] I have read the **CONTRIBUTING** document. - [ ] My code follows the code style of this project. - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed. Please let me know what you think of what i have so far when you have time. --- <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 15:43:12 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: aaru-dps/Aaru-aaru-dps#1173