Blame src/io/tpax_io_seek.c

67365b
/**************************************************************/
67365b
/*  tpax: a topological pax implementation                    */
67365b
/*  Copyright (C) 2020--2024  SysDeer Technologies, LLC       */
67365b
/*  Released under GPLv2 and GPLv3; see COPYING.TPAX.         */
67365b
/**************************************************************/
67365b
67365b
#include <stdint.h>
67365b
#include <unistd.h>
67365b
#include <fcntl.h>
67365b
#include <errno.h>
67365b
67365b
#include <tpax/tpax.h>
67365b
#include <tpax/tpax_specs.h>
67365b
#include "tpax_driver_impl.h"
67365b
#include "tpax_errinfo_impl.h"
67365b
67365b
static int tpax_io_seek_fileio(
67365b
	struct tpax_driver_ctx *    dctx,
67365b
	off_t                       offset,
67365b
	int                         whence)
67365b
{
67365b
	int fdin;
67365b
67365b
	fdin = tpax_driver_fdin(dctx);
67365b
67365b
	if ((offset = lseek(fdin,offset,whence)) < 0)
67365b
		return TPAX_SYSTEM_ERROR(dctx);
67365b
67365b
	tpax_set_driver_cpos(dctx,offset);
67365b
67365b
	return 0;
67365b
}
67365b
67365b
static int tpax_io_seek_mapped(
67365b
	struct tpax_driver_ctx *    dctx,
67365b
	off_t                       offset,
67365b
	int                         whence)
67365b
{
67365b
	struct tpax_driver_ctx_impl * ictx;
67365b
	size_t                        aoffset;
67365b
67365b
	ictx = tpax_get_driver_ictx(dctx);
67365b
67365b
	if (whence == SEEK_CUR) {
67365b
		offset += tpax_get_driver_cpos(dctx);
67365b
67365b
	} else if (whence == SEEK_END) {
67365b
		offset += ictx->mapsize;
67365b
	}
67365b
67365b
	if ((offset < 0) || ((aoffset = offset) > ictx->mapsize))
67365b
		return TPAX_CUSTOM_ERROR(
67365b
			dctx,
67365b
			TPAX_ERR_FLOW_ERROR);
67365b
67365b
	tpax_set_driver_cpos(dctx,offset);
67365b
67365b
	return 0;
67365b
}
67365b
67365b
int tpax_io_seek(struct tpax_driver_ctx * dctx, off_t offset, int whence)
67365b
{
67365b
	switch (whence) {
67365b
		case SEEK_SET:
67365b
		case SEEK_CUR:
67365b
		case SEEK_END:
67365b
			break;
67365b
67365b
		default:
67365b
			return TPAX_CUSTOM_ERROR(
67365b
				dctx,
67365b
				TPAX_ERR_FLOW_ERROR);
67365b
	}
67365b
67365b
	if (dctx->cctx->srcflags & TPAX_SOURCE_DATA_FILEIO) {
67365b
		return tpax_io_seek_fileio(dctx,offset,whence);
67365b
67365b
	} else if (dctx->cctx->srcflags & TPAX_SOURCE_DATA_MAPPED) {
67365b
		return tpax_io_seek_mapped(dctx,offset,whence);
67365b
67365b
	}
67365b
67365b
	return TPAX_CUSTOM_ERROR(
67365b
		dctx,
67365b
		TPAX_ERR_FLOW_ERROR);
67365b
}