Blame src/io/tpax_io_read_next.c

6d4065
/**************************************************************/
6d4065
/*  tpax: a topological pax implementation                    */
6d4065
/*  Copyright (C) 2020--2024  SysDeer Technologies, LLC       */
6d4065
/*  Released under GPLv2 and GPLv3; see COPYING.TPAX.         */
6d4065
/**************************************************************/
6d4065
6d4065
#include <stdint.h>
6d4065
#include <unistd.h>
6d4065
#include <fcntl.h>
6d4065
#include <errno.h>
6d4065
6d4065
#include <tpax/tpax.h>
6d4065
#include <tpax/tpax_specs.h>
6d4065
#include "tpax_driver_impl.h"
6d4065
#include "tpax_errinfo_impl.h"
6d4065
6d4065
#define TPAX_IO_READ_MAX (2147483647)
6d4065
6d4065
static int tpax_io_range_read_next_fileio(
6d4065
	struct tpax_driver_ctx *    dctx,
6d4065
	void *                      buf,
6d4065
	size_t                      size)
6d4065
{
6d4065
	int     fdin;
6d4065
	ssize_t nbytes;
6d4065
	off_t   cpos;
6d4065
6d4065
	fdin = tpax_driver_fdin(dctx);
6d4065
6d4065
	nbytes = read(fdin,buf,size);
6d4065
6d4065
	while ((nbytes < 0) && (errno = EINTR))
6d4065
		nbytes = read(fdin,buf,size);
6d4065
6d4065
	if (nbytes > 0) {
6d4065
		cpos = tpax_get_driver_cpos(dctx);
6d4065
		tpax_set_driver_cpos(dctx,cpos + nbytes);
6d4065
	}
6d4065
6d4065
	return nbytes;
6d4065
}
6d4065
6d4065
static int tpax_io_range_read_next_mapped(
6d4065
	struct tpax_driver_ctx *    dctx,
6d4065
	void *                      buf,
6d4065
	size_t                      size)
6d4065
{
6d4065
	struct tpax_driver_ctx_impl * ictx;
6d4065
	char *                        ch;
6d4065
	off_t                         cpos;
6d4065
6d4065
	ictx = tpax_get_driver_ictx(dctx);
6d4065
	cpos = tpax_get_driver_cpos(dctx);
6d4065
	size = (cpos + size <= ictx->mapsize) ? size : ictx->mapsize - cpos;
6d4065
6d4065
	ch = ictx->mapaddr;
6d4065
	ch = &ch[cpos];
6d4065
6d4065
	memcpy(buf,ch,size);
6d4065
6d4065
	tpax_set_driver_cpos(dctx,cpos + size);
6d4065
6d4065
	return size;
6d4065
}
6d4065
6d4065
int tpax_io_range_read_next(struct tpax_driver_ctx * dctx, void * buf, size_t size)
6d4065
{
6d4065
	size = (size <= TPAX_IO_READ_MAX) ? size : TPAX_IO_READ_MAX;
6d4065
6d4065
	if (dctx->cctx->srcflags & TPAX_SOURCE_DATA_FILEIO) {
6d4065
		return tpax_io_range_read_next_fileio(dctx,buf,size);
6d4065
6d4065
	} else if (dctx->cctx->srcflags & TPAX_SOURCE_DATA_MAPPED) {
6d4065
		return tpax_io_range_read_next_mapped(dctx,buf,size);
6d4065
6d4065
	}
6d4065
6d4065
	return TPAX_CUSTOM_ERROR(
6d4065
		dctx,
6d4065
		TPAX_ERR_FLOW_ERROR);
6d4065
}