Blame src/io/tpax_io_read_ahead.c

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