mirror of
https://github.com/livingcomputermuseum/UniBone.git
synced 2026-04-29 13:13:35 +00:00
General code cleanup/refactoring. Added header comments. Added "use image size" parameter for MSCP disks -- block count derived from image file size rather than DEC drive geometry; allows for arbitrarily large disks (up to 2TB, theoretically.)
78 lines
2.6 KiB
C++
78 lines
2.6 KiB
C++
/* storagedrive.hpp: disk or tape drive, with an image file as storage medium.
|
|
|
|
Copyright (c) 2018, Joerg Hoppe
|
|
j_hoppe@t-online.de, www.retrocmp.com
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
copy of this software and associated documentation files (the "Software"),
|
|
to deal in the Software without restriction, including without limitation
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
|
Software is furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
JOERG HOPPE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
12-nov-2018 JH entered beta phase
|
|
|
|
*/
|
|
#ifndef _STORAGEDRIVE_HPP_
|
|
#define _STORAGEDRIVE_HPP_
|
|
|
|
using namespace std;
|
|
|
|
#include <stdint.h>
|
|
#include <string>
|
|
#include <fstream>
|
|
|
|
#include "utils.hpp"
|
|
#include "device.hpp"
|
|
#include "parameter.hpp"
|
|
|
|
class storagecontroller_c;
|
|
|
|
class storagedrive_c: public device_c {
|
|
private:
|
|
fstream f; // image file
|
|
public:
|
|
storagecontroller_c *controller; // link to parent
|
|
|
|
// identifying number at controller
|
|
parameter_unsigned_c unitno = parameter_unsigned_c(this, "unit", "unit", /*readonly*/
|
|
true, "", "%d", "Unit # of drive", 3, 10); // 3 bits = 0..7 allowed
|
|
|
|
// capacity of medium (disk/tape) in bytes
|
|
parameter_unsigned64_c capacity = parameter_unsigned64_c(this, "capacity",
|
|
"cap", /*readonly*/
|
|
true, "byte", "%d", "Storage capacity", 64, 10);
|
|
|
|
parameter_string_c image_filepath = parameter_string_c(this, "image", "img", /*readonly*/
|
|
false, "Path to image file");
|
|
|
|
virtual bool on_param_changed(parameter_c *param) override;
|
|
|
|
|
|
// parameter_bool_c writeprotect = parameter_bool_c(this, "writeprotect", "wp", /*readonly*/false, "Medium is write protected, different reasons") ;
|
|
|
|
bool file_readonly;
|
|
bool file_open(std::string imagefname, bool create);
|
|
bool file_is_open(void);
|
|
void file_read(uint8_t *buffer, uint64_t position, unsigned len);
|
|
void file_write(uint8_t *buffer, uint64_t position, unsigned len);
|
|
uint64_t file_size(void);
|
|
void file_close(void);
|
|
|
|
storagedrive_c(storagecontroller_c *controller);
|
|
|
|
};
|
|
|
|
#endif
|