mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
53 lines
949 B
C
53 lines
949 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#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;
|
|
}
|