source: roaraudio/libroar/file.c @ 1765:6521fb56702e

Last change on this file since 1765:6521fb56702e was 1765:6521fb56702e, checked in by phi, 15 years ago

some dirty win32 hacks

File size: 7.6 KB
Line 
1//file.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of libroar a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  libroar is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 *  NOTE for everyone want's to change something and send patches:
24 *  read README and HACKING! There a addition information on
25 *  the license of this document you need to read before you send
26 *  any patches.
27 *
28 *  NOTE for uses of non-GPL (LGPL,...) software using libesd, libartsc
29 *  or libpulse*:
30 *  The libs libroaresd, libroararts and libroarpulse link this lib
31 *  and are therefore GPL. Because of this it may be illigal to use
32 *  them with any software that uses libesd, libartsc or libpulse*.
33 */
34
35#include "libroar.h"
36
37#define BUFSIZE 8192
38#define BUFMAX  65536
39
40#ifdef ROAR_HAVE_IO_POSIX
41#define _CAN_OPERATE
42#endif
43
44int roar_file_codecdetect(char * buf, int len) {
45 int codec = -1;
46
47 if ( len > 3 ) {
48  if ( strncmp(buf, "OggS", 4) == 0 ) {
49   codec = ROAR_CODEC_OGG_GENERAL;
50   if ( len > 32 ) { // this is 5 bytes after the end of the header
51    if ( strncmp(buf+28, "\177FLAC", 5) == 0 ) {
52     codec = ROAR_CODEC_OGG_FLAC;
53    } else if ( strncmp(buf+28, "Speex", 5) == 0 ) {
54     codec = ROAR_CODEC_OGG_SPEEX;
55    } else if ( len > 34 ) { // this is 7 bytes after the end of the header
56     if ( strncmp(buf+28, "\001vorbis", 7) == 0 )
57      codec = ROAR_CODEC_OGG_VORBIS;
58    }
59   }
60  } else if ( strncmp(buf, "MThd", 4) == 0 ) {
61   codec = ROAR_CODEC_MIDI_FILE;
62  } else if ( strncmp(buf, "RIFF", 4) == 0 ) {
63   if ( len > 15 ) {
64    if ( strncmp(buf+8, "WAVEfmt ", 8) == 0 )
65     codec = ROAR_CODEC_RIFF_WAVE;
66   }
67  } else if ( strncmp(buf, "Roar", 4) == 0 ) {
68   if ( len > ROAR_SPEEX_MAGIC_LEN ) {
69    if ( strncmp(buf, ROAR_SPEEX_MAGIC, ROAR_SPEEX_MAGIC_LEN) == 0 )
70     codec = ROAR_CODEC_ROAR_SPEEX;
71#if ROAR_SPEEX_MAGIC_LEN < ROAR_CELT_MAGIC_LEN
72   }
73   if ( len > ROAR_CELT_MAGIC_LEN ) {
74#endif
75    if ( strncmp(buf, ROAR_CELT_MAGIC, ROAR_CELT_MAGIC_LEN) == 0 )
76     codec = ROAR_CODEC_ROAR_CELT;
77   }
78  } else if ( strncmp(buf, "fLaC", 4) == 0 ) {
79   codec = ROAR_CODEC_FLAC;
80  } else if ( len > 7 && strncmp(buf, "RAUM-CF0", 8) == 0 ) {
81   codec = ROAR_CODEC_RAUM;
82  }
83 }
84
85 return codec;
86}
87
88ssize_t roar_file_send_raw (int out, int in) {
89#ifdef _CAN_OPERATE
90 ssize_t r = 0;
91#ifdef ROAR_HAVE_LINUX_SENDFILE
92 ssize_t ret;
93#endif
94 int len;
95 char buf[BUFSIZE];
96#if defined(__linux__) && defined(ROAR_HAVE_IPV4)
97 int cork_new = 1, cork_old;
98 socklen_t cork_len = sizeof(int);
99
100 if ( getsockopt(out, IPPROTO_TCP, TCP_CORK, &cork_old, &cork_len) == -1 ) {
101  cork_old = -1;
102 } else {
103  setsockopt(out, IPPROTO_TCP, TCP_CORK, &cork_new, sizeof(int));
104 }
105#endif
106
107#ifdef ROAR_HAVE_LINUX_SENDFILE
108 while ((ret = sendfile(out, in, NULL, BUFMAX)) > 0)
109  r += ret;
110#endif
111
112 // TODO: try mmap here!
113
114 while ((len = read(in, buf, BUFSIZE)) > 0)
115  r += write(out, buf, len);
116
117#if defined(__linux__) && defined(ROAR_HAVE_IPV4)
118 if ( cork_old != -1 )
119  setsockopt(out, IPPROTO_TCP, TCP_CORK, &cork_old, cork_len);
120#endif
121 return r;
122#else
123 return -1;
124#endif
125}
126
127ssize_t     roar_file_map        (char * filename, int flags, mode_t mode, size_t len, void ** mem) {
128#ifdef ROAR_HAVE_MMAP
129 int fh;
130 int mmap_flags = 0;
131 struct stat stat;
132
133 if ( mem == NULL || filename == NULL )
134  return -1;
135
136 *mem = NULL;
137
138 if ( flags & O_RDWR ) {
139  mmap_flags = PROT_READ|PROT_WRITE;
140 } else if ( flags & O_WRONLY ) {
141  mmap_flags = PROT_WRITE;
142 } else {
143  mmap_flags = PROT_READ;
144 }
145
146 if ( (fh = open(filename, flags, mode)) == -1 ) {
147  return -1;
148 }
149
150 if ( fstat(fh, &stat) == -1 ) {
151  close(fh);
152  return -1;
153 }
154
155 if ( stat.st_size < len ) {
156  if ( ftruncate(fh, len) == -1 ) {
157   close(fh);
158   return -1;
159  }
160 }
161
162 if ( (*mem = mmap(NULL, len, mmap_flags, MAP_SHARED, fh, 0)) == NULL ) {
163  close(fh);
164  return -1;
165 }
166
167 close(fh);
168
169 return len;
170#else
171#ifdef ROAR_TARGET_WIN32
172 ROAR_ERR("roar_file_map(*): There is no support to fast access files via mmap() within win32, download a real OS...");
173#endif
174 return -1;
175#endif
176}
177
178int     roar_file_unmap      (size_t len, void * mem) {
179#ifdef ROAR_HAVE_MMAP
180 return munmap(mem, len);
181#else
182#ifdef ROAR_TARGET_WIN32
183 ROAR_ERR("roar_file_map(*): There is no support to fast access files via mmap() within win32, download a real OS...");
184#endif
185 return -1;
186#endif
187}
188
189
190ssize_t roar_file_play (struct roar_connection * con, char * file, int exec) {
191 return roar_file_play_full(con, file, exec, 0, NULL);
192}
193
194ssize_t roar_file_play_full  (struct roar_connection * con, char * file, int exec, int passfh, struct roar_stream * s) {
195#ifdef _CAN_OPERATE
196 int codec = -1;
197 int in, out = -1;
198 ssize_t r = 0;
199 int seek;
200 int len;
201 char buf[BUFSIZE];
202 int rate = ROAR_RATE_DEFAULT, channels = ROAR_CHANNELS_DEFAULT, bits = ROAR_BITS_DEFAULT;
203 struct roar_stream localstream[1];
204
205 // FIXME: check error cases
206
207 if ( !s )
208  s = localstream;
209
210 if ( !con )
211  return -1;
212
213 if ( !file )
214  return -1;
215
216 if ( exec && passfh )
217  return -1;
218
219#ifdef ROAR_TARGET_WIN32
220 if ( (in = open(file, O_RDONLY|O_BINARY, 0644)) == -1 ) {
221#else
222 if ( (in = open(file, O_RDONLY, 0644)) == -1 ) {
223#endif
224  return -1;
225 }
226
227 if ((len = read(in, buf, BUFSIZE)) < 1) {
228  close(in);
229  return -1;
230 }
231
232 codec = roar_file_codecdetect(buf, len);
233
234 ROAR_DBG("roar_file_play_full(*): codec=%i(%s)", codec, roar_codec2str(codec));
235
236 seek = lseek(in, 0, SEEK_SET) == (off_t) -1 ? 0 : 1;
237
238 if ( codec == -1 ) {
239  close(in);
240  return -1;
241 }
242
243 if ( passfh && !seek ) {
244  ROAR_WARN("roar_file_play_full(*): passfh on non seekable file: this may produce incorrect playback");
245 }
246
247 if ( exec ) {
248  if ( roar_stream_new(s, rate, channels, bits, codec) == -1 ) {
249   close(in);
250   return -1;
251  }
252
253  if ( roar_stream_connect(con, s, ROAR_DIR_PLAY) == -1 ) {
254   close(in);
255   return -1;
256  }
257
258  if ( roar_stream_exec(con, s) == -1 ) {
259   close(in);
260   return -1;
261  }
262
263  if ( (out = roar_get_connection_fh(con)) == -1 ) {
264   close(in);
265   return -1;
266  }
267
268  ROAR_SHUTDOWN(out, SHUT_RD);
269 } else {
270  if ( !(passfh && seek) ) {
271   if ( (out = roar_simple_new_stream_obj(con, s, rate, channels, bits, codec, ROAR_DIR_PLAY)) == -1 ) {
272    close(in);
273    return -1;
274   }
275  } else {
276   if ( roar_stream_new(s, rate, channels, bits, codec) == -1 ) {
277    close(in);
278    return -1;
279   }
280
281   if ( roar_stream_connect(con, s, ROAR_DIR_PLAY) == -1 ) {
282    close(in);
283    return -1;
284   }
285  }
286 }
287
288 if ( !seek )
289  ROAR_NETWORK_WRITE(out, buf, len);
290
291 if ( !passfh ) {
292#ifndef ROAR_TARGET_WIN32
293  r = roar_file_send_raw(out, in);
294
295  close(out);
296#else
297 while ((len = read(in, buf, BUFSIZE)) > 0)
298  if ( send(out, buf, len, 0) != len )
299   break;
300
301 closesocket(out);
302#endif
303
304  if ( exec ) {
305   // TODO: FIXME: this ma cause a memory leak in future
306   // OLD: con->fh = -1;
307   roar_connect_fh(con, -2);
308  }
309
310  close(in);
311 } else {
312  if ( roar_stream_passfh(con, s, in) == -1 ) {
313   return -1;
314  }
315  close(out);
316  close(in);
317  return 0;
318 }
319
320 return r;
321#else
322 return -1;
323#endif
324}
325
326char  * roar_cdromdevice     (void) {
327 char * k;
328
329 if ( (k = getenv("CDDA_DEVICE")) != NULL )
330  return k;
331
332#ifdef ROAR_DEFAULT_CDROM
333 return ROAR_DEFAULT_CDROM;
334#endif
335
336 return NULL;
337}
338
339//ll
Note: See TracBrowser for help on using the repository browser.