source: roaraudio/libroar/cdrom.c @ 822:670d196e35e8

Last change on this file since 822:670d196e35e8 was 822:670d196e35e8, checked in by phi, 16 years ago

got it working, year!

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