2016-09-18 23:21:02 +00:00
|
|
|
//
|
|
|
|
// SSD.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 18/09/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef SSD_hpp
|
|
|
|
#define SSD_hpp
|
|
|
|
|
2017-09-23 00:28:11 +00:00
|
|
|
#include "../DiskImage.hpp"
|
2017-09-23 02:39:23 +00:00
|
|
|
#include "../../../FileHolder.hpp"
|
2016-09-18 23:21:02 +00:00
|
|
|
|
|
|
|
namespace Storage {
|
|
|
|
namespace Disk {
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Provies a @c Disk containing a DSD or SSD disk image — a decoded sector dump of an Acorn DFS disk.
|
|
|
|
*/
|
2017-09-23 00:28:11 +00:00
|
|
|
class SSD: public DiskImage, public Storage::FileHolder {
|
2016-09-18 23:21:02 +00:00
|
|
|
public:
|
|
|
|
/*!
|
2016-09-25 21:46:11 +00:00
|
|
|
Construct an @c SSD containing content from the file with name @c file_name.
|
2016-09-18 23:21:02 +00:00
|
|
|
|
|
|
|
@throws ErrorCantOpen if this file can't be opened.
|
2016-09-25 21:46:11 +00:00
|
|
|
@throws ErrorNotSSD if the file doesn't appear to contain a .SSD format image.
|
2016-09-18 23:21:02 +00:00
|
|
|
*/
|
|
|
|
SSD(const char *file_name);
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ErrorNotSSD,
|
|
|
|
};
|
|
|
|
|
|
|
|
// implemented to satisfy @c Disk
|
|
|
|
unsigned int get_head_position_count();
|
|
|
|
unsigned int get_head_count();
|
2016-12-25 14:46:12 +00:00
|
|
|
bool get_is_read_only();
|
2017-09-23 00:28:11 +00:00
|
|
|
void set_track_at_position(unsigned int head, unsigned int position, const std::shared_ptr<Track> &track);
|
|
|
|
std::shared_ptr<Track> get_track_at_position(unsigned int head, unsigned int position);
|
2016-09-18 23:21:02 +00:00
|
|
|
|
|
|
|
private:
|
2017-09-23 00:28:11 +00:00
|
|
|
std::mutex file_access_mutex_;
|
2016-12-30 03:15:58 +00:00
|
|
|
long get_file_offset_for_position(unsigned int head, unsigned int position);
|
2016-12-30 23:03:30 +00:00
|
|
|
|
2016-11-21 12:14:09 +00:00
|
|
|
unsigned int head_count_;
|
|
|
|
unsigned int track_count_;
|
2016-09-18 23:21:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* SSD_hpp */
|