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 <fcntl.h>
  27. #include <stdio.h>
  28. #include <string.h>
  29. #include <errno.h>
  30. #include <unistd.h>
  31. #include <sys/cdio.h>
  32. #include "SDL_error.h"
  33. #include "SDL_cdrom.h"
  34. #include "SDL_syscdrom.h"
  35. /* The maximum number of CD-ROM drives we'll detect */
  36. #define MAX_DRIVES 16
  37. /* A list of available CD-ROM drives */
  38. static char *SDL_cdlist[MAX_DRIVES];
  39. static dev_t SDL_cdmode[MAX_DRIVES];
  40. /* The system-dependent CD control functions */
  41. static const char *SDL_SYS_CDName(int drive);
  42. static int SDL_SYS_CDOpen(int drive);
  43. static int SDL_SYS_CDGetTOC(SDL_CD *cdrom);
  44. static CDstatus SDL_SYS_CDStatus(SDL_CD *cdrom, int *position);
  45. static int SDL_SYS_CDPlay(SDL_CD *cdrom, int start, int length);
  46. static int SDL_SYS_CDPause(SDL_CD *cdrom);
  47. static int SDL_SYS_CDResume(SDL_CD *cdrom);
  48. static int SDL_SYS_CDStop(SDL_CD *cdrom);
  49. static int SDL_SYS_CDEject(SDL_CD *cdrom);
  50. static void SDL_SYS_CDClose(SDL_CD *cdrom);
  51. /* Some ioctl() errno values which occur when the tray is empty */
  52. #define ERRNO_TRAYEMPTY(errno)
  53. ((errno == EIO) || (errno == ENOENT) || (errno == EINVAL))
  54. /* Check a drive to see if it is a CD-ROM */
  55. static int CheckDrive(char *drive, struct stat *stbuf)
  56. {
  57. int is_cd, cdfd;
  58. struct ioc_read_subchannel info;
  59. /* If it doesn't exist, return -1 */
  60. if ( stat(drive, stbuf) < 0 ) {
  61. return(-1);
  62. }
  63. /* If it does exist, verify that it's an available CD-ROM */
  64. is_cd = 0;
  65. if ( S_ISCHR(stbuf->st_mode) || S_ISBLK(stbuf->st_mode) ) {
  66. cdfd = open(drive, (O_RDONLY|O_EXCL|O_NONBLOCK), 0);
  67. if ( cdfd >= 0 ) {
  68. info.address_format = CD_MSF_FORMAT;
  69. info.data_format = CD_CURRENT_POSITION;
  70. info.data_len = 0;
  71. info.data = NULL;
  72. /* Under Linux, EIO occurs when a disk is not present.
  73.    This isn't 100% reliable, so we use the USE_MNTENT
  74.    code above instead.
  75.  */
  76. if ( (ioctl(cdfd, CDIOCREADSUBCHANNEL, &info) == 0) ||
  77. ERRNO_TRAYEMPTY(errno) ) {
  78. is_cd = 1;
  79. }
  80. close(cdfd);
  81. }
  82. }
  83. return(is_cd);
  84. }
  85. /* Add a CD-ROM drive to our list of valid drives */
  86. static void AddDrive(char *drive, struct stat *stbuf)
  87. {
  88. int i;
  89. if ( SDL_numcds < MAX_DRIVES ) {
  90. /* Check to make sure it's not already in our list.
  91.      This can happen when we see a drive via symbolic link.
  92.  */
  93. for ( i=0; i<SDL_numcds; ++i ) {
  94. if ( stbuf->st_rdev == SDL_cdmode[i] ) {
  95. #ifdef DEBUG_CDROM
  96.   fprintf(stderr, "Duplicate drive detected: %s == %sn", drive, SDL_cdlist[i]);
  97. #endif
  98. return;
  99. }
  100. }
  101. /* Add this drive to our list */
  102. i = SDL_numcds;
  103. SDL_cdlist[i] = (char *)malloc(strlen(drive)+1);
  104. if ( SDL_cdlist[i] == NULL ) {
  105. SDL_OutOfMemory();
  106. return;
  107. }
  108. strcpy(SDL_cdlist[i], drive);
  109. SDL_cdmode[i] = stbuf->st_rdev;
  110. ++SDL_numcds;
  111. #ifdef DEBUG_CDROM
  112.   fprintf(stderr, "Added CD-ROM drive: %sn", drive);
  113. #endif
  114. }
  115. }
  116. int  SDL_SYS_CDInit(void)
  117. {
  118. /* checklist: /dev/cdrom,/dev/cd?c /dev/acd?c
  119. /dev/matcd?c /dev/mcd?c /dev/scd?c */
  120. static char *checklist[] = {
  121. "cdrom", "?0 cd?", "?0 acd?", "?0 matcd?", "?0 mcd?", "?0 scd?",NULL
  122. };
  123. char *SDLcdrom;
  124. int i, j, exists;
  125. char drive[32];
  126. struct stat stbuf;
  127. /* Fill in our driver capabilities */
  128. SDL_CDcaps.Name = SDL_SYS_CDName;
  129. SDL_CDcaps.Open = SDL_SYS_CDOpen;
  130. SDL_CDcaps.GetTOC = SDL_SYS_CDGetTOC;
  131. SDL_CDcaps.Status = SDL_SYS_CDStatus;
  132. SDL_CDcaps.Play = SDL_SYS_CDPlay;
  133. SDL_CDcaps.Pause = SDL_SYS_CDPause;
  134. SDL_CDcaps.Resume = SDL_SYS_CDResume;
  135. SDL_CDcaps.Stop = SDL_SYS_CDStop;
  136. SDL_CDcaps.Eject = SDL_SYS_CDEject;
  137. SDL_CDcaps.Close = SDL_SYS_CDClose;
  138. /* Look in the environment for our CD-ROM drive list */
  139. SDLcdrom = getenv("SDL_CDROM"); /* ':' separated list of devices */
  140. if ( SDLcdrom != NULL ) {
  141. char *cdpath, *delim;
  142. cdpath = malloc(strlen(SDLcdrom)+1);
  143. if ( cdpath != NULL ) {
  144. strcpy(cdpath, SDLcdrom);
  145. SDLcdrom = cdpath;
  146. do {
  147. delim = strchr(SDLcdrom, ':');
  148. if ( delim ) {
  149. *delim++ = '';
  150. }
  151. if ( CheckDrive(SDLcdrom, &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/%sc", &checklist[i][3]);
  174. insert = strchr(drive, '?');
  175. if ( insert != NULL ) {
  176. *insert = j;
  177. }
  178. switch (CheckDrive(drive, &stbuf)) {
  179. /* Drive exists and is a CD-ROM */
  180. case 1:
  181. AddDrive(drive, &stbuf);
  182. break;
  183. /* Drive exists, but isn't a CD-ROM */
  184. case 0:
  185. break;
  186. /* Drive doesn't exist */
  187. case -1:
  188. exists = 0;
  189. break;
  190. }
  191. }
  192. } else {
  193. sprintf(drive, "/dev/%s", checklist[i]);
  194. if ( CheckDrive(drive, &stbuf) > 0 ) {
  195. AddDrive(drive, &stbuf);
  196. }
  197. }
  198. }
  199. return(0);
  200. }
  201. /* General ioctl() CD-ROM command function */
  202. static int SDL_SYS_CDioctl(int id, int command, void *arg)
  203. {
  204. int retval;
  205. retval = ioctl(id, command, arg);
  206. if ( retval < 0 ) {
  207. SDL_SetError("ioctl() error: %s", strerror(errno));
  208. }
  209. return(retval);
  210. }
  211. static const char *SDL_SYS_CDName(int drive)
  212. {
  213. return(SDL_cdlist[drive]);
  214. }
  215. static int SDL_SYS_CDOpen(int drive)
  216. {
  217. return(open(SDL_cdlist[drive], (O_RDONLY|O_EXCL|O_NONBLOCK), 0));
  218. }
  219. static int SDL_SYS_CDGetTOC(SDL_CD *cdrom)
  220. {
  221. struct ioc_toc_header toc;
  222. int i, okay;
  223. struct ioc_read_toc_entry entry;
  224. struct cd_toc_entry data;
  225. okay = 0;
  226. if ( SDL_SYS_CDioctl(cdrom->id, CDIOREADTOCHEADER, &toc) == 0 ) {
  227. cdrom->numtracks = toc.ending_track-toc.starting_track+1;
  228. if ( cdrom->numtracks > SDL_MAX_TRACKS ) {
  229. cdrom->numtracks = SDL_MAX_TRACKS;
  230. }
  231. /* Read all the track TOC entries */
  232. for ( i=0; i<=cdrom->numtracks; ++i ) {
  233. if ( i == cdrom->numtracks ) {
  234. cdrom->track[i].id = 0xAA; /* CDROM_LEADOUT */
  235. } else {
  236. cdrom->track[i].id = toc.starting_track+i;
  237. }
  238. entry.starting_track = cdrom->track[i].id;
  239. entry.address_format = CD_MSF_FORMAT;
  240. entry.data_len = sizeof(data);
  241. entry.data = &data;
  242. if ( SDL_SYS_CDioctl(cdrom->id, CDIOREADTOCENTRYS,
  243. &entry) < 0 ) {
  244. break;
  245. } else {
  246. cdrom->track[i].type = data.control;
  247. cdrom->track[i].offset = MSF_TO_FRAMES(
  248. data.addr.msf.minute,
  249. data.addr.msf.second,
  250. data.addr.msf.frame);
  251. cdrom->track[i].length = 0;
  252. if ( i > 0 ) {
  253. cdrom->track[i-1].length =
  254. cdrom->track[i].offset-
  255. cdrom->track[i-1].offset;
  256. }
  257. }
  258. }
  259. if ( i == (cdrom->numtracks+1) ) {
  260. okay = 1;
  261. }
  262. }
  263. return(okay ? 0 : -1);
  264. }
  265. /* Get CD-ROM status */
  266. static CDstatus SDL_SYS_CDStatus(SDL_CD *cdrom, int *position)
  267. {
  268. CDstatus status;
  269. struct ioc_toc_header toc;
  270. struct ioc_read_subchannel info;
  271. struct cd_sub_channel_info data;
  272. info.address_format = CD_MSF_FORMAT;
  273. info.data_format = CD_CURRENT_POSITION;
  274. info.track = 0;
  275. info.data_len = sizeof(data);
  276. info.data = &data;
  277. if ( ioctl(cdrom->id, CDIOCREADSUBCHANNEL, &info) < 0 ) {
  278. if ( ERRNO_TRAYEMPTY(errno) ) {
  279. status = CD_TRAYEMPTY;
  280. } else {
  281. status = CD_ERROR;
  282. }
  283. } else {
  284. switch (data.header.audio_status) {
  285. case CD_AS_AUDIO_INVALID:
  286. case CD_AS_NO_STATUS:
  287. /* Try to determine if there's a CD available */
  288. if (ioctl(cdrom->id,CDIOREADTOCHEADER,&toc)==0)
  289. status = CD_STOPPED;
  290. else
  291. status = CD_TRAYEMPTY;
  292. break;
  293. case CD_AS_PLAY_COMPLETED:
  294. status = CD_STOPPED;
  295. break;
  296. case CD_AS_PLAY_IN_PROGRESS:
  297. status = CD_PLAYING;
  298. break;
  299. case CD_AS_PLAY_PAUSED:
  300. status = CD_PAUSED;
  301. break;
  302. default:
  303. status = CD_ERROR;
  304. break;
  305. }
  306. }
  307. if ( position ) {
  308. if ( status == CD_PLAYING || (status == CD_PAUSED) ) {
  309. *position = MSF_TO_FRAMES(
  310. data.what.position.absaddr.msf.minute,
  311. data.what.position.absaddr.msf.second,
  312. data.what.position.absaddr.msf.frame);
  313. } else {
  314. *position = 0;
  315. }
  316. }
  317. return(status);
  318. }
  319. /* Start play */
  320. static int SDL_SYS_CDPlay(SDL_CD *cdrom, int start, int length)
  321. {
  322. struct ioc_play_msf playtime;
  323. FRAMES_TO_MSF(start,
  324. &playtime.start_m, &playtime.start_s, &playtime.start_f);
  325. FRAMES_TO_MSF(start+length,
  326. &playtime.end_m, &playtime.end_s, &playtime.end_f);
  327. #ifdef DEBUG_CDROM
  328.   fprintf(stderr, "Trying to play from %d:%d:%d to %d:%d:%dn",
  329. playtime.cdmsf_min0, playtime.cdmsf_sec0, playtime.cdmsf_frame0,
  330. playtime.cdmsf_min1, playtime.cdmsf_sec1, playtime.cdmsf_frame1);
  331. #endif
  332. ioctl(cdrom->id, CDIOCSTART, 0);
  333. return(SDL_SYS_CDioctl(cdrom->id, CDIOCPLAYMSF, &playtime));
  334. }
  335. /* Pause play */
  336. static int SDL_SYS_CDPause(SDL_CD *cdrom)
  337. {
  338. return(SDL_SYS_CDioctl(cdrom->id, CDIOCPAUSE, 0));
  339. }
  340. /* Resume play */
  341. static int SDL_SYS_CDResume(SDL_CD *cdrom)
  342. {
  343. return(SDL_SYS_CDioctl(cdrom->id, CDIOCRESUME, 0));
  344. }
  345. /* Stop play */
  346. static int SDL_SYS_CDStop(SDL_CD *cdrom)
  347. {
  348. return(SDL_SYS_CDioctl(cdrom->id, CDIOCSTOP, 0));
  349. }
  350. /* Eject the CD-ROM */
  351. static int SDL_SYS_CDEject(SDL_CD *cdrom)
  352. {
  353. return(SDL_SYS_CDioctl(cdrom->id, CDIOCEJECT, 0));
  354. }
  355. /* Close the CD-ROM handle */
  356. static void SDL_SYS_CDClose(SDL_CD *cdrom)
  357. {
  358. close(cdrom->id);
  359. }
  360. void SDL_SYS_CDQuit(void)
  361. {
  362. int i;
  363. if ( SDL_numcds > 0 ) {
  364. for ( i=0; i<SDL_numcds; ++i ) {
  365. free(SDL_cdlist[i]);
  366. }
  367. SDL_numcds = 0;
  368. }
  369. }