[PR #565] [MERGED] Add DiskDupe (DDI) image format #1121

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

📋 Pull Request Information

Original PR: https://github.com/aaru-dps/Aaru/pull/565
Author: @darkstar
Created: 3/7/2021
Status: Merged
Merged: 3/9/2021
Merged by: @claunia

Base: masterHead: diskdupe


📝 Commits (2)

📊 Changes

10 files changed (+709 additions, -0 deletions)

View changed files

📝 Aaru.Images/Aaru.Images.csproj (+8 -0)
Aaru.Images/DiskDupe/Constants.cs (+47 -0)
Aaru.Images/DiskDupe/DiskDupe.cs (+112 -0)
Aaru.Images/DiskDupe/Helpers.cs (+93 -0)
Aaru.Images/DiskDupe/Identify.cs (+54 -0)
Aaru.Images/DiskDupe/Properties.cs (+59 -0)
Aaru.Images/DiskDupe/Read.cs (+130 -0)
Aaru.Images/DiskDupe/Structs.cs (+78 -0)
Aaru.Images/DiskDupe/Unsupported.cs (+56 -0)
Aaru.Tests/Images/DiskDupe.cs (+72 -0)

📄 Description

This PR adds support for DiskDupe (DDI) image files. 3 sample files are attached. More are available if required

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 here: diskdupe_files.zip
  • 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.

🔄 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/565 **Author:** [@darkstar](https://github.com/darkstar) **Created:** 3/7/2021 **Status:** ✅ Merged **Merged:** 3/9/2021 **Merged by:** [@claunia](https://github.com/claunia) **Base:** `master` ← **Head:** `diskdupe` --- ### 📝 Commits (2) - [`aa5063d`](https://github.com/aaru-dps/Aaru/commit/aa5063d10d9e69957ce6fec0d4a2c230361d869d) Add DiskDupe (DDI) image format - [`cb71b2c`](https://github.com/aaru-dps/Aaru/commit/cb71b2c84f6ad84eee500658413ef60654fe7709) Add unit test ### 📊 Changes **10 files changed** (+709 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `Aaru.Images/Aaru.Images.csproj` (+8 -0) ➕ `Aaru.Images/DiskDupe/Constants.cs` (+47 -0) ➕ `Aaru.Images/DiskDupe/DiskDupe.cs` (+112 -0) ➕ `Aaru.Images/DiskDupe/Helpers.cs` (+93 -0) ➕ `Aaru.Images/DiskDupe/Identify.cs` (+54 -0) ➕ `Aaru.Images/DiskDupe/Properties.cs` (+59 -0) ➕ `Aaru.Images/DiskDupe/Read.cs` (+130 -0) ➕ `Aaru.Images/DiskDupe/Structs.cs` (+78 -0) ➕ `Aaru.Images/DiskDupe/Unsupported.cs` (+56 -0) ➕ `Aaru.Tests/Images/DiskDupe.cs` (+72 -0) </details> ### 📄 Description This PR adds support for DiskDupe (DDI) image files. 3 sample files are attached. More are available if required ## 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] - [x] New media image, test images here: [diskdupe_files.zip](https://github.com/aaru-dps/Aaru/files/6097703/diskdupe_files.zip) - [ ] 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. - [x] My code follows the code style of this project. - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [x] I have added tests to cover my changes. - [ ] All new and existing tests passed. --- <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:41:54 +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#1121