source: roaraudio/libroar/cdrom.c @ 824:1d4fa470c517

Last change on this file since 824:1d4fa470c517 was 824:1d4fa470c517, checked in by phi, 16 years ago

remeber pid of playing process, kill on stop, stop on close

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