Add new Stream base class, internal-only for now.

This commit is contained in:
Alex Szpakowski
2022-04-21 19:52:04 -03:00
parent 76193899b3
commit ceb23eee48
7 changed files with 143 additions and 21 deletions
+50 -1
View File
@@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2006-2015 LOVE Development Team * Copyright (c) 2006-2022 LOVE Development Team
* *
* This software is provided 'as-is', without any express or implied * This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages * warranty. In no event will the authors be held liable for any damages
@@ -20,10 +20,59 @@
// LOVE // LOVE
#include "Stream.h" #include "Stream.h"
#include "Data.h"
#include "data/ByteData.h"
#include "Exception.h"
namespace love namespace love
{ {
love::Type Stream::type("Stream", &Object::type); love::Type Stream::type("Stream", &Object::type);
Data *Stream::read(int64 size)
{
int64 max = LOVE_INT64_MAX;
int64 cur = 0;
if (isSeekable())
{
max = getSize();
cur = tell();
}
if (cur < 0)
cur = 0;
else if (cur > max)
cur = max;
if (cur + size > max)
size = max - cur;
StrongRef<data::ByteData> dst(new data::ByteData(size, false), Acquire::NORETAIN);
int64 bytesRead = read(dst->getData(), size);
if (bytesRead < 0 || (bytesRead == 0 && bytesRead != size))
throw love::Exception("Could not read from stream.");
if (bytesRead < size)
dst.set(new data::ByteData(dst->getData(), (size_t) bytesRead), Acquire::NORETAIN);
dst->retain();
return dst;
}
bool Stream::write(Data *src)
{
return write(src, 0, src->getSize());
}
bool Stream::write(Data *src, int64 offset, int64 size)
{
if (offset < 0 || size < 0 || offset + size > src->getSize())
throw love::Exception("Offset and size parameters do not fit within the given Data's size.");
return write((const uint8 *) src->getData() + offset, size);
}
} // love } // love
+64 -13
View File
@@ -1,5 +1,5 @@
/** /**
* Copyright (c) 2006-2015 LOVE Development Team * Copyright (c) 2006-2022 LOVE Development Team
* *
* This software is provided 'as-is', without any express or implied * This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages * warranty. In no event will the authors be held liable for any damages
@@ -24,41 +24,92 @@
// LOVE // LOVE
#include <stddef.h> #include <stddef.h>
#include "Object.h" #include "Object.h"
#include "int.h"
namespace love namespace love
{ {
class Data;
class Stream : public Object class Stream : public Object
{ {
public: public:
enum SeekOrigin
{
SEEKORIGIN_BEGIN,
SEEKORIGIN_CURRENT,
SEEKORIGIN_END,
SEEKORIGIN_MAX_ENUM
};
static love::Type type; static love::Type type;
virtual ~Stream() {} virtual ~Stream() {}
// getData and getSize are assumed to talk about /**
// the buffer * Creates a new copy of the Stream, with the same settings as the original.
* The seek position will be reset in the copy.
**/
virtual Stream *clone() = 0;
/** /**
* A callback, gets called when some Stream consumer exhausts the data * Gets whether read() is supported for this Stream.
**/ **/
virtual void fillBackBuffer() {} virtual bool isReadable() const = 0;
/** /**
* Get the front buffer, Streams are supposed to be (at least) double-buffered * Gets whether write() is supported for this Stream.
**/ **/
virtual const void *getFrontBuffer() const = 0; virtual bool isWritable() const = 0;
/** /**
* Get the size of any (and in particular the front) buffer * Gets whether seek(), tell(), and getSize() are supported for this Stream.
**/ **/
virtual size_t getSize() const = 0; virtual bool isSeekable() const = 0;
/** /**
* Swap buffers. Returns true if there is new data in the front buffer, * Reads data into the destination buffer, and returns the number of bytes
* false otherwise. * actually read.
* NOTE: If there is no back buffer ready, this call must be ignored
**/ **/
virtual bool swapBuffers() = 0; virtual int64 read(void *dst, int64 size) = 0;
/**
* Reads data into a new Data object.
**/
virtual Data *read(int64 size);
/**
* Writes data from the source buffer into the Stream.
**/
virtual bool write(const void *src, int64 size) = 0;
/**
* Writes data from the source Data object into the Stream.
**/
virtual bool write(Data *src, int64 offset, int64 size);
bool write(Data *src);
/**
* Flushes all data written to the Stream.
**/
virtual bool flush() = 0;
/**
* Gets the total size of the Stream, if supported.
**/
virtual int64 getSize() = 0;
/**
* Sets the current position in the Stream, if supported.
**/
virtual bool seek(int64 pos, SeekOrigin origin = SEEKORIGIN_BEGIN) = 0;
/**
* Gets the current position in the Stream, if supported.
**/
virtual int64 tell() = 0;
}; // Stream }; // Stream
} // love } // love
+3 -2
View File
@@ -31,11 +31,12 @@ namespace data
love::Type ByteData::type("ByteData", &Data::type); love::Type ByteData::type("ByteData", &Data::type);
ByteData::ByteData(size_t size) ByteData::ByteData(size_t size, bool clear)
: size(size) : size(size)
{ {
create(); create();
memset(data, 0, size); if (clear)
memset(data, 0, size);
} }
ByteData::ByteData(const void *d, size_t size) ByteData::ByteData(const void *d, size_t size)
+1 -1
View File
@@ -35,7 +35,7 @@ public:
static love::Type type; static love::Type type;
ByteData(size_t size); ByteData(size_t size, bool clear = true);
ByteData(const void *d, size_t size); ByteData(const void *d, size_t size);
ByteData(void *d, size_t size, bool own); ByteData(void *d, size_t size, bool own);
ByteData(const ByteData &d); ByteData(const ByteData &d);
-1
View File
@@ -23,7 +23,6 @@
// LOVE // LOVE
#include "common/Module.h" #include "common/Module.h"
#include "common/Stream.h"
#include "filesystem/File.h" #include "filesystem/File.h"
#include "VideoStream.h" #include "VideoStream.h"
+1 -1
View File
@@ -27,7 +27,7 @@ namespace love
namespace video namespace video
{ {
love::Type VideoStream::type("VideoStream", &Stream::type); love::Type VideoStream::type("VideoStream", &Object::type);
void VideoStream::setSync(VideoStream::FrameSync *frameSync) void VideoStream::setSync(VideoStream::FrameSync *frameSync)
{ {
+24 -2
View File
@@ -22,7 +22,7 @@
#define LOVE_VIDEO_VIDEOSTREAM_H #define LOVE_VIDEO_VIDEOSTREAM_H
// LOVE // LOVE
#include "common/Stream.h" #include "common/Object.h"
#include "audio/Source.h" #include "audio/Source.h"
#include "thread/threads.h" #include "thread/threads.h"
@@ -31,7 +31,7 @@ namespace love
namespace video namespace video
{ {
class VideoStream : public Stream class VideoStream : public love::Object
{ {
public: public:
@@ -39,6 +39,28 @@ public:
virtual ~VideoStream() {} virtual ~VideoStream() {}
/**
* A callback, gets called when some Stream consumer exhausts the data
**/
virtual void fillBackBuffer() {}
/**
* Get the front buffer, Streams are supposed to be (at least) double-buffered
**/
virtual const void* getFrontBuffer() const = 0;
/**
* Get the size of any (and in particular the front) buffer
**/
virtual size_t getSize() const = 0;
/**
* Swap buffers. Returns true if there is new data in the front buffer,
* false otherwise.
* NOTE: If there is no back buffer ready, this call must be ignored
**/
virtual bool swapBuffers() = 0;
virtual int getWidth() const = 0; virtual int getWidth() const = 0;
virtual int getHeight() const = 0; virtual int getHeight() const = 0;
virtual const std::string &getFilename() const = 0; virtual const std::string &getFilename() const = 0;