162 lines
3.0 KiB
C
Raw Normal View History

2015-02-15 22:43:59 +01:00
#include <stdio.h>
#include <stdlib.h>
#include <file/nbio.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 = NULL;
FILE* f=fopen(filename, modes[mode]);
if (!f)
2015-02-15 23:29:13 +01:00
return NULL;
handle=(struct nbio_t*)malloc(sizeof(struct nbio_t));
2015-02-15 23:29:13 +01:00
if (!handle)
{
fclose(f);
2015-02-15 23:29:13 +01:00
return NULL;
}
2015-02-15 23:29:13 +01:00
handle->f = f;
2015-02-15 23:29:13 +01:00
handle->len = 0;
if (mode != NBIO_WRITE)
{
fseek(handle->f, 0, SEEK_END);
handle->len = ftell(handle->f);
}
2015-02-15 23:29:13 +01:00
handle->data = malloc(handle->len);
2015-02-15 23:29:13 +01:00
2015-02-15 23:30:56 +01:00
if (handle->len && !handle->data)
2015-02-15 23:29:13 +01:00
{
free(handle);
fclose(f);
2015-02-15 23:29:13 +01:00
return NULL;
}
handle->progress = handle->len;
handle->op = -2;
return handle;
2015-02-15 22:43:59 +01:00
}
void nbio_begin_read(struct nbio_t* handle)
{
2015-02-20 02:34:17 +01:00
if (!handle)
return;
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;
handle->progress = 0;
2015-02-15 22:43:59 +01:00
}
void nbio_begin_write(struct nbio_t* handle)
{
if (handle->op >= 0)
{
puts("ERROR - attempted file write operation while busy");
abort();
}
fseek(handle->f, 0, SEEK_SET);
handle->op = NBIO_WRITE;
handle->progress = 0;
2015-02-15 22:43:59 +01:00
}
bool nbio_iterate(struct nbio_t* handle)
2015-02-15 22:43:59 +01:00
{
size_t amount = 65536;
2015-02-15 23:29:13 +01:00
2015-02-20 02:34:17 +01:00
if (!handle)
return false;
if (amount > handle->len - handle->progress)
amount = handle->len - handle->progress;
2015-02-15 23:29:13 +01:00
if (handle->op == NBIO_READ)
fread((char*)handle->data + handle->progress, 1,amount, handle->f);
if (handle->op == NBIO_WRITE)
fwrite((char*)handle->data + handle->progress, 1,amount, handle->f);
2015-02-15 23:29:13 +01:00
handle->progress += amount;
2015-02-15 23:29:13 +01:00
if (handle->progress == handle->len)
2015-02-15 23:29:13 +01:00
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();
}
if (len < handle->len)
{
puts("ERROR - attempted file shrink operation, not implemented");
abort();
}
handle->len = len;
handle->data = realloc(handle->data, handle->len);
handle->op = -1;
handle->progress = handle->len;
2015-02-15 22:43:59 +01:00
}
void* nbio_get_ptr(struct nbio_t* handle, size_t* len)
{
2015-02-20 02:34:17 +01:00
if (!handle)
return NULL;
if (len)
2015-02-15 23:29:13 +01:00
*len = handle->len;
if (handle->op == -1)
2015-02-15 23:29:13 +01:00
return handle->data;
return NULL;
2015-02-15 22:43:59 +01:00
}
void nbio_cancel(struct nbio_t* handle)
{
2015-02-17 00:30:23 +01:00
handle->op = -1;
handle->progress = handle->len;
}
2015-02-15 22:43:59 +01:00
void nbio_free(struct nbio_t* handle)
{
2015-02-17 00:30:23 +01:00
if (!handle)
return;
if (handle->op >= 0)
{
puts("ERROR - attempted free() while busy");
abort();
}
fclose(handle->f);
free(handle->data);
2015-02-15 22:43:59 +01:00
}