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
|
/*
Copyright (C) 2000 Stefan Westerfeld
stefan@space.twc.de
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA
Modified to add support for 64 bit fopen by Mike Hearn <mike@navi.cx>
*/
/*
* This source only exists because some very special programs think that
* it is a very special idea to access /dev/dsp by the means of stdio, so
* we need to fake FILE* access for artsdsp as well.
*
* To do so, it relies on glibc internals, so that it will probably not work
* on other systems - but then again, it might not be necessary on other
* systems, when fopen properly calls open, it might as well work unchanged.
*/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <stdio.h>
struct fd_cookie {
int fd;
};
static ssize_t fdc_read (void *cookie, char *buffer, size_t size)
{
struct fd_cookie *fdc = (struct fd_cookie *)cookie;
return read(fdc->fd, buffer, size);
}
static ssize_t fdc_write (void *cookie, const char *buffer, size_t size)
{
struct fd_cookie *fdc = (struct fd_cookie *)cookie;
return write(fdc->fd, buffer, size);
}
static int fdc_seek (void* cookie ATTRIBUTE_UNUSED,
off64_t* position ATTRIBUTE_UNUSED,
int whence ATTRIBUTE_UNUSED)
{
return -1;
}
static int fdc_clean (void *cookie)
{
struct fd_cookie *fdc = (struct fd_cookie *)cookie;
int result = close(fdc->fd);
free(cookie);
return result;
}
static FILE *fake_fopen(const char *path, const char *mode, int flags)
{
cookie_io_functions_t fns = { fdc_read, fdc_write, fdc_seek, fdc_clean };
struct fd_cookie *fdc = (struct fd_cookie *)malloc(sizeof(struct fd_cookie));
const char *mptr;
int open_mode = 0;
FILE *result = 0;
for(mptr = mode; *mptr; mptr++) {
if(*mptr == 'r') open_mode |= 1; /* 1 = read */
if(*mptr == 'w') open_mode |= 2; /* 2 = write */
if(*mptr == '+') open_mode |= 3; /* 3 = readwrite */
if(*mptr == 'a') open_mode |= 2; /* append -> write */
}
switch (open_mode) {
case 1:
fdc->fd = open(path, O_RDONLY | flags, 0666);
break;
case 2:
fdc->fd = open(path, O_WRONLY | flags, 0666);
break;
default:
fdc->fd = open(path, O_RDWR | flags, 0666);
break;
}
if (open_mode && fdc->fd > 0) {
result = fopencookie (fdc,"w", fns);
result->_fileno = fdc->fd; /* ugly patchy slimy kludgy hack */
}
return result;
}
|