191 lines
4.4 KiB
C
Raw Normal View History

/* Copyright (C) 2010-2017 The RetroArch team
2014-11-01 20:49:57 +01:00
*
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (memory_stream.c).
* ---------------------------------------------------------------------------------------
*
* 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 THE AUTHORS OR COPYRIGHT HOLDERS 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.
*/
#include <stdio.h>
2016-03-20 16:17:44 +01:00
#include <stdlib.h>
#include <string.h>
2014-11-01 20:49:57 +01:00
2016-03-20 16:17:44 +01:00
#include <streams/memory_stream.h>
2014-11-01 20:49:57 +01:00
2015-09-22 12:52:15 +02:00
static uint8_t* g_buffer = NULL;
static size_t g_size = 0;
2014-11-01 20:49:57 +01:00
static size_t last_file_size = 0;
struct memstream
{
2016-04-06 17:03:17 +02:00
uint8_t *buf;
size_t size;
size_t ptr;
size_t max_ptr;
unsigned writing;
2014-11-01 20:49:57 +01:00
};
static void memstream_update_pos(memstream_t *stream)
{
if (stream && stream->ptr > stream->max_ptr)
stream->max_ptr = stream->ptr;
}
2014-11-01 20:49:57 +01:00
void memstream_set_buffer(uint8_t *buffer, size_t size)
{
g_buffer = buffer;
g_size = size;
}
size_t memstream_get_last_size(void)
{
return last_file_size;
}
2016-04-07 02:21:43 +02:00
static void memstream_init(memstream_t *stream,
uint8_t *buffer, size_t max_size, unsigned writing)
2014-11-01 20:49:57 +01:00
{
2016-04-07 02:15:48 +02:00
if (!stream)
return;
stream->buf = buffer;
stream->size = max_size;
stream->ptr = 0;
stream->max_ptr = 0;
stream->writing = writing;
2014-11-01 20:49:57 +01:00
}
memstream_t *memstream_open(unsigned writing)
2014-11-01 20:49:57 +01:00
{
memstream_t *stream;
if (!g_buffer || !g_size)
return NULL;
stream = (memstream_t*)calloc(1, sizeof(*stream));
memstream_init(stream, g_buffer, g_size, writing);
2014-11-01 20:49:57 +01:00
g_buffer = NULL;
g_size = 0;
return stream;
}
void memstream_close(memstream_t *stream)
{
2016-04-07 02:15:48 +02:00
if (!stream)
return;
last_file_size = stream->writing ? stream->max_ptr : stream->size;
2014-11-01 20:49:57 +01:00
free(stream);
}
size_t memstream_read(memstream_t *stream, void *data, size_t bytes)
{
2016-04-07 02:15:48 +02:00
size_t avail = 0;
if (!stream)
return 0;
avail = stream->size - stream->ptr;
2014-11-01 20:49:57 +01:00
if (bytes > avail)
bytes = avail;
2016-04-06 17:03:17 +02:00
memcpy(data, stream->buf + stream->ptr, bytes);
stream->ptr += bytes;
memstream_update_pos(stream);
2014-11-01 20:49:57 +01:00
return bytes;
}
size_t memstream_write(memstream_t *stream, const void *data, size_t bytes)
{
2016-04-07 02:15:48 +02:00
size_t avail = 0;
if (!stream)
return 0;
avail = stream->size - stream->ptr;
2014-11-01 20:49:57 +01:00
if (bytes > avail)
bytes = avail;
2016-04-06 17:03:17 +02:00
memcpy(stream->buf + stream->ptr, data, bytes);
stream->ptr += bytes;
memstream_update_pos(stream);
2014-11-01 20:49:57 +01:00
return bytes;
}
int memstream_seek(memstream_t *stream, int offset, int whence)
{
size_t ptr;
2015-09-13 09:45:41 +02:00
switch (whence)
{
case SEEK_SET:
ptr = offset;
break;
case SEEK_CUR:
2016-04-06 17:03:17 +02:00
ptr = stream->ptr + offset;
2015-09-13 09:45:41 +02:00
break;
case SEEK_END:
ptr = (stream->writing ? stream->max_ptr : stream->size) + offset;
2015-09-13 09:45:41 +02:00
break;
default:
return -1;
}
2014-11-01 20:49:57 +01:00
2016-04-06 17:03:17 +02:00
if (ptr <= stream->size)
2014-11-01 20:49:57 +01:00
{
2016-04-06 17:03:17 +02:00
stream->ptr = ptr;
2014-11-01 20:49:57 +01:00
return 0;
}
2016-04-07 02:15:48 +02:00
2014-11-01 20:49:57 +01:00
return -1;
}
2016-04-07 02:24:31 +02:00
void memstream_rewind(memstream_t *stream)
{
memstream_seek(stream, 0L, SEEK_SET);
}
2014-11-01 20:49:57 +01:00
size_t memstream_pos(memstream_t *stream)
{
2016-04-06 17:03:17 +02:00
return stream->ptr;
2014-11-01 20:49:57 +01:00
}
char *memstream_gets(memstream_t *stream, char *buffer, size_t len)
{
return NULL;
}
int memstream_getc(memstream_t *stream)
{
int ret = 0;
2016-04-06 17:03:17 +02:00
if (stream->ptr >= stream->size)
2014-11-01 20:49:57 +01:00
return EOF;
ret = stream->buf[stream->ptr++];
memstream_update_pos(stream);
return ret;
}
void memstream_putc(memstream_t *stream, int c)
{
if (stream->ptr < stream->size)
stream->buf[stream->ptr++] = c;
memstream_update_pos(stream);
2014-11-01 20:49:57 +01:00
}