gem5
v20.1.0.0
|
Internal state for open files. More...
#include <semihosting.hh>
Public Member Functions | |
FileBase (ArmSemihosting &_parent, const char *name, const char *_mode) | |
virtual | ~FileBase () |
FileBase ()=delete | |
FileBase (FileBase &)=delete | |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
const std::string & | fileName () |
virtual int64_t | open () |
Open the the file. More... | |
virtual int64_t | close () |
Close the file. More... | |
virtual bool | isTTY () const |
Check if a file corresponds to a TTY device. More... | |
virtual int64_t | read (uint8_t *buffer, uint64_t size) |
Read data from file. More... | |
virtual int64_t | write (const uint8_t *buffer, uint64_t size) |
Write data to file. More... | |
virtual int64_t | seek (uint64_t pos) |
Seek to an absolute position in the file. More... | |
virtual int64_t | flen () |
Get the length of a file in bytes. More... | |
Public Member Functions inherited from Serializable | |
Serializable () | |
virtual | ~Serializable () |
void | serializeSection (CheckpointOut &cp, const char *name) const |
Serialize an object into a new section. More... | |
void | serializeSection (CheckpointOut &cp, const std::string &name) const |
void | unserializeSection (CheckpointIn &cp, const char *name) |
Unserialize an a child object. More... | |
void | unserializeSection (CheckpointIn &cp, const std::string &name) |
Static Public Member Functions | |
static std::unique_ptr< FileBase > | create (ArmSemihosting &parent, const std::string &fname, const char *mode) |
static std::unique_ptr< FileBase > | create (ArmSemihosting &parent, CheckpointIn &cp, const std::string &sec) |
Static Public Member Functions inherited from Serializable | |
static const std::string & | currentSection () |
Gets the fully-qualified name of the active section. More... | |
static void | serializeAll (const std::string &cpt_dir) |
Serializes all the SimObjects. More... | |
static void | unserializeGlobals (CheckpointIn &cp) |
Protected Attributes | |
ArmSemihosting & | parent |
std::string | _name |
std::string | mode |
Internal state for open files.
This class describes the internal state of a file opened through the semihosting interface.
A file instance is normally created using one of the ArmSemihosting::FileBase::create() factory methods. These methods handle some the magic file names in the Arm Semihosting specification and instantiate the right implementation. For the same, when unserializing a checkpoint, the create method must be used to unserialize a new instance of a file descriptor.
Definition at line 270 of file semihosting.hh.
|
inline |
Definition at line 273 of file semihosting.hh.
|
inlinevirtual |
Definition at line 275 of file semihosting.hh.
|
delete |
|
delete |
|
inlinevirtual |
Close the file.
Reimplemented in ArmSemihosting::File.
Definition at line 314 of file semihosting.hh.
|
static |
Definition at line 770 of file semihosting.cc.
References Serializable::currentSection(), ArmISA::mode, and paramIn().
|
static |
Definition at line 756 of file semihosting.cc.
Referenced by ArmSemihosting::callOpen(), and ArmSemihosting::unserialize().
|
inline |
Definition at line 289 of file semihosting.hh.
References _name.
|
virtual |
Get the length of a file in bytes.
Reimplemented in ArmSemihosting::File.
Definition at line 823 of file semihosting.cc.
|
inlinevirtual |
Check if a file corresponds to a TTY device.
Reimplemented in ArmSemihosting::File.
Definition at line 321 of file semihosting.hh.
|
inlinevirtual |
Open the the file.
Semihosting file IO interfaces
These interfaces implement common IO functionality in the Semihosting interface.
All functions return a negative value that corresponds to a UNIX errno value when they fail and >=0 on success.
Reimplemented in ArmSemihosting::File.
Definition at line 307 of file semihosting.hh.
|
virtual |
Read data from file.
Reimplemented in ArmSemihosting::File, and ArmSemihosting::FileFeatures.
Definition at line 805 of file semihosting.cc.
|
virtual |
Seek to an absolute position in the file.
pos | Byte offset from start of file. |
Reimplemented in ArmSemihosting::File, and ArmSemihosting::FileFeatures.
Definition at line 817 of file semihosting.cc.
|
overridevirtual |
Serialize an object.
Output an object's state into the current checkpoint section.
cp | Checkpoint state |
Implements Serializable.
Reimplemented in ArmSemihosting::File, and ArmSemihosting::FileFeatures.
Definition at line 791 of file semihosting.cc.
References ArmISA::mode, paramOut(), and SERIALIZE_SCALAR.
Referenced by ArmSemihosting::FileFeatures::serialize(), and ArmSemihosting::File::serialize().
|
overridevirtual |
Unserialize an object.
Read an object's state from the current checkpoint section.
cp | Checkpoint state |
Implements Serializable.
Reimplemented in ArmSemihosting::File, and ArmSemihosting::FileFeatures.
Definition at line 798 of file semihosting.cc.
Referenced by ArmSemihosting::FileFeatures::unserialize(), and ArmSemihosting::File::unserialize().
|
virtual |
Write data to file.
Reimplemented in ArmSemihosting::File.
Definition at line 811 of file semihosting.cc.
|
protected |
Definition at line 356 of file semihosting.hh.
Referenced by fileName().
|
protected |
Definition at line 357 of file semihosting.hh.
Referenced by create().
|
protected |
Definition at line 355 of file semihosting.hh.
Referenced by create().