mirror of
https://github.com/aaru-dps/Aaru.git
synced 2026-02-04 00:54:33 +00:00
[PR #261] [MERGED] Compact Disc dump rewrite #1089
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/aaru-dps/Aaru/pull/261
Author: @claunia
Created: 1/2/2020
Status: ✅ Merged
Merged: 1/2/2020
Merged by: @claunia
Base:
master← Head:cd_dump_rewrite📝 Commits (10+)
321a323Move old CD dumping code out.f7ba77cEnable lazy loading proxies in database.75ff7cfGet device information from database when dumping Compact Disc.3a2a864Read full TOC.80af6c4Read ATIP.4f7e8afRead disc information.f5ae164Read PMA.5dfcac0Check subchannel readability.3289f71Check subchannel writeability.005cafcBuild track map.📊 Changes
34 files changed (+8265 additions, -8436 deletions)
View changed files
📝
.idea/.idea.DiscImageChef/.idea/contentModel.xml(+13 -14)📝
DiscImageChef.Core/Devices/Dumping/ATA.cs(+187 -184)➖
DiscImageChef.Core/Devices/Dumping/CompactDisc.cs(+0 -2213)➕
DiscImageChef.Core/Devices/Dumping/CompactDisc/Data.cs(+382 -0)➕
DiscImageChef.Core/Devices/Dumping/CompactDisc/Dump.cs(+985 -0)➕
DiscImageChef.Core/Devices/Dumping/CompactDisc/Error.cs(+411 -0)➕
DiscImageChef.Core/Devices/Dumping/CompactDisc/LeadOuts.cs(+347 -0)➕
DiscImageChef.Core/Devices/Dumping/CompactDisc/Pregap.cs(+232 -0)➕
DiscImageChef.Core/Devices/Dumping/CompactDisc/Subchannel.cs(+87 -0)➕
DiscImageChef.Core/Devices/Dumping/CompactDisc/Tags.cs(+147 -0)➕
DiscImageChef.Core/Devices/Dumping/CompactDisc/Tracks.cs(+294 -0)➕
DiscImageChef.Core/Devices/Dumping/CompactDisc/Trim.cs(+210 -0)📝
DiscImageChef.Core/Devices/Dumping/Dump.cs(+130 -103)📝
DiscImageChef.Core/Devices/Dumping/MMC.cs(+303 -237)➕
DiscImageChef.Core/Devices/Dumping/Metadata.cs(+138 -0)📝
DiscImageChef.Core/Devices/Dumping/PlayStationPortable.cs(+271 -345)📝
DiscImageChef.Core/Devices/Dumping/SBC.cs(+326 -346)📝
DiscImageChef.Core/Devices/Dumping/SCSI.cs(+77 -46)📝
DiscImageChef.Core/Devices/Dumping/SSC.cs(+275 -274)📝
DiscImageChef.Core/Devices/Dumping/SecureDigital.cs(+172 -172)...and 14 more files
📄 Description
Rewrite Compact Disc dumping to be able to fix drive and disc offsets.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.