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
RevLine 
[202]1//file.c:
2
[690]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
[202]35#include "libroar.h"
36
[208]37#define BUFSIZE 8192
38#define BUFMAX  65536
39
[1474]40#ifdef ROAR_HAVE_IO_POSIX
41#define _CAN_OPERATE
42#endif
43
[215]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;
[1000]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    }
[215]59   }
[558]60  } else if ( strncmp(buf, "MThd", 4) == 0 ) {
61   codec = ROAR_CODEC_MIDI_FILE;
[563]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   }
[623]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;
[636]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;
[623]77   }
[1196]78  } else if ( strncmp(buf, "fLaC", 4) == 0 ) {
79   codec = ROAR_CODEC_FLAC;
80  } else if ( len > 7 && strncmp(buf, "RAUM-CF0", 8) == 0 ) {
[889]81   codec = ROAR_CODEC_RAUM;
[215]82  }
83 }
84
85 return codec;
86}
87
[208]88ssize_t roar_file_send_raw (int out, int in) {
[1474]89#ifdef _CAN_OPERATE
[208]90 ssize_t r = 0;
[701]91#ifdef ROAR_HAVE_LINUX_SENDFILE
[208]92 ssize_t ret;
[701]93#endif
[208]94 int len;
95 char buf[BUFSIZE];
[1378]96#if defined(__linux__) && defined(ROAR_HAVE_IPV4)
[217]97 int cork_new = 1, cork_old;
98 socklen_t cork_len = sizeof(int);
99
[219]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 }
[217]105#endif
[208]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
[1379]117#if defined(__linux__) && defined(ROAR_HAVE_IPV4)
[219]118 if ( cork_old != -1 )
119  setsockopt(out, IPPROTO_TCP, TCP_CORK, &cork_old, cork_len);
[217]120#endif
[208]121 return r;
[1474]122#else
123 return -1;
124#endif
[208]125}
126
[649]127ssize_t     roar_file_map        (char * filename, int flags, mode_t mode, size_t len, void ** mem) {
[1442]128#ifdef ROAR_HAVE_MMAP
[649]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;
[1081]170#else
[1442]171#ifdef ROAR_TARGET_WIN32
[1081]172 ROAR_ERR("roar_file_map(*): There is no support to fast access files via mmap() within win32, download a real OS...");
[1442]173#endif
[1081]174 return -1;
175#endif
[649]176}
177
178int     roar_file_unmap      (size_t len, void * mem) {
[1442]179#ifdef ROAR_HAVE_MMAP
[649]180 return munmap(mem, len);
[1081]181#else
[1442]182#ifdef ROAR_TARGET_WIN32
[1081]183 ROAR_ERR("roar_file_map(*): There is no support to fast access files via mmap() within win32, download a real OS...");
[1442]184#endif
[1081]185 return -1;
186#endif
[649]187}
188
189
[215]190ssize_t roar_file_play (struct roar_connection * con, char * file, int exec) {
[764]191 return roar_file_play_full(con, file, exec, 0, NULL);
[762]192}
193
194ssize_t roar_file_play_full  (struct roar_connection * con, char * file, int exec, int passfh, struct roar_stream * s) {
[1474]195#ifdef _CAN_OPERATE
[215]196 int codec = -1;
197 int in, out = -1;
198 ssize_t r = 0;
[776]199 int seek;
[215]200 int len;
201 char buf[BUFSIZE];
202 int rate = ROAR_RATE_DEFAULT, channels = ROAR_CHANNELS_DEFAULT, bits = ROAR_BITS_DEFAULT;
[764]203 struct roar_stream localstream[1];
204
[1660]205 // FIXME: check error cases
206
[764]207 if ( !s )
208  s = localstream;
[215]209
210 if ( !con )
211  return -1;
212
213 if ( !file )
214  return -1;
215
[762]216 if ( exec && passfh )
217  return -1;
218
[1765]219#ifdef ROAR_TARGET_WIN32
220 if ( (in = open(file, O_RDONLY|O_BINARY, 0644)) == -1 ) {
221#else
[215]222 if ( (in = open(file, O_RDONLY, 0644)) == -1 ) {
[1765]223#endif
[215]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
[1000]234 ROAR_DBG("roar_file_play_full(*): codec=%i(%s)", codec, roar_codec2str(codec));
235
[776]236 seek = lseek(in, 0, SEEK_SET) == (off_t) -1 ? 0 : 1;
237
[215]238 if ( codec == -1 ) {
239  close(in);
240  return -1;
241 }
242
[776]243 if ( passfh && !seek ) {
244  ROAR_WARN("roar_file_play_full(*): passfh on non seekable file: this may produce incorrect playback");
245 }
246
[215]247 if ( exec ) {
[762]248  if ( roar_stream_new(s, rate, channels, bits, codec) == -1 ) {
[215]249   close(in);
250   return -1;
251  }
252
[762]253  if ( roar_stream_connect(con, s, ROAR_DIR_PLAY) == -1 ) {
[215]254   close(in);
255   return -1;
256  }
257
[762]258  if ( roar_stream_exec(con, s) == -1 ) {
[215]259   close(in);
260   return -1;
261  }
262
[1660]263  if ( (out = roar_get_connection_fh(con)) == -1 ) {
264   close(in);
265   return -1;
266  }
[215]267
[1660]268  ROAR_SHUTDOWN(out, SHUT_RD);
[215]269 } else {
[776]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   }
[215]285  }
286 }
287
[776]288 if ( !seek )
[1765]289  ROAR_NETWORK_WRITE(out, buf, len);
[215]290
[762]291 if ( !passfh ) {
[1765]292#ifndef ROAR_TARGET_WIN32
[762]293  r = roar_file_send_raw(out, in);
[215]294
[762]295  close(out);
[1765]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
[762]303
304  if ( exec ) {
[1315]305   // TODO: FIXME: this ma cause a memory leak in future
306   // OLD: con->fh = -1;
307   roar_connect_fh(con, -2);
[762]308  }
[215]309
[762]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;
[215]318 }
319
320 return r;
[1474]321#else
322 return -1;
323#endif
[215]324}
325
[805]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
[202]339//ll
Note: See TracBrowser for help on using the repository browser.