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

流媒体/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. #include <sys/cdrom.h>
  33. #include <sys/dcmd_cam.h>
  34. #include "SDL_error.h"
  35. #include "SDL_cdrom.h"
  36. #include "SDL_syscdrom.h"
  37. /* The maximum number of CD-ROM drives we'll detect */
  38. #define MAX_DRIVES 16
  39. /* A list of available CD-ROM drives */
  40. static char *SDL_cdlist[MAX_DRIVES];
  41. static dev_t SDL_cdmode[MAX_DRIVES];
  42. /* The system-dependent CD control functions */
  43. static const char *SDL_SYS_CDName(int drive);
  44. static int SDL_SYS_CDOpen(int drive);
  45. static int SDL_SYS_CDGetTOC(SDL_CD *cdrom);
  46. static CDstatus SDL_SYS_CDStatus(SDL_CD *cdrom, int *position);
  47. static int SDL_SYS_CDPlay(SDL_CD *cdrom, int start, int length);
  48. static int SDL_SYS_CDPause(SDL_CD *cdrom);
  49. static int SDL_SYS_CDResume(SDL_CD *cdrom);
  50. static int SDL_SYS_CDStop(SDL_CD *cdrom);
  51. static int SDL_SYS_CDEject(SDL_CD *cdrom);
  52. static void SDL_SYS_CDClose(SDL_CD *cdrom);
  53. /* Some ioctl() errno values which occur when the tray is empty */
  54. #define ERRNO_TRAYEMPTY(errno)
  55. ((errno == EIO) || (errno == ENOENT) || (errno == EINVAL))
  56. /* Check a drive to see if it is a CD-ROM */
  57. static int CheckDrive(char *drive, char *mnttype, struct stat *stbuf)
  58. {
  59. int is_cd, cdfd;
  60. cdrom_subch_data_t info;
  61. /* If it doesn't exist, return -1 */
  62. if ( stat(drive, stbuf) < 0 ) {
  63. return(-1);
  64. }
  65. /* If it does exist, verify that it's an available CD-ROM */
  66. is_cd = 0;
  67. if ( S_ISCHR(stbuf->st_mode) || S_ISBLK(stbuf->st_mode) ) {
  68. cdfd = open(drive, (O_RDONLY|O_EXCL|O_NONBLOCK), 0);
  69. if ( cdfd >= 0 ) {
  70. info.subch_command.data_format = CDROM_MSF;
  71. /* Under Linux, EIO occurs when a disk is not present.
  72.  */
  73. if ((devctl(cdfd,DCMD_CAM_CDROMSUBCHNL,&info,sizeof(info),0) == 0) ||
  74. ERRNO_TRAYEMPTY(errno) )
  75. {
  76. is_cd = 1;
  77. }
  78. close(cdfd);
  79. }
  80. }
  81. return(is_cd);
  82. }
  83. /* Add a CD-ROM drive to our list of valid drives */
  84. static void AddDrive(char *drive, struct stat *stbuf)
  85. {
  86. int i;
  87. if ( SDL_numcds < MAX_DRIVES ) {
  88. /* Check to make sure it's not already in our list.
  89.      This can happen when we see a drive via symbolic link.
  90.  */
  91. for ( i=0; i<SDL_numcds; ++i ) {
  92. if ( stbuf->st_rdev == SDL_cdmode[i] ) {
  93. #ifdef DEBUG_CDROM
  94.   fprintf(stderr, "Duplicate drive detected: %s == %sn", drive, SDL_cdlist[i]);
  95. #endif
  96. return;
  97. }
  98. }
  99. /* Add this drive to our list */
  100. i = SDL_numcds;
  101. SDL_cdlist[i] = (char *)malloc(strlen(drive)+1);
  102. if ( SDL_cdlist[i] == NULL ) {
  103. SDL_OutOfMemory();
  104. return;
  105. }
  106. strcpy(SDL_cdlist[i], drive);
  107. SDL_cdmode[i] = stbuf->st_rdev;
  108. ++SDL_numcds;
  109. #ifdef DEBUG_CDROM
  110.   fprintf(stderr, "Added CD-ROM drive: %sn", drive);
  111. #endif
  112. }
  113. }
  114. int  SDL_SYS_CDInit(void)
  115. {
  116. /* checklist: /dev/cdrom, /dev/hd?, /dev/scd? /dev/sr? */
  117. static char *checklist[] = {
  118. "cdrom", "?0 cd?", "?1 cd?", "?a hd?", "?0 scd?", "?0 sr?", NULL
  119. };
  120. char *SDLcdrom;
  121. int i, j, exists;
  122. char drive[32];
  123. struct stat stbuf;
  124. /* Fill in our driver capabilities */
  125. SDL_CDcaps.Name = SDL_SYS_CDName;
  126. SDL_CDcaps.Open = SDL_SYS_CDOpen;
  127. SDL_CDcaps.GetTOC = SDL_SYS_CDGetTOC;
  128. SDL_CDcaps.Status = SDL_SYS_CDStatus;
  129. SDL_CDcaps.Play = SDL_SYS_CDPlay;
  130. SDL_CDcaps.Pause = SDL_SYS_CDPause;
  131. SDL_CDcaps.Resume = SDL_SYS_CDResume;
  132. SDL_CDcaps.Stop = SDL_SYS_CDStop;
  133. SDL_CDcaps.Eject = SDL_SYS_CDEject;
  134. SDL_CDcaps.Close = SDL_SYS_CDClose;
  135. /* Look in the environment for our CD-ROM drive list */
  136. SDLcdrom = getenv("SDL_CDROM"); /* ':' separated list of devices */
  137. if ( SDLcdrom != NULL ) {
  138. char *cdpath, *delim;
  139. cdpath = malloc(strlen(SDLcdrom)+1);
  140. if ( cdpath != NULL ) {
  141. strcpy(cdpath, SDLcdrom);
  142. SDLcdrom = cdpath;
  143. do {
  144. delim = strchr(SDLcdrom, ':');
  145. if ( delim ) {
  146. *delim++ = '';
  147. }
  148. #ifdef DEBUG_CDROM
  149.   fprintf(stderr, "Checking CD-ROM drive from SDL_CDROM: %sn", SDLcdrom);
  150. #endif
  151. if ( CheckDrive(SDLcdrom, NULL, &stbuf) > 0 ) {
  152. AddDrive(SDLcdrom, &stbuf);
  153. }
  154. if ( delim ) {
  155. SDLcdrom = delim;
  156. } else {
  157. SDLcdrom = NULL;
  158. }
  159. } while ( SDLcdrom );
  160. free(cdpath);
  161. }
  162. /* If we found our drives, there's nothing left to do */
  163. if ( SDL_numcds > 0 ) {
  164. return(0);
  165. }
  166. }
  167. /* Scan the system for CD-ROM drives */
  168. for ( i=0; checklist[i]; ++i ) {
  169. if ( checklist[i][0] == '?' ) {
  170. char *insert;
  171. exists = 1;
  172. for ( j=checklist[i][1]; exists; ++j ) {
  173. sprintf(drive, "/dev/%s", &checklist[i][3]);
  174. insert = strchr(drive, '?');
  175. if ( insert != NULL ) {
  176. *insert = j;
  177. }
  178. #ifdef DEBUG_CDROM
  179.   fprintf(stderr, "Checking possible CD-ROM drive: %sn", drive);
  180. #endif
  181. switch (CheckDrive(drive, NULL, &stbuf)) {
  182. /* Drive exists and is a CD-ROM */
  183. case 1:
  184. AddDrive(drive, &stbuf);
  185. break;
  186. /* Drive exists, but isn't a CD-ROM */
  187. case 0:
  188. break;
  189. /* Drive doesn't exist */
  190. case -1:
  191. exists = 0;
  192. break;
  193. }
  194. }
  195. } else {
  196. sprintf(drive, "/dev/%s", checklist[i]);
  197. #ifdef DEBUG_CDROM
  198.   fprintf(stderr, "Checking possible CD-ROM drive: %sn", drive);
  199. #endif
  200. if ( CheckDrive(drive, NULL, &stbuf) > 0 ) {
  201. AddDrive(drive, &stbuf);
  202. }
  203. }
  204. }
  205. return(0);
  206. }
  207. static const char *SDL_SYS_CDName(int drive)
  208. {
  209. return(SDL_cdlist[drive]);
  210. }
  211. static int SDL_SYS_CDOpen(int drive)
  212. {
  213. return(open(SDL_cdlist[drive], (O_RDONLY|O_EXCL|O_NONBLOCK), 0));
  214. }
  215. static int SDL_SYS_CDGetTOC(SDL_CD *cdrom)
  216. {
  217. cdrom_read_toc_t toc;
  218. int i, okay;
  219. okay = 0;
  220. if (devctl(cdrom->id, DCMD_CAM_CDROMREADTOC, &toc, sizeof(toc), 0) == 0) {
  221. cdrom->numtracks = toc.last_track - toc.first_track + 1;
  222. if ( cdrom->numtracks > SDL_MAX_TRACKS ) {
  223. cdrom->numtracks = SDL_MAX_TRACKS;
  224. }
  225. /* Read all the track TOC entries */
  226. for ( i=0; i<=cdrom->numtracks; ++i ) {
  227. if ( i == cdrom->numtracks ) {
  228. cdrom->track[i].id = CDROM_LEADOUT;
  229. } else {
  230. #if 0 /* Sam 11/6/00 - an obsolete field? */
  231. cdrom->track[i].id = toc.cdth_trk0+i;
  232. #else
  233. cdrom->track[i].id = toc.first_track+i;
  234. #endif
  235. }
  236. cdrom->track[i].type = toc.toc_entry[i].control_adr;
  237. cdrom->track[i].offset = MSF_TO_FRAMES(
  238. toc.toc_entry[i].addr.msf.minute,
  239. toc.toc_entry[i].addr.msf.second,
  240. toc.toc_entry[i].addr.msf.frame);
  241. cdrom->track[i].length = 0;
  242. if ( i > 0 ) {
  243. cdrom->track[i-1].length =
  244. cdrom->track[i].offset-
  245. cdrom->track[i-1].offset;
  246. }
  247. }
  248. if ( i == (cdrom->numtracks+1) ) {
  249. okay = 1;
  250. }
  251. }
  252. return(okay ? 0 : -1);
  253. }
  254. /* Get CD-ROM status */
  255. static CDstatus SDL_SYS_CDStatus(SDL_CD *cdrom, int *position)
  256. {
  257. CDstatus status;
  258. cdrom_read_toc_t toc;
  259. subch_current_position_t info;
  260. #if 0 /* Sam 11/6/00 - an obsolete field? */
  261. info.subch_command.data_format = CDROM_SUBCH_CURRENT_POSITION;
  262. info.subch_command.track_number = 0;
  263. #else
  264. info.data_format = CDROM_SUBCH_CURRENT_POSITION;
  265. info.track_number = 0;
  266. #endif
  267. if (devctl(cdrom->id, DCMD_CAM_CDROMSUBCHNL, &info, sizeof(info), 0) != 0) {
  268. if ( ERRNO_TRAYEMPTY(errno) ) {
  269. status = CD_TRAYEMPTY;
  270. } else {
  271. status = CD_ERROR;
  272. }
  273. } else {
  274. switch (info.header.audio_status) {
  275. case CDROM_AUDIO_INVALID:
  276. case CDROM_AUDIO_NO_STATUS:
  277. /* Try to determine if there's a CD available */
  278. if (devctl(cdrom->id, DCMD_CAM_CDROMREADTOC, &toc, sizeof(toc), 0)==0)
  279. status = CD_STOPPED;
  280. else
  281. status = CD_TRAYEMPTY;
  282. break;
  283. case CDROM_AUDIO_COMPLETED:
  284. status = CD_STOPPED;
  285. break;
  286. case CDROM_AUDIO_PLAY:
  287. status = CD_PLAYING;
  288. break;
  289. case CDROM_AUDIO_PAUSED:
  290. /* Workaround buggy CD-ROM drive */
  291. if ( info.data_format == CDROM_LEADOUT ) {
  292. status = CD_STOPPED;
  293. } else {
  294. status = CD_PAUSED;
  295. }
  296. break;
  297. default:
  298. status = CD_ERROR;
  299. break;
  300. }
  301. }
  302. if ( position ) {
  303. if ( status == CD_PLAYING || (status == CD_PAUSED) ) {
  304. *position = MSF_TO_FRAMES(
  305. info.addr.msf.minute,
  306. info.addr.msf.second,
  307. info.addr.msf.frame);
  308. } else {
  309. *position = 0;
  310. }
  311. }
  312. return(status);
  313. }
  314. /* Start play */
  315. static int SDL_SYS_CDPlay(SDL_CD *cdrom, int start, int length)
  316. {
  317. cdrom_playmsf_t playtime;
  318. FRAMES_TO_MSF(start,
  319.    &playtime.start_minute, &playtime.start_second, &playtime.start_frame);
  320. FRAMES_TO_MSF(start+length,
  321.    &playtime.end_minute, &playtime.end_second, &playtime.end_frame);
  322. #ifdef DEBUG_CDROM
  323.   fprintf(stderr, "Trying to play from %d:%d:%d to %d:%d:%dn",
  324. playtime.start_minute, playtime.start_second, playtime.start_frame,
  325. playtime.end_minute, playtime.end_second, playtime.end_frame);
  326. #endif
  327. return(devctl(cdrom->id, DCMD_CAM_CDROMPLAYMSF, &playtime, sizeof(playtime), 0));
  328. }
  329. /* Pause play */
  330. static int SDL_SYS_CDPause(SDL_CD *cdrom)
  331. {
  332. return(devctl(cdrom->id, DCMD_CAM_CDROMPAUSE, NULL, 0, 0));
  333. }
  334. /* Resume play */
  335. static int SDL_SYS_CDResume(SDL_CD *cdrom)
  336. {
  337. return(devctl(cdrom->id, DCMD_CAM_CDROMRESUME, NULL, 0, 0));
  338. }
  339. /* Stop play */
  340. static int SDL_SYS_CDStop(SDL_CD *cdrom)
  341. {
  342. return(devctl(cdrom->id, DCMD_CAM_CDROMSTOP, NULL, 0, 0));
  343. }
  344. /* Eject the CD-ROM */
  345. static int SDL_SYS_CDEject(SDL_CD *cdrom)
  346. {
  347. return(devctl(cdrom->id, DCMD_CAM_EJECT_MEDIA, NULL, 0, 0));
  348. }
  349. /* Close the CD-ROM handle */
  350. static void SDL_SYS_CDClose(SDL_CD *cdrom)
  351. {
  352. close(cdrom->id);
  353. }
  354. void SDL_SYS_CDQuit(void)
  355. {
  356. int i;
  357. if ( SDL_numcds > 0 ) {
  358. for ( i=0; i<SDL_numcds; ++i ) {
  359. free(SDL_cdlist[i]);
  360. }
  361. SDL_numcds = 0;
  362. }
  363. }