SDL_syscdrom.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:14k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_syscdrom.c,v 1.4 2002/04/22 21:38:02 wmay Exp $";
  21. #endif
  22. /* Functions for system-level CD-ROM audio control */
  23. #include <sys/types.h>
  24. #include <stdlib.h>
  25. #include <sys/stat.h>
  26. #include <sys/ioctl.h>
  27. #include <fcntl.h>
  28. #include <stdio.h>
  29. #include <string.h>
  30. #include <errno.h>
  31. #include <unistd.h>
  32. #ifdef __linux__
  33. #include <linux/cdrom.h>
  34. #endif
  35. #ifdef __SVR4
  36. #include <sys/cdio.h>
  37. #endif
  38. /* Define this to use the alternative getmntent() code */
  39. #ifndef __SVR4
  40. #define USE_MNTENT
  41. #endif
  42. #ifdef USE_MNTENT
  43. #if defined(__USLC__)
  44. #include <sys/mntent.h>
  45. #else
  46. #include <mntent.h>
  47. #endif
  48. #ifndef _PATH_MNTTAB
  49. #ifdef MNTTAB
  50. #define _PATH_MNTTAB MNTTAB
  51. #else
  52. #define _PATH_MNTTAB "/etc/fstab"
  53. #endif
  54. #endif /* !_PATH_MNTTAB */
  55. #ifndef _PATH_MOUNTED
  56. #define _PATH_MOUNTED "/etc/mtab"
  57. #endif /* !_PATH_MOUNTED */
  58. #ifndef MNTTYPE_CDROM
  59. #define MNTTYPE_CDROM "iso9660"
  60. #endif
  61. #ifndef MNTTYPE_SUPER
  62. #define MNTTYPE_SUPER "supermount"
  63. #endif
  64. #endif /* USE_MNTENT */
  65. #include "SDL_error.h"
  66. #include "SDL_cdrom.h"
  67. #include "SDL_syscdrom.h"
  68. /* The maximum number of CD-ROM drives we'll detect */
  69. #define MAX_DRIVES 16
  70. /* A list of available CD-ROM drives */
  71. static char *SDL_cdlist[MAX_DRIVES];
  72. static dev_t SDL_cdmode[MAX_DRIVES];
  73. /* The system-dependent CD control functions */
  74. static const char *SDL_SYS_CDName(int drive);
  75. static int SDL_SYS_CDOpen(int drive);
  76. static int SDL_SYS_CDGetTOC(SDL_CD *cdrom);
  77. static CDstatus SDL_SYS_CDStatus(SDL_CD *cdrom, int *position);
  78. static int SDL_SYS_CDPlay(SDL_CD *cdrom, int start, int length);
  79. static int SDL_SYS_CDPause(SDL_CD *cdrom);
  80. static int SDL_SYS_CDResume(SDL_CD *cdrom);
  81. static int SDL_SYS_CDStop(SDL_CD *cdrom);
  82. static int SDL_SYS_CDEject(SDL_CD *cdrom);
  83. static void SDL_SYS_CDClose(SDL_CD *cdrom);
  84. /* Some ioctl() errno values which occur when the tray is empty */
  85. #define ERRNO_TRAYEMPTY(errno)
  86. ((errno == EIO) || (errno == ENOENT) || (errno == EINVAL))
  87. /* Check a drive to see if it is a CD-ROM */
  88. static int CheckDrive(char *drive, char *mnttype, struct stat *stbuf)
  89. {
  90. int is_cd, cdfd;
  91. struct cdrom_subchnl info;
  92. /* If it doesn't exist, return -1 */
  93. if ( stat(drive, stbuf) < 0 ) {
  94. return(-1);
  95. }
  96. /* If it does exist, verify that it's an available CD-ROM */
  97. is_cd = 0;
  98. if ( S_ISCHR(stbuf->st_mode) || S_ISBLK(stbuf->st_mode) ) {
  99. cdfd = open(drive, (O_RDONLY|O_EXCL|O_NONBLOCK), 0);
  100. if ( cdfd >= 0 ) {
  101. info.cdsc_format = CDROM_MSF;
  102. /* Under Linux, EIO occurs when a disk is not present.
  103.  */
  104. if ( (ioctl(cdfd, CDROMSUBCHNL, &info) == 0) ||
  105. ERRNO_TRAYEMPTY(errno) ) {
  106. is_cd = 1;
  107. }
  108. close(cdfd);
  109. }
  110. #ifdef USE_MNTENT
  111. /* Even if we can't read it, it might be mounted */
  112. else if ( mnttype && (strcmp(mnttype, MNTTYPE_CDROM) == 0) ) {
  113. is_cd = 1;
  114. }
  115. #endif
  116. }
  117. return(is_cd);
  118. }
  119. /* Add a CD-ROM drive to our list of valid drives */
  120. static void AddDrive(char *drive, struct stat *stbuf)
  121. {
  122. int i;
  123. if ( SDL_numcds < MAX_DRIVES ) {
  124. /* Check to make sure it's not already in our list.
  125.      This can happen when we see a drive via symbolic link.
  126.  */
  127. for ( i=0; i<SDL_numcds; ++i ) {
  128. if ( stbuf->st_rdev == SDL_cdmode[i] ) {
  129. #ifdef DEBUG_CDROM
  130.   fprintf(stderr, "Duplicate drive detected: %s == %sn", drive, SDL_cdlist[i]);
  131. #endif
  132. return;
  133. }
  134. }
  135. /* Add this drive to our list */
  136. i = SDL_numcds;
  137. SDL_cdlist[i] = (char *)malloc(strlen(drive)+1);
  138. if ( SDL_cdlist[i] == NULL ) {
  139. SDL_OutOfMemory();
  140. return;
  141. }
  142. strcpy(SDL_cdlist[i], drive);
  143. SDL_cdmode[i] = stbuf->st_rdev;
  144. ++SDL_numcds;
  145. #ifdef DEBUG_CDROM
  146.   fprintf(stderr, "Added CD-ROM drive: %sn", drive);
  147. #endif
  148. }
  149. }
  150. #ifdef USE_MNTENT
  151. static void CheckMounts(const char *mtab)
  152. {
  153. FILE *mntfp;
  154. struct mntent *mntent;
  155. struct stat stbuf;
  156. mntfp = setmntent(mtab, "r");
  157. if ( mntfp != NULL ) {
  158. char *tmp;
  159. char *mnt_type;
  160. char *mnt_dev;
  161. while ( (mntent=getmntent(mntfp)) != NULL ) {
  162. mnt_type = malloc(strlen(mntent->mnt_type) + 1);
  163. if (mnt_type == NULL)
  164. continue;  /* maybe you'll get lucky next time. */
  165. mnt_dev = malloc(strlen(mntent->mnt_fsname) + 1);
  166. if (mnt_dev == NULL) {
  167. free(mnt_type);
  168. continue;
  169. }
  170. strcpy(mnt_type, mntent->mnt_type);
  171. strcpy(mnt_dev, mntent->mnt_fsname);
  172. /* Handle "supermount" filesystem mounts */
  173. if ( strcmp(mnt_type, MNTTYPE_SUPER) == 0 ) {
  174. tmp = strstr(mntent->mnt_opts, "fs=");
  175. if ( tmp ) {
  176. free(mnt_type);
  177. mnt_type = strdup(tmp + strlen("fs="));
  178. if ( mnt_type ) {
  179. tmp = strchr(mnt_type, ',');
  180. if ( tmp ) {
  181. *tmp = '';
  182. }
  183. }
  184. }
  185. tmp = strstr(mntent->mnt_opts, "dev=");
  186. if ( tmp ) {
  187. free(mnt_dev);
  188. mnt_dev = strdup(tmp + strlen("dev="));
  189. if ( mnt_dev ) {
  190. tmp = strchr(mnt_dev, ',');
  191. if ( tmp ) {
  192. *tmp = '';
  193. }
  194. }
  195. }
  196. }
  197. if ( strcmp(mnt_type, MNTTYPE_CDROM) == 0 ) {
  198. #ifdef DEBUG_CDROM
  199.   fprintf(stderr, "Checking mount path from %s: %s mounted on %s of %sn",
  200. mtab, mnt_dev, mntent->mnt_dir, mnt_type);
  201. #endif
  202. if (CheckDrive(mnt_dev, mnt_type, &stbuf) > 0) {
  203. AddDrive(mnt_dev, &stbuf);
  204. }
  205. }
  206. free(mnt_dev);
  207. free(mnt_type);
  208. }
  209. endmntent(mntfp);
  210. }
  211. }
  212. #endif /* USE_MNTENT */
  213. int  SDL_SYS_CDInit(void)
  214. {
  215. /* checklist: /dev/cdrom, /dev/hd?, /dev/scd? /dev/sr? */
  216. static char *checklist[] = {
  217. "cdrom", "?a hd?", "?0 scd?", "?0 sr?", NULL
  218. };
  219. char *SDLcdrom;
  220. int i, j, exists;
  221. char drive[32];
  222. struct stat stbuf;
  223. /* Fill in our driver capabilities */
  224. SDL_CDcaps.Name = SDL_SYS_CDName;
  225. SDL_CDcaps.Open = SDL_SYS_CDOpen;
  226. SDL_CDcaps.GetTOC = SDL_SYS_CDGetTOC;
  227. SDL_CDcaps.Status = SDL_SYS_CDStatus;
  228. SDL_CDcaps.Play = SDL_SYS_CDPlay;
  229. SDL_CDcaps.Pause = SDL_SYS_CDPause;
  230. SDL_CDcaps.Resume = SDL_SYS_CDResume;
  231. SDL_CDcaps.Stop = SDL_SYS_CDStop;
  232. SDL_CDcaps.Eject = SDL_SYS_CDEject;
  233. SDL_CDcaps.Close = SDL_SYS_CDClose;
  234. /* Look in the environment for our CD-ROM drive list */
  235. SDLcdrom = getenv("SDL_CDROM"); /* ':' separated list of devices */
  236. if ( SDLcdrom != NULL ) {
  237. char *cdpath, *delim;
  238. cdpath = malloc(strlen(SDLcdrom)+1);
  239. if ( cdpath != NULL ) {
  240. strcpy(cdpath, SDLcdrom);
  241. SDLcdrom = cdpath;
  242. do {
  243. delim = strchr(SDLcdrom, ':');
  244. if ( delim ) {
  245. *delim++ = '';
  246. }
  247. #ifdef DEBUG_CDROM
  248.   fprintf(stderr, "Checking CD-ROM drive from SDL_CDROM: %sn", SDLcdrom);
  249. #endif
  250. if ( CheckDrive(SDLcdrom, NULL, &stbuf) > 0 ) {
  251. AddDrive(SDLcdrom, &stbuf);
  252. }
  253. if ( delim ) {
  254. SDLcdrom = delim;
  255. } else {
  256. SDLcdrom = NULL;
  257. }
  258. } while ( SDLcdrom );
  259. free(cdpath);
  260. }
  261. /* If we found our drives, there's nothing left to do */
  262. if ( SDL_numcds > 0 ) {
  263. return(0);
  264. }
  265. }
  266. #ifdef USE_MNTENT
  267. /* Check /dev/cdrom first :-) */
  268. if (CheckDrive("/dev/cdrom", NULL, &stbuf) > 0) {
  269. AddDrive("/dev/cdrom", &stbuf);
  270. }
  271. /* Now check the currently mounted CD drives */
  272. CheckMounts(_PATH_MOUNTED);
  273. /* Finally check possible mountable drives in /etc/fstab */
  274. CheckMounts(_PATH_MNTTAB);
  275. /* If we found our drives, there's nothing left to do */
  276. if ( SDL_numcds > 0 ) {
  277. return(0);
  278. }
  279. #endif /* USE_MNTENT */
  280. /* Scan the system for CD-ROM drives.
  281.    Not always 100% reliable, so use the USE_MNTENT code above first.
  282.  */
  283. for ( i=0; checklist[i]; ++i ) {
  284. if ( checklist[i][0] == '?' ) {
  285. char *insert;
  286. exists = 1;
  287. for ( j=checklist[i][1]; exists; ++j ) {
  288. sprintf(drive, "/dev/%s", &checklist[i][3]);
  289. insert = strchr(drive, '?');
  290. if ( insert != NULL ) {
  291. *insert = j;
  292. }
  293. #ifdef DEBUG_CDROM
  294.   fprintf(stderr, "Checking possible CD-ROM drive: %sn", drive);
  295. #endif
  296. switch (CheckDrive(drive, NULL, &stbuf)) {
  297. /* Drive exists and is a CD-ROM */
  298. case 1:
  299. AddDrive(drive, &stbuf);
  300. break;
  301. /* Drive exists, but isn't a CD-ROM */
  302. case 0:
  303. break;
  304. /* Drive doesn't exist */
  305. case -1:
  306. exists = 0;
  307. break;
  308. }
  309. }
  310. } else {
  311. sprintf(drive, "/dev/%s", checklist[i]);
  312. #ifdef DEBUG_CDROM
  313.   fprintf(stderr, "Checking possible CD-ROM drive: %sn", drive);
  314. #endif
  315. if ( CheckDrive(drive, NULL, &stbuf) > 0 ) {
  316. AddDrive(drive, &stbuf);
  317. }
  318. }
  319. }
  320. return(0);
  321. }
  322. /* General ioctl() CD-ROM command function */
  323. static int SDL_SYS_CDioctl(int id, int command, void *arg)
  324. {
  325. int retval;
  326. retval = ioctl(id, command, arg);
  327. if ( retval < 0 ) {
  328. SDL_SetError("ioctl() error: %s", strerror(errno));
  329. }
  330. return(retval);
  331. }
  332. static const char *SDL_SYS_CDName(int drive)
  333. {
  334. return(SDL_cdlist[drive]);
  335. }
  336. static int SDL_SYS_CDOpen(int drive)
  337. {
  338. return(open(SDL_cdlist[drive], (O_RDONLY|O_EXCL|O_NONBLOCK), 0));
  339. }
  340. static int SDL_SYS_CDGetTOC(SDL_CD *cdrom)
  341. {
  342. struct cdrom_tochdr toc;
  343. int i, okay;
  344. struct cdrom_tocentry entry;
  345. okay = 0;
  346. if ( SDL_SYS_CDioctl(cdrom->id, CDROMREADTOCHDR, &toc) == 0 ) {
  347. cdrom->numtracks = toc.cdth_trk1-toc.cdth_trk0+1;
  348. if ( cdrom->numtracks > SDL_MAX_TRACKS ) {
  349. cdrom->numtracks = SDL_MAX_TRACKS;
  350. }
  351. /* Read all the track TOC entries */
  352. for ( i=0; i<=cdrom->numtracks; ++i ) {
  353. if ( i == cdrom->numtracks ) {
  354. cdrom->track[i].id = CDROM_LEADOUT;
  355. } else {
  356. cdrom->track[i].id = toc.cdth_trk0+i;
  357. }
  358. entry.cdte_track = cdrom->track[i].id;
  359. entry.cdte_format = CDROM_MSF;
  360. if ( SDL_SYS_CDioctl(cdrom->id, CDROMREADTOCENTRY,
  361. &entry) < 0 ) {
  362. break;
  363. } else {
  364. if ( entry.cdte_ctrl & CDROM_DATA_TRACK ) {
  365. cdrom->track[i].type = SDL_DATA_TRACK;
  366. } else {
  367. cdrom->track[i].type = SDL_AUDIO_TRACK;
  368. }
  369. cdrom->track[i].offset = MSF_TO_FRAMES(
  370. entry.cdte_addr.msf.minute,
  371. entry.cdte_addr.msf.second,
  372. entry.cdte_addr.msf.frame);
  373. cdrom->track[i].length = 0;
  374. if ( i > 0 ) {
  375. cdrom->track[i-1].length =
  376. cdrom->track[i].offset-
  377. cdrom->track[i-1].offset;
  378. }
  379. }
  380. }
  381. if ( i == (cdrom->numtracks+1) ) {
  382. okay = 1;
  383. }
  384. }
  385. return(okay ? 0 : -1);
  386. }
  387. /* Get CD-ROM status */
  388. static CDstatus SDL_SYS_CDStatus(SDL_CD *cdrom, int *position)
  389. {
  390. CDstatus status;
  391. struct cdrom_tochdr toc;
  392. struct cdrom_subchnl info;
  393. info.cdsc_format = CDROM_MSF;
  394. if ( ioctl(cdrom->id, CDROMSUBCHNL, &info) < 0 ) {
  395. if ( ERRNO_TRAYEMPTY(errno) ) {
  396. status = CD_TRAYEMPTY;
  397. } else {
  398. status = CD_ERROR;
  399. }
  400. } else {
  401. switch (info.cdsc_audiostatus) {
  402. case CDROM_AUDIO_INVALID:
  403. case CDROM_AUDIO_NO_STATUS:
  404. /* Try to determine if there's a CD available */
  405. if (ioctl(cdrom->id, CDROMREADTOCHDR, &toc)==0)
  406. status = CD_STOPPED;
  407. else
  408. status = CD_TRAYEMPTY;
  409. break;
  410. case CDROM_AUDIO_COMPLETED:
  411. status = CD_STOPPED;
  412. break;
  413. case CDROM_AUDIO_PLAY:
  414. status = CD_PLAYING;
  415. break;
  416. case CDROM_AUDIO_PAUSED:
  417. /* Workaround buggy CD-ROM drive */
  418. if ( info.cdsc_trk == CDROM_LEADOUT ) {
  419. status = CD_STOPPED;
  420. } else {
  421. status = CD_PAUSED;
  422. }
  423. break;
  424. default:
  425. status = CD_ERROR;
  426. break;
  427. }
  428. }
  429. if ( position ) {
  430. if ( status == CD_PLAYING || (status == CD_PAUSED) ) {
  431. *position = MSF_TO_FRAMES(
  432. info.cdsc_absaddr.msf.minute,
  433. info.cdsc_absaddr.msf.second,
  434. info.cdsc_absaddr.msf.frame);
  435. } else {
  436. *position = 0;
  437. }
  438. }
  439. return(status);
  440. }
  441. /* Start play */
  442. static int SDL_SYS_CDPlay(SDL_CD *cdrom, int start, int length)
  443. {
  444. struct cdrom_msf playtime;
  445. FRAMES_TO_MSF(start,
  446.    &playtime.cdmsf_min0, &playtime.cdmsf_sec0, &playtime.cdmsf_frame0);
  447. FRAMES_TO_MSF(start+length,
  448.    &playtime.cdmsf_min1, &playtime.cdmsf_sec1, &playtime.cdmsf_frame1);
  449. #ifdef DEBUG_CDROM
  450.   fprintf(stderr, "Trying to play from %d:%d:%d to %d:%d:%dn",
  451. playtime.cdmsf_min0, playtime.cdmsf_sec0, playtime.cdmsf_frame0,
  452. playtime.cdmsf_min1, playtime.cdmsf_sec1, playtime.cdmsf_frame1);
  453. #endif
  454. return(SDL_SYS_CDioctl(cdrom->id, CDROMPLAYMSF, &playtime));
  455. }
  456. /* Pause play */
  457. static int SDL_SYS_CDPause(SDL_CD *cdrom)
  458. {
  459. return(SDL_SYS_CDioctl(cdrom->id, CDROMPAUSE, 0));
  460. }
  461. /* Resume play */
  462. static int SDL_SYS_CDResume(SDL_CD *cdrom)
  463. {
  464. return(SDL_SYS_CDioctl(cdrom->id, CDROMRESUME, 0));
  465. }
  466. /* Stop play */
  467. static int SDL_SYS_CDStop(SDL_CD *cdrom)
  468. {
  469. return(SDL_SYS_CDioctl(cdrom->id, CDROMSTOP, 0));
  470. }
  471. /* Eject the CD-ROM */
  472. static int SDL_SYS_CDEject(SDL_CD *cdrom)
  473. {
  474. return(SDL_SYS_CDioctl(cdrom->id, CDROMEJECT, 0));
  475. }
  476. /* Close the CD-ROM handle */
  477. static void SDL_SYS_CDClose(SDL_CD *cdrom)
  478. {
  479. close(cdrom->id);
  480. }
  481. void SDL_SYS_CDQuit(void)
  482. {
  483. int i;
  484. if ( SDL_numcds > 0 ) {
  485. for ( i=0; i<SDL_numcds; ++i ) {
  486. free(SDL_cdlist[i]);
  487. }
  488. SDL_numcds = 0;
  489. }
  490. }