2015-06-26 19:30:03 +00:00
|
|
|
#ifndef __NOD_IDISC_IO__
|
|
|
|
#define __NOD_IDISC_IO__
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <stdlib.h>
|
2015-06-28 05:43:53 +00:00
|
|
|
#include <stdio.h>
|
2015-06-30 19:38:51 +00:00
|
|
|
#include <stdint.h>
|
2015-06-26 19:30:03 +00:00
|
|
|
|
|
|
|
namespace NOD
|
|
|
|
{
|
|
|
|
|
|
|
|
class IDiscIO
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~IDiscIO() {}
|
|
|
|
|
2015-06-28 05:43:53 +00:00
|
|
|
struct IReadStream
|
2015-06-26 19:30:03 +00:00
|
|
|
{
|
2015-06-30 19:38:51 +00:00
|
|
|
virtual uint64_t read(void* buf, uint64_t length)=0;
|
|
|
|
virtual void seek(int64_t offset, int whence=SEEK_SET)=0;
|
2015-06-26 19:30:03 +00:00
|
|
|
};
|
2015-06-30 19:38:51 +00:00
|
|
|
virtual std::unique_ptr<IReadStream> beginReadStream(uint64_t offset=0) const=0;
|
2015-06-26 19:30:03 +00:00
|
|
|
|
2015-06-28 05:43:53 +00:00
|
|
|
struct IWriteStream
|
2015-06-26 19:30:03 +00:00
|
|
|
{
|
2015-06-30 19:38:51 +00:00
|
|
|
virtual uint64_t write(void* buf, uint64_t length)=0;
|
2015-06-26 19:30:03 +00:00
|
|
|
};
|
2015-06-30 19:38:51 +00:00
|
|
|
virtual std::unique_ptr<IWriteStream> beginWriteStream(uint64_t offset=0) const=0;
|
2015-06-26 19:30:03 +00:00
|
|
|
};
|
|
|
|
|
2015-06-30 06:46:19 +00:00
|
|
|
struct IPartReadStream
|
|
|
|
{
|
2015-06-30 19:38:51 +00:00
|
|
|
virtual void seek(int64_t offset, int whence=SEEK_SET)=0;
|
|
|
|
virtual uint64_t read(void* buf, uint64_t length)=0;
|
2015-06-30 06:46:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct IPartWriteStream
|
|
|
|
{
|
2015-06-30 19:38:51 +00:00
|
|
|
virtual uint64_t write(void* buf, uint64_t length)=0;
|
2015-06-30 06:46:19 +00:00
|
|
|
};
|
|
|
|
|
2015-06-26 19:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __NOD_IDISC_IO__
|