1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-24 12:29:06 +00:00
CLK/Storage/Disk/Encodings/MFM/Parser.hpp
2024-01-16 23:34:46 -05:00

59 lines
1.6 KiB
C++

//
// Parser.hpp
// Clock Signal
//
// Created by Thomas Harte on 24/09/2017.
// Copyright 2017 Thomas Harte. All rights reserved.
//
#pragma once
#include "Constants.hpp"
#include "Sector.hpp"
#include "SegmentParser.hpp"
#include "../../Track/Track.hpp"
#include "../../Drive.hpp"
#include <optional>
namespace Storage::Encodings::MFM {
/*!
Provides a mechanism for collecting sectors from a disk.
*/
class Parser {
public:
/// Creates a parser that will only attempt to interpret the underlying disk as being of @c density.
Parser(Density density, const std::shared_ptr<Storage::Disk::Disk> &disk);
/// Creates a parser that will automatically try all available FM and MFM densities to try to extract sectors.
Parser(const std::shared_ptr<Storage::Disk::Disk> &disk);
/*!
Seeks to the physical track at @c head and @c track. Searches on it for a sector
with logical address @c sector.
@returns a sector if one was found; @c nullptr otherwise.
*/
const Storage::Encodings::MFM::Sector *sector(int head, int track, uint8_t sector);
// TODO: set_sector.
private:
std::shared_ptr<Storage::Disk::Disk> disk_;
std::optional<Density> density_;
void install_track(const Storage::Disk::Track::Address &address);
static SectorMap parse_track(const Storage::Disk::Track &track, Density density);
static void append(const SectorMap &source, std::map<int, Sector> &destination);
// Maps from a track address, i.e. head and position, to a map from
// sector IDs to sectors.
std::map<
Storage::Disk::Track::Address,
std::map<int, Storage::Encodings::MFM::Sector>
> sectors_by_address_by_track_;
};
}