1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
/*
* This file is part of libtrace
*
* Copyright (c) 2007,2008,2009,2010 The University of Waikato, Hamilton,
* New Zealand.
*
* Authors: Daniel Lawson
* Perry Lorier
* Shane Alcock
*
* All rights reserved.
*
* This code has been developed by the University of Waikato WAND
* research group. For further information please see http://www.wand.net.nz/
*
* libtrace is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* libtrace is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with libtrace; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* $Id: ior-stdio.c 1548 2010-03-23 00:08:46Z yww4 $
*
*/
#define _GNU_SOURCE 1
#include "wandio.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
/* Libtrace IO module implementing a standard IO reader, i.e. no decompression
*/
struct stdio_t {
int fd;
};
extern io_source_t stdio_source;
#define DATA(io) ((struct stdio_t *)((io)->data))
io_t *stdio_open(const char *filename)
{
io_t *io = malloc(sizeof(io_t));
io->data = malloc(sizeof(struct stdio_t));
if (strcmp(filename,"-") == 0)
DATA(io)->fd = 0; /* STDIN */
else
DATA(io)->fd = open(filename,
O_RDONLY
#ifdef O_DIRECT
|(force_directio_read?O_DIRECT:0)
#endif
);
io->source = &stdio_source;
if (DATA(io)->fd == -1) {
free(io);
return NULL;
}
return io;
}
static off_t stdio_read(io_t *io, void *buffer, off_t len)
{
return read(DATA(io)->fd,buffer,len);
}
static off_t stdio_tell(io_t *io)
{
return lseek(DATA(io)->fd, 0, SEEK_CUR);
}
static off_t stdio_seek(io_t *io, off_t offset, int whence)
{
return lseek(DATA(io)->fd, offset, whence);
}
static void stdio_close(io_t *io)
{
close(DATA(io)->fd);
free(io->data);
free(io);
}
io_source_t stdio_source = {
"stdio",
stdio_read,
NULL,
stdio_tell,
stdio_seek,
stdio_close
};
|