source: roaraudio/libroar/cdrom.c @ 1438:bcc037fa127b

Last change on this file since 1438:bcc037fa127b was 1438:bcc037fa127b, checked in by phi, 15 years ago

included headers no longer needed, they are globaly included :)

File size: 6.0 KB
Line 
1//cdrom.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 ROAR_CDROM_ERROR_NORETURN(format, args...) ROAR_ERR(format, ## args); _exit(3)
38
39#if BYTE_ORDER == BIG_ENDIAN
40#define ROAR_CDROM_CDPARANOIA_OUTPUTFORMAT "--output-raw-big-endian"
41#elif BYTE_ORDER == LITTLE_ENDIAN
42#define ROAR_CDROM_CDPARANOIA_OUTPUTFORMAT "--output-raw-little-endian"
43#endif
44
45#ifdef ROAR_TARGET_WIN32
46#undef ROAR_HAVE_BIN_CDPARANOIA
47#endif
48
49pid_t roar_cdrom_run_cdparanoia (int cdrom, int data, int track, char * pos) {
50#if defined(ROAR_HAVE_BIN_CDPARANOIA) && defined(ROAR_CDROM_CDPARANOIA_OUTPUTFORMAT) && defined(ROAR_HAVE_CDROM)
51 char my_pos[32] = {0};
52 pid_t pid;
53 int fh[2];
54
55 ROAR_DBG("roar_cdrom_run_cdparanoia(cdrom=%i, data=%i, track=%i, pos='%s') = ?", cdrom, data, track, pos);
56
57 if ( cdrom == -1 || data == -1 || (track == -1 && pos == NULL) || (track != -1 && pos != NULL) )
58  return -1;
59
60 if ( track != -1 ) {
61  pos = my_pos;
62  snprintf(pos, 32, "%i", track);
63 }
64
65 if ( (pid = fork()) == -1 ) {
66  return -1;
67 }
68
69 if ( pid )
70  return pid;
71
72 fh[0] = dup(cdrom);
73 fh[1] = dup(data);
74
75 if ( fh[0] == -1 || fh[1] == -1 ) {
76  ROAR_CDROM_ERROR_NORETURN("Can not dup(): %s", strerror(errno));
77 }
78
79 close(ROAR_STDIN);
80 close(ROAR_STDOUT);
81
82 // TODO: should I close some other handles?
83
84 if ( dup2(fh[0], ROAR_STDIN) == -1 || dup2(fh[1], ROAR_STDOUT) == -1 ) {
85  ROAR_CDROM_ERROR_NORETURN("Can not dup2(): %s", strerror(errno));
86 }
87
88 // new close our backups:
89 close(fh[0]);
90 close(fh[1]);
91
92 execl(ROAR_HAVE_BIN_CDPARANOIA, "cdparanoia", "--force-cdrom-device", "/dev/stdin", "-q",
93                ROAR_CDROM_CDPARANOIA_OUTPUTFORMAT, pos, "-", NULL);
94
95 ROAR_CDROM_ERROR_NORETURN("We are still alive after exec()!, very bad!, error was: %s", strerror(errno));
96 return -1;
97#else
98#ifndef ROAR_HAVE_BIN_CDPARANOIA
99 ROAR_ERR("roar_cdrom_run_cdparanoia(*): ROAR_HAVE_BIN_CDPARANOIA not defined!");
100#endif
101#ifndef ROAR_CDROM_CDPARANOIA_OUTPUTFORMAT
102 ROAR_ERR("roar_cdrom_run_cdparanoia(*): ROAR_CDROM_CDPARANOIA_OUTPUTFORMAT not defined!");
103#endif
104 ROAR_ERR("roar_cdrom_run_cdparanoia(cdrom=%i, data=%i, track=%i, pos='%s') = -1 // no cdparanoia support compiled in",
105             cdrom, data, track, pos);
106 return -1;
107#endif
108}
109
110int roar_cdrom_open (struct roar_connection * con, struct roar_cdrom * cdrom, char * device) {
111#ifdef ROAR_HAVE_CDROM
112 int flags;
113
114 if ( cdrom == NULL )
115  return -1;
116
117 memset((void*)cdrom, 0, sizeof(struct roar_cdrom));
118
119 if ( device == NULL )
120  device = roar_cdromdevice();
121
122 if ( device == NULL )
123  return -1;
124
125 strncpy(cdrom->device, device, ROAR_CDROM_MAX_DEVLEN);
126
127 cdrom->con        = con; // we do not care here if it is set or not as we can operate in local only mode
128
129 cdrom->stream     = -1;
130 cdrom->play_local =  1;
131 cdrom->player     = -1;
132
133 if ( (cdrom->fh = open(cdrom->device, O_RDONLY, 0644)) == -1 )
134  return -1;
135
136#ifndef ROAR_TARGET_WIN32
137 if ( (flags = fcntl(cdrom->fh, F_GETFL, 0)) == -1 ) {
138  close(cdrom->fh);
139  cdrom->fh  = -1;
140  return -1;
141 }
142
143 flags |= FD_CLOEXEC;
144
145 if ( fcntl(cdrom->fh, F_SETFL, flags) == -1 ) {
146  close(cdrom->fh);
147  cdrom->fh = -1;
148  return -1;
149 }
150#endif
151
152 return 0;
153#else
154 return -1;
155#endif
156}
157
158int roar_cdrom_close(struct roar_cdrom * cdrom) {
159#ifdef ROAR_HAVE_CDROM
160 if ( cdrom == NULL )
161  return -1;
162
163 roar_cdrom_stop(cdrom); // stop on close
164
165 if ( cdrom->fh != -1 )
166  close(cdrom->fh);
167
168 memset((void*)cdrom, 0, sizeof(struct roar_cdrom));
169
170 return 0;
171#else
172 return -1;
173#endif
174}
175
176int roar_cdrom_stop (struct roar_cdrom * cdrom) {
177#ifdef ROAR_HAVE_CDROM
178 int ret;
179
180 if ( cdrom == NULL )
181  return -1;
182
183 if ( cdrom->con == NULL )
184  return -1;
185
186 if ( cdrom->stream == -1 )
187  return -1;
188
189 if ( (ret = roar_kick(cdrom->con, ROAR_OT_STREAM, cdrom->stream)) == -1 ) {
190  return -1;
191 }
192
193#ifndef ROAR_TARGET_WIN32
194 if ( cdrom->player != -1 )
195  kill(cdrom->player, SIGINT);
196#else
197 if ( cdrom->player != -1 ) {
198  ROAR_ERR("roar_cdrom_stop(*): Can not kill player with pid %i, not supported on win32", cdrom->player);
199 }
200#endif
201
202 cdrom->player = -1;
203 cdrom->stream = -1;
204
205 return ret;
206#else
207 return -1;
208#endif
209}
210
211int roar_cdrom_play (struct roar_cdrom * cdrom, int track) {
212#ifdef ROAR_HAVE_CDROM
213 int stream_fh;
214 struct roar_stream stream[1];
215
216 if ( cdrom == NULL )
217  return -1;
218
219 if ( cdrom->con == NULL )
220  return -1;
221
222 if ( cdrom->stream != -1 ) {
223  if ( roar_cdrom_stop(cdrom) == -1 )
224   return -1;
225 }
226
227 if ( cdrom->play_local ) {
228
229  if ( (stream_fh = roar_simple_new_stream_obj(cdrom->con, stream, ROAR_CDROM_STREAMINFO, ROAR_DIR_PLAY)) == -1 ) {
230   return -1;
231  }
232
233  if ( (cdrom->player = roar_cdrom_run_cdparanoia(cdrom->fh, stream_fh, track, NULL)) != -1 ) {
234   cdrom->stream = stream->id;
235   return 0;
236  }
237
238  close(stream_fh);
239
240  return -1;
241 } else {
242  // no support for remote playback yet
243  return -1;
244 }
245#else
246 return -1;
247#endif
248}
249
250//ll
Note: See TracBrowser for help on using the repository browser.