sortix-mirror/sortix/stream.h

71 lines
1.7 KiB
C
Raw Normal View History

2011-08-05 12:25:00 +00:00
/******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011.
This file is part of Sortix.
Sortix is free software: you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
Sortix is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along
with Sortix. If not, see <http://www.gnu.org/licenses/>.
stream.h
Various device types that provides a sequence of bytes.
******************************************************************************/
#ifndef SORTIX_STREAM_H
#define SORTIX_STREAM_H
2011-11-16 07:37:29 +00:00
#include "device.h"
2011-08-05 12:25:00 +00:00
namespace Sortix
{
class DevStream : public Device
{
public:
2011-11-16 07:37:29 +00:00
typedef Device BaseClass;
2011-08-05 12:25:00 +00:00
public:
virtual bool IsType(unsigned type) const { return type == Device::STREAM; }
2011-08-05 12:25:00 +00:00
public:
2011-11-16 07:37:29 +00:00
virtual ssize_t Read(byte* dest, size_t count) = 0;
virtual ssize_t Write(const byte* src, size_t count) = 0;
virtual bool IsReadable() = 0;
virtual bool IsWritable() = 0;
2011-08-05 12:25:00 +00:00
};
class DevBuffer : public DevStream
{
public:
2011-11-18 16:49:31 +00:00
typedef DevStream BaseClass;
2011-08-05 12:25:00 +00:00
public:
virtual bool IsType(unsigned type) const
2011-11-16 07:37:29 +00:00
{
return type == Device::BUFFER || BaseClass::IsType(type);
}
2011-08-05 12:25:00 +00:00
public:
2011-11-16 07:37:29 +00:00
virtual size_t BlockSize() = 0;
virtual uintmax_t Size() = 0;
virtual uintmax_t Position() = 0;
virtual bool Seek(uintmax_t position) = 0;
virtual bool Resize(uintmax_t size) = 0;
2011-08-05 12:25:00 +00:00
};
}
#endif