Skip to content

Latest commit

 

History

History
628 lines (482 loc) · 18.6 KB

CDPlayer.c

File metadata and controls

628 lines (482 loc) · 18.6 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
slouken@libsdl.org
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
23
24
25
#include "CDPlayer.h"
#include "AudioFilePlayer.h"
Sep 22, 2005
Sep 22, 2005
26
#include "SDLOSXCAGuard.h"
Mar 9, 2006
Mar 9, 2006
28
29
/* we're exporting these functions into C land for SDL_syscdrom.c */
/*extern "C" {*/
Mar 9, 2006
Mar 9, 2006
31
32
33
/*///////////////////////////////////////////////////////////////////////////
Constants
//////////////////////////////////////////////////////////////////////////*/
Mar 9, 2006
Mar 9, 2006
35
#define kAudioCDFilesystemID (UInt16)(('J' << 8) | 'H') /* 'JH'; this avoids compiler warning */
Mar 9, 2006
Mar 9, 2006
37
/* XML PList keys */
38
39
40
41
42
43
44
45
46
47
48
49
#define kRawTOCDataString "Format 0x02 TOC Data"
#define kSessionsString "Sessions"
#define kSessionTypeString "Session Type"
#define kTrackArrayString "Track Array"
#define kFirstTrackInSessionString "First Track"
#define kLastTrackInSessionString "Last Track"
#define kLeadoutBlockString "Leadout Block"
#define kDataKeyString "Data"
#define kPointKeyString "Point"
#define kSessionNumberKeyString "Session Number"
#define kStartBlockKeyString "Start Block"
Mar 9, 2006
Mar 9, 2006
50
51
52
/*///////////////////////////////////////////////////////////////////////////
Globals
//////////////////////////////////////////////////////////////////////////*/
53
54
55
#pragma mark -- Globals --
Sep 22, 2005
Sep 22, 2005
56
static int playBackWasInit = 0;
57
58
59
static AudioUnit theUnit;
static AudioFilePlayer* thePlayer = NULL;
static CDPlayerCompletionProc completionProc = NULL;
Jan 5, 2004
Jan 5, 2004
60
61
static SDL_mutex *apiMutex = NULL;
static SDL_sem *callbackSem;
62
63
static SDL_CD* theCDROM;
Mar 9, 2006
Mar 9, 2006
64
65
66
/*///////////////////////////////////////////////////////////////////////////
Prototypes
//////////////////////////////////////////////////////////////////////////*/
67
68
69
#pragma mark -- Prototypes --
Jan 5, 2004
Jan 5, 2004
70
static OSStatus CheckInit ();
Jan 5, 2004
Jan 5, 2004
72
static void FilePlayNotificationHandler (void* inRefCon, OSStatus inStatus);
Jan 5, 2004
Jan 5, 2004
74
static int RunCallBackThread (void* inRefCon);
75
76
77
78
79
80
#pragma mark -- Public Functions --
void Lock ()
{
Jan 5, 2004
Jan 5, 2004
81
82
if (!apiMutex) {
apiMutex = SDL_CreateMutex();
Jan 5, 2004
Jan 5, 2004
84
SDL_mutexP(apiMutex);
85
86
87
88
}
void Unlock ()
{
Jan 5, 2004
Jan 5, 2004
89
SDL_mutexV(apiMutex);
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
}
int DetectAudioCDVolumes(FSVolumeRefNum *volumes, int numVolumes)
{
int volumeIndex;
int cdVolumeCount = 0;
OSStatus result = noErr;
for (volumeIndex = 1; result == noErr || result != nsvErr; volumeIndex++)
{
FSVolumeRefNum actualVolume;
FSVolumeInfo volumeInfo;
memset (&volumeInfo, 0, sizeof(volumeInfo));
result = FSGetVolumeInfo (kFSInvalidVolumeRefNum,
volumeIndex,
&actualVolume,
kFSVolInfoFSInfo,
&volumeInfo,
Jan 4, 2004
Jan 4, 2004
110
111
NULL,
NULL);
112
113
114
if (result == noErr)
{
Mar 9, 2006
Mar 9, 2006
115
if (volumeInfo.filesystemID == kAudioCDFilesystemID) /* It's an audio CD */
Jan 4, 2004
Jan 4, 2004
116
{
117
118
119
120
121
122
123
124
if (volumes != NULL && cdVolumeCount < numVolumes)
volumes[cdVolumeCount] = actualVolume;
cdVolumeCount++;
}
}
else
{
Mar 9, 2006
Mar 9, 2006
125
126
/* I'm commenting this out because it seems to be harmless */
/*SDL_SetError ("DetectAudioCDVolumes: FSGetVolumeInfo returned %d", result);*/
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
}
}
return cdVolumeCount;
}
int ReadTOCData (FSVolumeRefNum theVolume, SDL_CD *theCD)
{
HFSUniStr255 dataForkName;
OSStatus theErr;
SInt16 forkRefNum;
SInt64 forkSize;
Ptr forkData = 0;
ByteCount actualRead;
CFDataRef dataRef = 0;
CFPropertyListRef propertyListRef = 0;
FSRefParam fsRefPB;
FSRef tocPlistFSRef;
const char* error = "Unspecified Error";
Mar 9, 2006
Mar 9, 2006
149
/* get stuff from .TOC.plist */
150
151
152
153
154
155
156
157
158
159
160
161
fsRefPB.ioCompletion = NULL;
fsRefPB.ioNamePtr = "\p.TOC.plist";
fsRefPB.ioVRefNum = theVolume;
fsRefPB.ioDirID = 0;
fsRefPB.newRef = &tocPlistFSRef;
theErr = PBMakeFSRefSync (&fsRefPB);
if(theErr != noErr) {
error = "PBMakeFSRefSync";
goto bail;
}
Mar 9, 2006
Mar 9, 2006
162
/* Load and parse the TOC XML data */
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
theErr = FSGetDataForkName (&dataForkName);
if (theErr != noErr) {
error = "FSGetDataForkName";
goto bail;
}
theErr = FSOpenFork (&tocPlistFSRef, dataForkName.length, dataForkName.unicode, fsRdPerm, &forkRefNum);
if (theErr != noErr) {
error = "FSOpenFork";
goto bail;
}
theErr = FSGetForkSize (forkRefNum, &forkSize);
if (theErr != noErr) {
error = "FSGetForkSize";
goto bail;
}
Mar 9, 2006
Mar 9, 2006
182
/* Allocate some memory for the XML data */
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
forkData = NewPtr (forkSize);
if(forkData == NULL) {
error = "NewPtr";
goto bail;
}
theErr = FSReadFork (forkRefNum, fsFromStart, 0 /* offset location */, forkSize, forkData, &actualRead);
if(theErr != noErr) {
error = "FSReadFork";
goto bail;
}
dataRef = CFDataCreate (kCFAllocatorDefault, (UInt8 *)forkData, forkSize);
if(dataRef == 0) {
error = "CFDataCreate";
goto bail;
}
propertyListRef = CFPropertyListCreateFromXMLData (kCFAllocatorDefault,
dataRef,
kCFPropertyListImmutable,
NULL);
if (propertyListRef == NULL) {
error = "CFPropertyListCreateFromXMLData";
goto bail;
}
Mar 9, 2006
Mar 9, 2006
210
/* Now we got the Property List in memory. Parse it. */
Mar 9, 2006
Mar 9, 2006
212
/* First, make sure the root item is a CFDictionary. If not, release and bail. */
213
214
215
216
217
218
219
220
221
if(CFGetTypeID(propertyListRef)== CFDictionaryGetTypeID())
{
CFDictionaryRef dictRef = (CFDictionaryRef)propertyListRef;
CFDataRef theRawTOCDataRef;
CFArrayRef theSessionArrayRef;
CFIndex numSessions;
CFIndex index;
Mar 9, 2006
Mar 9, 2006
222
/* This is how we get the Raw TOC Data */
223
224
theRawTOCDataRef = (CFDataRef)CFDictionaryGetValue (dictRef, CFSTR(kRawTOCDataString));
Mar 9, 2006
Mar 9, 2006
225
/* Get the session array info. */
226
227
theSessionArrayRef = (CFArrayRef)CFDictionaryGetValue (dictRef, CFSTR(kSessionsString));
Mar 9, 2006
Mar 9, 2006
228
/* Find out how many sessions there are. */
229
230
numSessions = CFArrayGetCount (theSessionArrayRef);
Mar 9, 2006
Mar 9, 2006
231
/* Initialize the total number of tracks to 0 */
232
233
theCD->numtracks = 0;
Mar 9, 2006
Mar 9, 2006
234
/* Iterate over all sessions, collecting the track data */
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
for(index = 0; index < numSessions; index++)
{
CFDictionaryRef theSessionDict;
CFNumberRef leadoutBlock;
CFArrayRef trackArray;
CFIndex numTracks;
CFIndex trackIndex;
UInt32 value = 0;
theSessionDict = (CFDictionaryRef) CFArrayGetValueAtIndex (theSessionArrayRef, index);
leadoutBlock = (CFNumberRef) CFDictionaryGetValue (theSessionDict, CFSTR(kLeadoutBlockString));
trackArray = (CFArrayRef)CFDictionaryGetValue (theSessionDict, CFSTR(kTrackArrayString));
numTracks = CFArrayGetCount (trackArray);
for(trackIndex = 0; trackIndex < numTracks; trackIndex++) {
CFDictionaryRef theTrackDict;
CFNumberRef trackNumber;
CFNumberRef sessionNumber;
CFNumberRef startBlock;
CFBooleanRef isDataTrack;
UInt32 value;
theTrackDict = (CFDictionaryRef) CFArrayGetValueAtIndex (trackArray, trackIndex);
trackNumber = (CFNumberRef) CFDictionaryGetValue (theTrackDict, CFSTR(kPointKeyString));
sessionNumber = (CFNumberRef) CFDictionaryGetValue (theTrackDict, CFSTR(kSessionNumberKeyString));
startBlock = (CFNumberRef) CFDictionaryGetValue (theTrackDict, CFSTR(kStartBlockKeyString));
isDataTrack = (CFBooleanRef) CFDictionaryGetValue (theTrackDict, CFSTR(kDataKeyString));
Mar 9, 2006
Mar 9, 2006
267
/* Fill in the SDL_CD struct */
268
269
270
271
272
273
274
275
276
277
int idx = theCD->numtracks++;
CFNumberGetValue (trackNumber, kCFNumberSInt32Type, &value);
theCD->track[idx].id = value;
CFNumberGetValue (startBlock, kCFNumberSInt32Type, &value);
theCD->track[idx].offset = value;
theCD->track[idx].type = (isDataTrack == kCFBooleanTrue) ? SDL_DATA_TRACK : SDL_AUDIO_TRACK;
Mar 9, 2006
Mar 9, 2006
278
/* Since the track lengths are not stored in .TOC.plist we compute them. */
279
280
281
282
283
if (trackIndex > 0) {
theCD->track[idx-1].length = theCD->track[idx].offset - theCD->track[idx-1].offset;
}
}
Mar 9, 2006
Mar 9, 2006
284
/* Compute the length of the last track */
285
286
287
288
289
CFNumberGetValue (leadoutBlock, kCFNumberSInt32Type, &value);
theCD->track[theCD->numtracks-1].length =
value - theCD->track[theCD->numtracks-1].offset;
Mar 9, 2006
Mar 9, 2006
290
/* Set offset to leadout track */
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
theCD->track[theCD->numtracks].offset = value;
}
}
theErr = 0;
goto cleanup;
bail:
SDL_SetError ("ReadTOCData: %s returned %d", error, theErr);
theErr = -1;
cleanup:
if (propertyListRef != NULL)
CFRelease(propertyListRef);
if (dataRef != NULL)
CFRelease(dataRef);
if (forkData != NULL)
DisposePtr(forkData);
FSCloseFork (forkRefNum);
return theErr;
}
int ListTrackFiles (FSVolumeRefNum theVolume, FSRef *trackFiles, int numTracks)
{
OSStatus result = -1;
FSIterator iterator;
ItemCount actualObjects;
FSRef rootDirectory;
FSRef ref;
HFSUniStr255 nameStr;
result = FSGetVolumeInfo (theVolume,
0,
NULL,
kFSVolInfoFSInfo,
NULL,
NULL,
&rootDirectory);
if (result != noErr) {
SDL_SetError ("ListTrackFiles: FSGetVolumeInfo returned %d", result);
Jan 5, 2004
Jan 5, 2004
334
return result;
335
336
337
338
339
340
341
342
343
344
345
346
347
}
result = FSOpenIterator (&rootDirectory, kFSIterateFlat, &iterator);
if (result == noErr) {
do
{
result = FSGetCatalogInfoBulk (iterator, 1, &actualObjects,
NULL, kFSCatInfoNone, NULL, &ref, NULL, &nameStr);
if (result == noErr) {
CFStringRef name;
name = CFStringCreateWithCharacters (NULL, nameStr.unicode, nameStr.length);
Mar 9, 2006
Mar 9, 2006
348
/* Look for .aiff extension */
Jan 4, 2004
Jan 4, 2004
349
350
if (CFStringHasSuffix (name, CFSTR(".aiff")) ||
CFStringHasSuffix (name, CFSTR(".cdda"))) {
Mar 9, 2006
Mar 9, 2006
352
/* Extract the track id from the filename */
353
int trackID = 0, i = 0;
Jan 4, 2004
Jan 4, 2004
354
355
356
357
while (i < nameStr.length && !isdigit(nameStr.unicode[i])) {
++i;
}
while (i < nameStr.length && isdigit(nameStr.unicode[i])) {
358
trackID = 10 * trackID +(nameStr.unicode[i] - '0');
Jan 4, 2004
Jan 4, 2004
359
++i;
Jan 4, 2004
Jan 4, 2004
361
362
363
364
365
366
#if DEBUG_CDROM
printf("Found AIFF for track %d: '%s'\n", trackID,
CFStringGetCStringPtr (name, CFStringGetSystemEncoding()));
#endif
Mar 9, 2006
Mar 9, 2006
367
/* Track ID's start at 1, but we want to start at 0 */
368
369
370
371
372
373
374
375
376
377
378
379
380
trackID--;
assert(0 <= trackID && trackID <= SDL_MAX_TRACKS);
if (trackID < numTracks)
memcpy (&trackFiles[trackID], &ref, sizeof(FSRef));
}
CFRelease (name);
}
} while(noErr == result);
FSCloseIterator (iterator);
}
Jan 5, 2004
Jan 5, 2004
381
return 0;
382
383
384
385
386
387
388
389
390
}
int LoadFile (const FSRef *ref, int startFrame, int stopFrame)
{
int error = -1;
if (CheckInit () < 0)
goto bail;
Mar 9, 2006
Mar 9, 2006
391
/* release any currently playing file */
392
393
394
395
396
397
398
if (ReleaseFile () < 0)
goto bail;
#if DEBUG_CDROM
printf ("LoadFile: %d %d\n", startFrame, stopFrame);
#endif
Mar 9, 2006
Mar 9, 2006
399
/*try {*/
Mar 9, 2006
Mar 9, 2006
401
/* create a new player, and attach to the audio unit */
Sep 22, 2005
Sep 22, 2005
403
thePlayer = new_AudioFilePlayer(ref);
404
405
if (thePlayer == NULL) {
SDL_SetError ("LoadFile: Could not create player");
Mar 9, 2006
Mar 9, 2006
406
return -3; /*throw (-3);*/
Sep 22, 2005
Sep 22, 2005
409
410
if (!thePlayer->SetDestination(thePlayer, &theUnit))
goto bail;
411
412
if (startFrame >= 0)
Sep 22, 2005
Sep 22, 2005
413
thePlayer->SetStartFrame (thePlayer, startFrame);
414
415
if (stopFrame >= 0 && stopFrame > startFrame)
Sep 22, 2005
Sep 22, 2005
416
thePlayer->SetStopFrame (thePlayer, stopFrame);
Mar 9, 2006
Mar 9, 2006
418
419
/* we set the notifier later */
/*thePlayer->SetNotifier(thePlayer, FilePlayNotificationHandler, NULL);*/
Sep 22, 2005
Sep 22, 2005
421
422
if (!thePlayer->Connect(thePlayer))
goto bail;
423
424
#if DEBUG_CDROM
Sep 22, 2005
Sep 22, 2005
425
thePlayer->Print(thePlayer);
426
427
fflush (stdout);
#endif
Mar 9, 2006
Mar 9, 2006
428
429
430
431
432
/*}
catch (...)
{
goto bail;
}*/
433
434
435
436
437
438
439
440
441
442
443
error = 0;
bail:
return error;
}
int ReleaseFile ()
{
int error = -1;
Mar 9, 2006
Mar 9, 2006
444
445
/* (Don't see any way that the original C++ code could throw here.) --ryan. */
/*try {*/
446
447
if (thePlayer != NULL) {
Sep 22, 2005
Sep 22, 2005
448
thePlayer->Disconnect(thePlayer);
Sep 22, 2005
Sep 22, 2005
450
delete_AudioFilePlayer(thePlayer);
451
452
453
thePlayer = NULL;
}
Mar 9, 2006
Mar 9, 2006
454
455
456
457
458
/*}
catch (...)
{
goto bail;
}*/
459
460
461
error = 0;
Mar 9, 2006
Mar 9, 2006
462
/* bail: */
463
464
465
466
467
468
469
470
471
472
return error;
}
int PlayFile ()
{
OSStatus result = -1;
if (CheckInit () < 0)
goto bail;
Mar 9, 2006
Mar 9, 2006
473
/*try {*/
474
475
476
// start processing of the audio unit
result = AudioOutputUnitStart (theUnit);
Sep 22, 2005
Sep 22, 2005
477
if (result) goto bail; //THROW_RESULT("PlayFile: AudioOutputUnitStart")
Mar 9, 2006
Mar 9, 2006
479
480
481
482
483
/*}
catch (...)
{
goto bail;
}*/
484
485
486
487
488
489
490
491
492
493
494
495
496
497
result = 0;
bail:
return result;
}
int PauseFile ()
{
OSStatus result = -1;
if (CheckInit () < 0)
goto bail;
Mar 9, 2006
Mar 9, 2006
498
/*try {*/
Mar 9, 2006
Mar 9, 2006
500
/* stop processing the audio unit */
501
result = AudioOutputUnitStop (theUnit);
Mar 9, 2006
Mar 9, 2006
502
503
504
505
506
507
if (result) goto bail; /*THROW_RESULT("PauseFile: AudioOutputUnitStop")*/
/*}
catch (...)
{
goto bail;
}*/
508
509
510
511
512
513
514
515
516
517
518
519
result = 0;
bail:
return result;
}
void SetCompletionProc (CDPlayerCompletionProc proc, SDL_CD *cdrom)
{
assert(thePlayer != NULL);
theCDROM = cdrom;
completionProc = proc;
Sep 22, 2005
Sep 22, 2005
520
thePlayer->SetNotifier (thePlayer, FilePlayNotificationHandler, cdrom);
521
522
523
524
525
526
527
528
529
}
int GetCurrentFrame ()
{
int frame;
if (thePlayer == NULL)
frame = 0;
else
Sep 22, 2005
Sep 22, 2005
530
frame = thePlayer->GetCurrentFrame (thePlayer);
531
532
533
534
535
536
537
return frame;
}
#pragma mark -- Private Functions --
Jan 5, 2004
Jan 5, 2004
538
static OSStatus CheckInit ()
539
540
541
542
543
544
{
if (playBackWasInit)
return 0;
OSStatus result = noErr;
Mar 9, 2006
Mar 9, 2006
545
/* Create the callback semaphore */
Jan 5, 2004
Jan 5, 2004
546
547
callbackSem = SDL_CreateSemaphore(0);
Mar 9, 2006
Mar 9, 2006
548
/* Start callback thread */
Jan 5, 2004
Jan 5, 2004
549
SDL_CreateThread(RunCallBackThread, NULL);
Mar 9, 2006
Mar 9, 2006
551
{ /*try {*/
552
553
554
555
556
557
558
559
560
561
562
ComponentDescription desc;
desc.componentType = kAudioUnitComponentType;
desc.componentSubType = kAudioUnitSubType_Output;
desc.componentManufacturer = kAudioUnitID_DefaultOutput;
desc.componentFlags = 0;
desc.componentFlagsMask = 0;
Component comp = FindNextComponent (NULL, &desc);
if (comp == NULL) {
SDL_SetError ("CheckInit: FindNextComponent returned NULL");
Sep 22, 2005
Sep 22, 2005
563
if (result) return -1; //throw(internalComponentErr);
564
565
566
}
result = OpenAComponent (comp, &theUnit);
Sep 22, 2005
Sep 22, 2005
567
if (result) return -1; //THROW_RESULT("CheckInit: OpenAComponent")
568
569
570
// you need to initialize the output unit before you set it as a destination
result = AudioUnitInitialize (theUnit);
Sep 22, 2005
Sep 22, 2005
571
if (result) return -1; //THROW_RESULT("CheckInit: AudioUnitInitialize")
572
573
574
575
playBackWasInit = true;
}
Mar 9, 2006
Mar 9, 2006
576
577
578
579
/*catch (...)
{
return -1;
}*/
580
581
582
583
return 0;
}
Jan 5, 2004
Jan 5, 2004
584
static void FilePlayNotificationHandler(void * inRefCon, OSStatus inStatus)
585
586
587
{
if (inStatus == kAudioFilePlay_FileIsFinished) {
Mar 9, 2006
Mar 9, 2006
588
/* notify non-CA thread to perform the callback */
Jan 5, 2004
Jan 5, 2004
589
SDL_SemPost(callbackSem);
590
591
592
593
594
595
596
597
598
599
600
601
602
} else if (inStatus == kAudioFilePlayErr_FilePlayUnderrun) {
SDL_SetError ("CDPlayer Notification: buffer underrun");
} else if (inStatus == kAudioFilePlay_PlayerIsUninitialized) {
SDL_SetError ("CDPlayer Notification: player is uninitialized");
} else {
SDL_SetError ("CDPlayer Notification: unknown error %ld", inStatus);
}
}
Jan 5, 2004
Jan 5, 2004
603
static int RunCallBackThread (void *param)
Jan 5, 2004
Jan 5, 2004
605
for (;;) {
Jan 5, 2004
Jan 5, 2004
607
SDL_SemWait(callbackSem);
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
if (completionProc && theCDROM) {
#if DEBUG_CDROM
printf ("callback!\n");
#endif
(*completionProc)(theCDROM);
} else {
#if DEBUG_CDROM
printf ("callback?\n");
#endif
}
}
#if DEBUG_CDROM
printf ("thread dying now...\n");
#endif
Jan 5, 2004
Jan 5, 2004
625
return 0;
Mar 9, 2006
Mar 9, 2006
628
/*}; // extern "C" */