mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-27 16:15:41 +00:00
151 lines
3.5 KiB
C++
151 lines
3.5 KiB
C++
#pragma once
|
|
#include "types.h"
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class CDImage;
|
|
|
|
class ISOReader
|
|
{
|
|
public:
|
|
enum : u32
|
|
{
|
|
SECTOR_SIZE = 2048
|
|
};
|
|
|
|
ISOReader();
|
|
~ISOReader();
|
|
|
|
bool Open(CDImage* image, u32 track_number);
|
|
|
|
std::vector<std::string> GetFilesInDirectory(const char* path);
|
|
|
|
bool ReadFile(const char* path, std::vector<u8>* data);
|
|
|
|
private:
|
|
#pragma pack(push, 1)
|
|
|
|
struct ISOVolumeDescriptorHeader
|
|
{
|
|
u8 type_code;
|
|
char standard_identifier[5];
|
|
u8 version;
|
|
};
|
|
static_assert(sizeof(ISOVolumeDescriptorHeader) == 7);
|
|
|
|
struct ISOBootRecord
|
|
{
|
|
ISOVolumeDescriptorHeader header;
|
|
char boot_system_identifier[32];
|
|
char boot_identifier[32];
|
|
u8 data[1977];
|
|
};
|
|
static_assert(sizeof(ISOBootRecord) == 2048);
|
|
|
|
struct ISOPVDDateTime
|
|
{
|
|
char year[4];
|
|
char month[2];
|
|
char day[2];
|
|
char hour[2];
|
|
char minute[2];
|
|
char second[2];
|
|
char milliseconds[2];
|
|
s8 gmt_offset;
|
|
};
|
|
static_assert(sizeof(ISOPVDDateTime) == 17);
|
|
|
|
struct ISOPrimaryVolumeDescriptor
|
|
{
|
|
ISOVolumeDescriptorHeader header;
|
|
u8 unused;
|
|
char system_identifier[32];
|
|
char volume_identifier[32];
|
|
char unused2[8];
|
|
u32 total_sectors_le;
|
|
u32 total_sectors_be;
|
|
char unused3[32];
|
|
u16 volume_set_size_le;
|
|
u16 volume_set_size_be;
|
|
u16 volume_sequence_number_le;
|
|
u16 volume_sequence_number_be;
|
|
u16 block_size_le;
|
|
u16 block_size_be;
|
|
u32 path_table_size_le;
|
|
u32 path_table_size_be;
|
|
u32 path_table_location_le;
|
|
u32 optional_path_table_location_le;
|
|
u32 path_table_location_be;
|
|
u32 optional_path_table_location_be;
|
|
u8 root_directory_entry[34];
|
|
char volume_set_identifier[128];
|
|
char publisher_identifier[128];
|
|
char data_preparer_identifier[128];
|
|
char application_identifier[128];
|
|
char copyright_file_identifier[38];
|
|
char abstract_file_identifier[36];
|
|
char bibliographic_file_identifier[37];
|
|
ISOPVDDateTime volume_creation_time;
|
|
ISOPVDDateTime volume_modification_time;
|
|
ISOPVDDateTime volume_expiration_time;
|
|
ISOPVDDateTime volume_effective_time;
|
|
u8 structure_version;
|
|
u8 unused4;
|
|
u8 application_used[512];
|
|
u8 reserved[653];
|
|
};
|
|
static_assert(sizeof(ISOPrimaryVolumeDescriptor) == 2048);
|
|
|
|
struct ISODirectoryEntryDateTime
|
|
{
|
|
u8 years_since_1900;
|
|
u8 month;
|
|
u8 day;
|
|
u8 hour;
|
|
u8 minute;
|
|
u8 second;
|
|
s8 gmt_offset;
|
|
};
|
|
|
|
enum ISODirectoryEntryFlags : u8
|
|
{
|
|
ISODirectoryEntryFlag_Hidden = (1 << 0),
|
|
ISODirectoryEntryFlag_Directory = (1 << 1),
|
|
ISODirectoryEntryFlag_AssociatedFile = (1 << 2),
|
|
ISODirectoryEntryFlag_ExtendedAttributePresent = (1 << 3),
|
|
ISODirectoryEntryFlag_OwnerGroupPermissions = (1 << 4),
|
|
ISODirectoryEntryFlag_MoreExtents = (1 << 7),
|
|
};
|
|
|
|
struct ISODirectoryEntry
|
|
{
|
|
u8 entry_length;
|
|
u8 extended_attribute_length;
|
|
u32 location_le;
|
|
u32 location_be;
|
|
u32 length_le;
|
|
u32 length_be;
|
|
ISODirectoryEntryDateTime recoding_time;
|
|
ISODirectoryEntryFlags flags;
|
|
u8 interleaved_unit_size;
|
|
u8 interleaved_gap_size;
|
|
u16 sequence_le;
|
|
u16 sequence_be;
|
|
u8 filename_length;
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
bool ReadPVD();
|
|
|
|
std::optional<ISODirectoryEntry> LocateFile(const char* path);
|
|
std::optional<ISODirectoryEntry> LocateFile(const char* path, u8* sector_buffer, u32 directory_record_lba,
|
|
u32 directory_record_size);
|
|
|
|
CDImage* m_image;
|
|
u32 m_track_number;
|
|
|
|
ISOPrimaryVolumeDescriptor m_pvd = {};
|
|
}; |