EMILE/libblock/block_open.c
2006-09-15 14:55:39 +00:00

53 lines
945 B
C

/*
*
* (c) 2005 Laurent Vivier <Laurent@lvivier.info>
*
*/
#include <stdlib.h>
#include "libblock.h"
#define NB_SECTORS (18*2)
/*
* path is "<first>,<size>"
* where <first> is the offset of the first byte to read on the device
* and <size> is the number of bytes to read then.
*/
block_FILE *block_open(device_io_t *device, char *path)
{
block_FILE *block;
int blocksize = device->get_blocksize(device);
int first, size;
first = strtol(path, &path, 0);
if ( (*path != ',') && (*path != 0) )
return NULL;
if (*path == ',')
{
path++;
size = strtol(path, &path, 0);
if (*path != 0)
return NULL;
}
else
size = -1;
block = (block_FILE *)malloc(sizeof(block_FILE) +
NB_SECTORS * blocksize);
if (block == NULL)
return NULL;
block->base = first;
block->offset = 0;
block->size = size;
block->device = device;
block->current = -1;
block->buffer_size = NB_SECTORS * blocksize;
return block;
}