2018-04-22 04:21:57 +00:00
|
|
|
//
|
|
|
|
// NIB.cpp
|
|
|
|
// 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
|
|
|
//
|
|
|
|
|
|
|
|
#include "NIB.hpp"
|
|
|
|
|
2018-04-27 02:49:07 +00:00
|
|
|
#include "../../Track/PCMTrack.hpp"
|
2018-05-25 22:30:55 +00:00
|
|
|
#include "../../Track/TrackSerialiser.hpp"
|
2018-05-04 02:40:45 +00:00
|
|
|
#include "../../Encodings/AppleGCR/Encoder.hpp"
|
2018-04-27 02:49:07 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2018-04-22 04:21:57 +00:00
|
|
|
using namespace Storage::Disk;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2018-04-27 02:49:07 +00:00
|
|
|
const long track_length = 6656;
|
2018-04-22 04:21:57 +00:00
|
|
|
const std::size_t number_of_tracks = 35;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
NIB::NIB(const std::string &file_name) :
|
|
|
|
file_(file_name) {
|
|
|
|
// A NIB should be 35 tracks, each 6656 bytes long.
|
|
|
|
if(file_.stats().st_size != track_length*number_of_tracks) {
|
2018-04-28 03:18:45 +00:00
|
|
|
throw Error::InvalidFormat;
|
2018-04-22 04:21:57 +00:00
|
|
|
}
|
|
|
|
|
2018-05-25 22:40:15 +00:00
|
|
|
// A real NIB should have every single top bit set. Yes, 1/8th of the
|
|
|
|
// file size is a complete waste. But it provides a hook for validation.
|
|
|
|
while(true) {
|
|
|
|
uint8_t next = file_.get8();
|
|
|
|
if(file_.eof()) break;
|
|
|
|
if(!(next & 0x80)) throw Error::InvalidFormat;
|
|
|
|
}
|
2018-04-22 04:21:57 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 03:17:36 +00:00
|
|
|
HeadPosition NIB::get_maximum_head_position() {
|
|
|
|
return HeadPosition(number_of_tracks);
|
2018-04-22 04:21:57 +00:00
|
|
|
}
|
|
|
|
|
2018-05-25 22:30:55 +00:00
|
|
|
bool NIB::get_is_read_only() {
|
|
|
|
return file_.get_is_known_read_only();
|
|
|
|
}
|
|
|
|
|
|
|
|
long NIB::file_offset(Track::Address address) {
|
|
|
|
return static_cast<long>(address.position.as_int()) * track_length;
|
|
|
|
}
|
|
|
|
|
2018-04-24 03:01:12 +00:00
|
|
|
std::shared_ptr<::Storage::Disk::Track> NIB::get_track_at_position(::Storage::Disk::Track::Address address) {
|
|
|
|
// NIBs contain data for even-numbered tracks underneath a single head only.
|
2018-04-27 02:49:07 +00:00
|
|
|
if(address.head) return nullptr;
|
|
|
|
|
2018-05-25 22:30:55 +00:00
|
|
|
long offset = file_offset(address);
|
|
|
|
std::vector<uint8_t> track_data;
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lock_guard(file_.get_file_access_mutex());
|
|
|
|
file_.seek(offset, SEEK_SET);
|
|
|
|
track_data = file_.read(track_length);
|
|
|
|
}
|
2018-04-22 04:21:57 +00:00
|
|
|
|
2018-04-27 02:49:07 +00:00
|
|
|
// NIB files leave sync bytes implicit and make no guarantees
|
|
|
|
// about overall track positioning. So the approach taken here
|
|
|
|
// is to look for the epilogue sequence (which concludes all Apple
|
|
|
|
// tracks and headers), then treat all following FFs as a sync
|
|
|
|
// region, then switch back to ordinary behaviour as soon as a
|
|
|
|
// non-FF appears.
|
|
|
|
std::size_t start_index = 0;
|
|
|
|
std::set<size_t> sync_starts;
|
|
|
|
|
|
|
|
// Establish where syncs start by finding instances of 0xd5 0xaa and then regressing
|
|
|
|
// from each along all preceding FFs.
|
|
|
|
for(size_t index = 0; index < track_data.size(); ++index) {
|
2018-07-04 01:38:04 +00:00
|
|
|
// This is a D5 AA...
|
2018-04-27 02:49:07 +00:00
|
|
|
if(track_data[index] == 0xd5 && track_data[(index+1)%track_data.size()] == 0xaa) {
|
2018-07-04 00:01:07 +00:00
|
|
|
// ... count backwards to find out where the preceding FFs started.
|
2018-04-27 02:49:07 +00:00
|
|
|
size_t start = index - 1;
|
2018-04-27 23:53:35 +00:00
|
|
|
size_t length = 0;
|
2018-06-07 01:52:26 +00:00
|
|
|
while(track_data[start] == 0xff && length < 5) {
|
2018-04-27 02:49:07 +00:00
|
|
|
start = (start + track_data.size() - 1) % track_data.size();
|
2018-04-27 23:53:35 +00:00
|
|
|
++length;
|
|
|
|
}
|
|
|
|
|
2018-07-04 00:01:07 +00:00
|
|
|
// Record a sync position only if there were at least five FFs.
|
2018-06-07 01:52:26 +00:00
|
|
|
if(length == 5) {
|
2018-04-27 23:53:35 +00:00
|
|
|
sync_starts.insert((start + 1) % track_data.size());
|
2018-07-04 00:01:07 +00:00
|
|
|
|
|
|
|
// If the apparent start of this sync area is 'after' the start, then
|
|
|
|
// this sync period overlaps position zero. So this track will start
|
|
|
|
// in a sync block.
|
2018-04-27 23:53:35 +00:00
|
|
|
if(start > index)
|
|
|
|
start_index = start;
|
|
|
|
}
|
2018-04-27 02:49:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-01 16:05:41 +00:00
|
|
|
PCMSegment segment;
|
2018-07-04 00:01:07 +00:00
|
|
|
|
|
|
|
// If the track started in a sync block, write sync first.
|
2018-05-02 00:31:42 +00:00
|
|
|
if(start_index) {
|
|
|
|
segment += Encodings::AppleGCR::six_and_two_sync(static_cast<int>(start_index));
|
|
|
|
}
|
2018-04-27 02:49:07 +00:00
|
|
|
|
|
|
|
std::size_t index = start_index;
|
2018-07-04 00:01:07 +00:00
|
|
|
for(const auto location: sync_starts) {
|
|
|
|
// Write data from index to sync_start.
|
2018-07-01 16:05:41 +00:00
|
|
|
std::vector<uint8_t> data_segment(
|
2018-04-27 02:49:07 +00:00
|
|
|
track_data.begin() + static_cast<off_t>(index),
|
|
|
|
track_data.begin() + static_cast<off_t>(location));
|
2018-07-01 16:05:41 +00:00
|
|
|
segment += PCMSegment(data_segment);
|
2018-04-27 02:49:07 +00:00
|
|
|
|
2018-07-04 00:01:07 +00:00
|
|
|
// Add a sync from sync_start to end of 0xffs, if there are
|
|
|
|
// any before the end of data.
|
2018-04-27 02:49:07 +00:00
|
|
|
index = location;
|
|
|
|
while(index < track_length && track_data[index] == 0xff)
|
|
|
|
++index;
|
2018-07-04 00:01:07 +00:00
|
|
|
|
|
|
|
if(index - location)
|
|
|
|
segment += Encodings::AppleGCR::six_and_two_sync(static_cast<int>(index - location));
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there's still data remaining on the track, write it out.
|
|
|
|
if(index < track_length) {
|
|
|
|
std::vector<uint8_t> data_segment(
|
|
|
|
track_data.begin() + static_cast<off_t>(index),
|
|
|
|
track_data.end());
|
|
|
|
segment += PCMSegment(data_segment);
|
2018-04-27 02:49:07 +00:00
|
|
|
}
|
2018-04-22 04:21:57 +00:00
|
|
|
|
2018-05-02 00:31:42 +00:00
|
|
|
return std::make_shared<PCMTrack>(segment);
|
2018-04-22 04:21:57 +00:00
|
|
|
}
|
2018-05-25 22:30:55 +00:00
|
|
|
|
|
|
|
void NIB::set_tracks(const std::map<Track::Address, std::shared_ptr<Track>> &tracks) {
|
|
|
|
std::map<Track::Address, std::vector<uint8_t>> tracks_by_address;
|
|
|
|
|
|
|
|
// Convert to a map from address to a vector of data that contains the NIB representation
|
|
|
|
// of the track.
|
|
|
|
for(const auto &pair: tracks) {
|
|
|
|
// Grab the track bit stream.
|
|
|
|
auto segment = Storage::Disk::track_serialisation(*pair.second, Storage::Time(1, 50000));
|
|
|
|
|
|
|
|
// Process to eliminate all sync bits.
|
|
|
|
std::vector<uint8_t> track;
|
|
|
|
track.reserve(track_length);
|
|
|
|
uint8_t shifter = 0;
|
2018-07-04 00:10:22 +00:00
|
|
|
int bit_count = 0;
|
|
|
|
size_t sync_location = 0, location = 0;
|
2018-07-01 16:05:41 +00:00
|
|
|
for(const auto bit: segment.data) {
|
|
|
|
shifter = static_cast<uint8_t>((shifter << 1) | (bit ? 1 : 0));
|
2018-07-04 00:10:22 +00:00
|
|
|
++bit_count;
|
|
|
|
++location;
|
2018-05-25 22:30:55 +00:00
|
|
|
if(shifter & 0x80) {
|
|
|
|
track.push_back(shifter);
|
2018-07-04 00:10:22 +00:00
|
|
|
if(bit_count == 10) {
|
|
|
|
sync_location = location;
|
|
|
|
}
|
2018-05-25 22:30:55 +00:00
|
|
|
shifter = 0;
|
2018-07-04 00:10:22 +00:00
|
|
|
bit_count = 0;
|
2018-05-25 22:30:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-04 00:10:22 +00:00
|
|
|
// Trim or pad out to track_length.
|
2018-05-25 22:30:55 +00:00
|
|
|
if(track.size() > track_length) {
|
|
|
|
track.resize(track_length);
|
|
|
|
} else {
|
|
|
|
while(track.size() < track_length) {
|
2018-07-04 00:10:22 +00:00
|
|
|
std::vector<uint8_t> extra_data(static_cast<size_t>(track_length) - track.size(), 0xff);
|
|
|
|
track.insert(track.begin() + static_cast<off_t>(sync_location), extra_data.begin(), extra_data.end());
|
2018-05-25 22:30:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tracks_by_address[pair.first] = std::move(track);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lock the file and spool out.
|
|
|
|
std::lock_guard<std::mutex> lock_guard(file_.get_file_access_mutex());
|
|
|
|
for(const auto &track: tracks_by_address) {
|
2018-09-10 00:33:56 +00:00
|
|
|
file_.seek(file_offset(track.first), SEEK_SET);
|
|
|
|
file_.write(track.second);
|
2018-05-25 22:30:55 +00:00
|
|
|
}
|
|
|
|
}
|