RetroArch/nbio/nbio_stdio.c

140 lines
2.6 KiB
C
Raw Normal View History

2015-02-15 22:43:59 +01:00
#include "nbio.h"
#include <stdio.h>
#include <stdlib.h>
2015-02-15 23:29:13 +01:00
struct nbio_t
{
FILE* f;
void* data;
size_t progress;
size_t len;
/*
* possible values:
* NBIO_READ, NBIO_WRITE - obvious
* -1 - currently doing nothing
* -2 - the pointer was reallocated since the last operation
*/
signed char op;
2015-02-15 22:43:59 +01:00
};
static const char * modes[]={ "rb", "wb", "r+b" };
2015-02-15 23:29:13 +01:00
2015-02-15 22:43:59 +01:00
struct nbio_t* nbio_open(const char * filename, enum nbio_mode_t mode)
{
struct nbio_t* handle;
2015-02-15 22:43:59 +01:00
FILE* f=fopen(filename, modes[mode]);
2015-02-15 23:29:13 +01:00
if (!f)
return NULL;
2015-02-15 22:43:59 +01:00
handle=(struct nbio_t*)malloc(sizeof(struct nbio_t));
2015-02-15 23:29:13 +01:00
if (!handle)
return NULL;
handle->f = f;
handle->len = 0;
2015-02-15 22:43:59 +01:00
if (mode != NBIO_WRITE)
{
fseek(handle->f, 0, SEEK_END);
handle->len = ftell(handle->f);
}
2015-02-15 23:29:13 +01:00
2015-02-15 22:43:59 +01:00
handle->data = malloc(handle->len);
2015-02-15 23:29:13 +01:00
if (!handle->data)
{
free(handle);
return NULL;
}
2015-02-15 22:43:59 +01:00
handle->progress = handle->len;
2015-02-15 23:29:13 +01:00
handle->op = -2;
return handle;
2015-02-15 22:43:59 +01:00
}
void nbio_begin_read(struct nbio_t* handle)
{
if (handle->op >= 0)
{
puts("ERROR - attempted file read operation while busy");
abort();
}
2015-02-15 23:29:13 +01:00
fseek(handle->f, 0, SEEK_SET);
2015-02-15 23:29:13 +01:00
handle->op = NBIO_READ;
2015-02-15 22:43:59 +01:00
handle->progress = 0;
}
void nbio_begin_write(struct nbio_t* handle)
{
if (handle->op >= 0)
{
puts("ERROR - attempted file write operation while busy");
abort();
}
2015-02-15 23:29:13 +01:00
fseek(handle->f, 0, SEEK_SET);
2015-02-15 22:43:59 +01:00
handle->op = NBIO_WRITE;
handle->progress = 0;
}
bool nbio_iterate(struct nbio_t* handle, size_t* progress, size_t* len)
{
size_t amount = 65536;
2015-02-15 23:29:13 +01:00
2015-02-15 22:43:59 +01:00
if (amount > handle->len - handle->progress)
amount = handle->len - handle->progress;
2015-02-15 23:29:13 +01:00
2015-02-15 22:43:59 +01:00
if (handle->op == NBIO_READ)
fread((char*)handle->data + handle->progress, 1,amount, handle->f);
2015-02-15 22:43:59 +01:00
if (handle->op == NBIO_WRITE)
fwrite((char*)handle->data + handle->progress, 1,amount, handle->f);
2015-02-15 23:29:13 +01:00
2015-02-15 22:43:59 +01:00
handle->progress += amount;
2015-02-15 23:29:13 +01:00
if (progress)
*progress = handle->progress;
if (len)
*len = handle->len;
if (handle->progress == handle->len)
handle->op = -1;
return (handle->op < 0);
2015-02-15 22:43:59 +01:00
}
void nbio_resize(struct nbio_t* handle, size_t len)
{
if (handle->op >= 0)
{
puts("ERROR - attempted file resize operation while busy");
abort();
}
2015-02-15 22:43:59 +01:00
if (len < handle->len)
{
puts("ERROR - attempted file shrink operation, not implemented");
abort();
}
2015-02-15 23:29:13 +01:00
handle->len = len;
handle->data = realloc(handle->data, handle->len);
2015-02-15 23:29:13 +01:00
handle->op = -1;
2015-02-15 22:43:59 +01:00
}
void* nbio_get_ptr(struct nbio_t* handle, size_t* len)
{
2015-02-15 23:29:13 +01:00
if (len)
*len = handle->len;
if (handle->op == -1)
return handle->data;
return NULL;
2015-02-15 22:43:59 +01:00
}
void nbio_free(struct nbio_t* handle)
{
fclose(handle->f);
free(handle->data);
}