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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
/*
TiMidity++ -- MIDI to WAVE converter and player
Copyright (C) 1999,2000 Masanao Izumo <mo@goice.co.jp>
Copyright (C) 1995 Tuukka Toivonen <tt@cgs.fi>
This program 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.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */
#include <stdio.h>
#include <stdlib.h>
#ifndef NO_STRING_H
#include <string.h>
#else
#include <strings.h>
#endif
#include "timidity.h"
#include "url.h"
#ifdef HAVE_POPEN
/* It is not supported command PIPE at Windows */
typedef struct _URL_pipe
{
char common[sizeof(struct _URL)];
FILE *fp;
} URL_pipe;
#define PIPE_FP(url) (((URL_pipe *)(url))->fp)
static int name_pipe_check(char *url_string);
static long url_pipe_read(URL url, void *buff, long n);
static char *url_pipe_gets(URL url, char *buff, int n);
static int url_pipe_fgetc(URL url);
static void url_pipe_close(URL url);
struct URL_module URL_module_pipe =
{
URL_pipe_t, /* type */
name_pipe_check, /* URL checker */
NULL, /* initializer */
url_pipe_open, /* open */
NULL /* must be NULL */
};
/* url_string := "command|" */
static int name_pipe_check(char *url_string)
{
#ifdef PIPE_SCHEME_ENABLE
char *p;
p = strrchr(url_string, '|');
if(p == NULL)
return 0;
p++;
while(*p == ' ')
p++;
return *p == '\0';
#else
return 0;
#endif
}
URL url_pipe_open(char *command)
{
URL_pipe *url;
char buff[BUFSIZ], *p;
strncpy(buff, command, sizeof(buff));
buff[sizeof(buff) - 1] = '\0';
p = strrchr(buff, '|');
if(p != NULL)
{
char *q;
q = p + 1;
while(*q == ' ')
q++;
if(*q == '\0')
{
p--;
while(buff < p && *p == ' ')
p--;
if(buff == p)
{
errno = ENOENT;
url_errno = URLERR_IURLF;
return NULL;
}
p[1] = '\0';
}
}
url = (URL_pipe *)alloc_url(sizeof(URL_pipe));
if(url == NULL)
{
url_errno = errno;
return NULL;
}
/* common members */
URLm(url, type) = URL_pipe_t;
URLm(url, url_read) = url_pipe_read;
URLm(url, url_gets) = url_pipe_gets;
URLm(url, url_fgetc) = url_pipe_fgetc;
URLm(url, url_seek) = NULL;
URLm(url, url_tell) = NULL;
URLm(url, url_close) = url_pipe_close;
/* private members */
url->fp = NULL;
if((url->fp = popen(buff, "r")) == NULL)
{
url_pipe_close((URL)url);
url_errno = errno;
return NULL;
}
return (URL)url;
}
static long url_pipe_read(URL url, void *buff, long n)
{
return (long)fread(buff, 1, n, PIPE_FP(url));
}
static char *url_pipe_gets(URL url, char *buff, int n)
{
return fgets(buff, n, PIPE_FP(url));
}
static int url_pipe_fgetc(URL url)
{
#ifdef getc
return getc(PIPE_FP(url));
#else
return fgetc(PIPE_FP(url));
#endif /* getc */
}
static void url_pipe_close(URL url)
{
int save_errno = errno;
if(PIPE_FP(url) != NULL)
pclose(PIPE_FP(url));
free(url);
errno = save_errno;
}
#else /* HAVE_POPEN */
struct URL_module URL_module_pipe =
{
URL_none_t, /* type */
NULL, /* URL checker */
NULL, /* initializer */
NULL, /* open */
NULL /* must be NULL */
};
URL url_pipe_open(char *command) { return NULL; } /* dmy */
#endif
|