2018-04-22 04:21:57 +00:00
|
|
|
//
|
|
|
|
// NIB.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 21/04/2018.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
2018-04-22 04:21:57 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef NIB_hpp
|
|
|
|
#define NIB_hpp
|
|
|
|
|
|
|
|
#include "../DiskImage.hpp"
|
|
|
|
#include "../../../FileHolder.hpp"
|
|
|
|
|
|
|
|
namespace Storage {
|
|
|
|
namespace Disk {
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Provides a @c DiskImage describing an Apple NIB disk image:
|
2018-05-25 22:30:55 +00:00
|
|
|
a bit stream capture that omits sync zeroes, and doesn't define
|
|
|
|
the means for full reconstruction.
|
2018-04-22 04:21:57 +00:00
|
|
|
*/
|
|
|
|
class NIB: public DiskImage {
|
|
|
|
public:
|
|
|
|
NIB(const std::string &file_name);
|
|
|
|
|
2018-05-25 22:30:55 +00:00
|
|
|
// Implemented to satisfy @c DiskImage.
|
2018-05-07 03:17:36 +00:00
|
|
|
HeadPosition get_maximum_head_position() override;
|
2018-04-22 04:21:57 +00:00
|
|
|
std::shared_ptr<::Storage::Disk::Track> get_track_at_position(::Storage::Disk::Track::Address address) override;
|
2018-05-25 22:30:55 +00:00
|
|
|
void set_tracks(const std::map<Track::Address, std::shared_ptr<Track>> &tracks) override;
|
|
|
|
bool get_is_read_only() override;
|
2018-04-22 04:21:57 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
FileHolder file_;
|
|
|
|
long get_file_offset_for_position(Track::Address address);
|
2018-05-25 22:30:55 +00:00
|
|
|
long file_offset(Track::Address address);
|
2018-04-22 04:21:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* NIB_hpp */
|