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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000  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.5 2002/04/22 21:38:02 wmay Exp $";
  21. #endif
  22. /*
  23.  * Functions for system-level CD-ROM audio control for BSD/OS 4.x
  24.  * This started life out as a copy of the freebsd/SDL_cdrom.c file but was
  25.  * heavily modified.   Works for standard (MMC) SCSI and ATAPI CDrom drives.
  26.  *
  27.  * Steven Schultz - sms@to.gd-es.com
  28. */
  29. #include <sys/types.h>
  30. #include <stdlib.h>
  31. #include <sys/stat.h>
  32. #include <fcntl.h>
  33. #include <stdio.h>
  34. #include <string.h>
  35. #include <errno.h>
  36. #include <err.h>
  37. #include <unistd.h>
  38. #include <sys/ioctl.h>
  39. #include </sys/dev/scsi/scsi.h>
  40. #include </sys/dev/scsi/scsi_ioctl.h>
  41. #include "SDL_error.h"
  42. #include "SDL_cdrom.h"
  43. #include "SDL_syscdrom.h"
  44. /*
  45.  * The msf_to_frame and frame_to_msf were yanked from libcdrom and inlined
  46.  * here so that -lcdrom doesn't have to be dragged in for something so simple.
  47. */
  48. #define FRAMES_PER_SECOND 75
  49. #define FRAMES_PER_MINUTE (FRAMES_PER_SECOND * 60)
  50. int
  51. msf_to_frame(int minute, int second, int frame)
  52. {
  53. return(minute * FRAMES_PER_MINUTE + second * FRAMES_PER_SECOND + frame);
  54. }
  55. void
  56. frame_to_msf(int frame, int *minp, int *secp, int *framep)
  57. {
  58. *minp = frame / FRAMES_PER_MINUTE;
  59. *secp = (frame % FRAMES_PER_MINUTE) / FRAMES_PER_SECOND;
  60. *framep = frame % FRAMES_PER_SECOND;
  61. }
  62. /* The maximum number of CD-ROM drives we'll detect */
  63. #define MAX_DRIVES 16
  64. /* A list of available CD-ROM drives */
  65. static char *SDL_cdlist[MAX_DRIVES];
  66. static dev_t SDL_cdmode[MAX_DRIVES];
  67. /* The system-dependent CD control functions */
  68. static const char *SDL_SYS_CDName(int drive);
  69. static int SDL_SYS_CDOpen(int drive);
  70. static int SDL_SYS_CDGetTOC(SDL_CD *cdrom);
  71. static CDstatus SDL_SYS_CDStatus(SDL_CD *cdrom, int *position);
  72. static int SDL_SYS_CDPlay(SDL_CD *cdrom, int start, int length);
  73. static int SDL_SYS_CDPause(SDL_CD *cdrom);
  74. static int SDL_SYS_CDResume(SDL_CD *cdrom);
  75. static int SDL_SYS_CDStop(SDL_CD *cdrom);
  76. static int SDL_SYS_CDEject(SDL_CD *cdrom);
  77. static void SDL_SYS_CDClose(SDL_CD *cdrom);
  78. typedef struct scsi_cdb cdb_t;
  79. static int scsi_cmd(int fd,
  80. struct scsi_cdb *cdb,
  81. int cdblen, 
  82. int rw,
  83. caddr_t data,
  84. int datalen,
  85. struct scsi_user_cdb *sus)
  86. {
  87. int scsistatus;
  88. unsigned char *cp;
  89. struct scsi_user_cdb suc;
  90.     /* safety checks */
  91. if (!cdb) return(-1);
  92. if (rw != SUC_READ && rw != SUC_WRITE) return(-1);
  93. suc.suc_flags = rw;
  94. suc.suc_cdblen = cdblen;
  95. bcopy(cdb, suc.suc_cdb, cdblen);
  96. suc.suc_datalen = datalen;
  97. suc.suc_data = data;
  98. suc.suc_timeout = 10; /* 10 secs max for TUR or SENSE */
  99. if (ioctl(fd, SCSIRAWCDB, &suc) == -1)
  100. return(-11);
  101. scsistatus = suc.suc_sus.sus_status;
  102. cp = suc.suc_sus.sus_sense;
  103. /*
  104.  * If a place to copy the sense data back to has been provided then the
  105.  * caller is responsible for checking the errors and printing any information
  106.  * out if the status was not successful.
  107. */
  108. if (scsistatus != 0 && !sus)
  109. {
  110. fprintf(stderr,"scsistatus = %x cmd = %xn",
  111. scsistatus, cdb[0]);
  112. fprintf(stderr, "sense %x %x %x %x %x %x %x %x %x %x %x %x %x %x %x %xn", 
  113. cp[0], cp[1], cp[2], cp[3], cp[4], cp[5],
  114. cp[6], cp[7], cp[8], cp[9], cp[10], cp[11],
  115. cp[12], cp[13], cp[14], cp[15]);
  116. return(1);
  117. }
  118. if (sus)
  119. bcopy(&suc, sus, sizeof (struct scsi_user_cdb));
  120. if (scsistatus)
  121. return(1); /* Return non-zero for unsuccessful status */
  122. return(0);
  123. }
  124. /* request vendor brand and model */
  125. unsigned char *Inquiry(int fd)
  126. {
  127. static struct scsi_cdb6 cdb = 
  128. {
  129. 0x12, 
  130. 0, 0, 0,
  131. 56,
  132. 0
  133. };
  134. static unsigned char Inqbuffer[56];
  135. if (scsi_cmd(fd, (cdb_t *)&cdb, 6, SUC_READ, Inqbuffer, 
  136. sizeof(Inqbuffer), 0))
  137. return("377");
  138. return(Inqbuffer);
  139. }
  140. #define ADD_SENSECODE 12
  141. #define ADD_SC_QUALIFIER 13
  142. int TestForMedium(int fd)
  143. {
  144. int sts, asc, ascq;
  145. struct scsi_user_cdb sus;
  146. static struct scsi_cdb6 cdb =
  147. {
  148. CMD_TEST_UNIT_READY, /* command */
  149. 0, /* reserved */
  150. 0, /* reserved */
  151. 0, /* reserved */
  152. 0, /* reserved */
  153. 0 /* reserved */
  154. };
  155. again: sts = scsi_cmd(fd, (cdb_t *)&cdb, 6, SUC_READ, 0, 0, &sus);
  156. asc = sus.suc_sus.sus_sense[ADD_SENSECODE];
  157. ascq = sus.suc_sus.sus_sense[ADD_SC_QUALIFIER];
  158. if (asc == 0x3a && ascq == 0x0) /* no medium */
  159. return(0);
  160. if (asc == 0x28 && ascq == 0x0) /* medium changed */
  161. goto again;
  162. if (asc == 0x4 && ascq == 0x1 ) /* coming ready */
  163. {
  164. sleep(2);
  165. goto again;
  166. }
  167. return(1);
  168. }
  169. /* Check a drive to see if it is a CD-ROM */
  170. static int CheckDrive(char *drive, struct stat *stbuf)
  171. {
  172. int is_cd = 0, cdfd;
  173. char *p;
  174. /* If it doesn't exist, return -1 */
  175. if ( stat(drive, stbuf) < 0 ) {
  176. return(-1);
  177. }
  178. /* If it does exist, verify that it's an available CD-ROM */
  179. cdfd = open(drive, (O_RDONLY|O_EXCL|O_NONBLOCK), 0);
  180. if ( cdfd >= 0 ) {
  181. p = Inquiry(cdfd);
  182. if (*p == TYPE_ROM)
  183. is_cd = 1;
  184. close(cdfd);
  185. }
  186. return(is_cd);
  187. }
  188. /* Add a CD-ROM drive to our list of valid drives */
  189. static void AddDrive(char *drive, struct stat *stbuf)
  190. {
  191. int i;
  192. if ( SDL_numcds < MAX_DRIVES ) {
  193. /* Check to make sure it's not already in our list.
  194.      This can happen when we see a drive via symbolic link.
  195.  */
  196. for ( i=0; i<SDL_numcds; ++i ) {
  197. if ( stbuf->st_rdev == SDL_cdmode[i] ) {
  198. #ifdef DEBUG_CDROM
  199.   fprintf(stderr, "Duplicate drive detected: %s == %sn", drive, SDL_cdlist[i]);
  200. #endif
  201. return;
  202. }
  203. }
  204. /* Add this drive to our list */
  205. i = SDL_numcds;
  206. SDL_cdlist[i] = (char *)malloc(strlen(drive)+1);
  207. if ( SDL_cdlist[i] == NULL ) {
  208. SDL_OutOfMemory();
  209. return;
  210. }
  211. strcpy(SDL_cdlist[i], drive);
  212. SDL_cdmode[i] = stbuf->st_rdev;
  213. ++SDL_numcds;
  214. #ifdef DEBUG_CDROM
  215.   fprintf(stderr, "Added CD-ROM drive: %sn", drive);
  216. #endif
  217. }
  218. }
  219. int  SDL_SYS_CDInit(void)
  220. {
  221. /* checklist: /dev/rsr?c */
  222. static char *checklist[] = {
  223. "?0 rsr?", NULL
  224. };
  225. char *SDLcdrom;
  226. int i, j, exists;
  227. char drive[32];
  228. struct stat stbuf;
  229. /* Fill in our driver capabilities */
  230. SDL_CDcaps.Name = SDL_SYS_CDName;
  231. SDL_CDcaps.Open = SDL_SYS_CDOpen;
  232. SDL_CDcaps.GetTOC = SDL_SYS_CDGetTOC;
  233. SDL_CDcaps.Status = SDL_SYS_CDStatus;
  234. SDL_CDcaps.Play = SDL_SYS_CDPlay;
  235. SDL_CDcaps.Pause = SDL_SYS_CDPause;
  236. SDL_CDcaps.Resume = SDL_SYS_CDResume;
  237. SDL_CDcaps.Stop = SDL_SYS_CDStop;
  238. SDL_CDcaps.Eject = SDL_SYS_CDEject;
  239. SDL_CDcaps.Close = SDL_SYS_CDClose;
  240. /* Look in the environment for our CD-ROM drive list */
  241. SDLcdrom = getenv("SDL_CDROM"); /* ':' separated list of devices */
  242. if ( SDLcdrom != NULL ) {
  243. char *cdpath, *delim;
  244. cdpath = malloc(strlen(SDLcdrom)+1);
  245. if ( cdpath != NULL ) {
  246. strcpy(cdpath, SDLcdrom);
  247. SDLcdrom = cdpath;
  248. do {
  249. delim = strchr(SDLcdrom, ':');
  250. if ( delim ) {
  251. *delim++ = '';
  252. }
  253. if ( CheckDrive(SDLcdrom, &stbuf) > 0 ) {
  254. AddDrive(SDLcdrom, &stbuf);
  255. }
  256. if ( delim ) {
  257. SDLcdrom = delim;
  258. } else {
  259. SDLcdrom = NULL;
  260. }
  261. } while ( SDLcdrom );
  262. free(cdpath);
  263. }
  264. /* If we found our drives, there's nothing left to do */
  265. if ( SDL_numcds > 0 ) {
  266. return(0);
  267. }
  268. }
  269. /* Scan the system for CD-ROM drives */
  270. for ( i=0; checklist[i]; ++i ) {
  271. if ( checklist[i][0] == '?' ) {
  272. char *insert;
  273. exists = 1;
  274. for ( j=checklist[i][1]; exists; ++j ) {
  275. sprintf(drive, "/dev/%sc", &checklist[i][3]);
  276. insert = strchr(drive, '?');
  277. if ( insert != NULL ) {
  278. *insert = j;
  279. }
  280. switch (CheckDrive(drive, &stbuf)) {
  281. /* Drive exists and is a CD-ROM */
  282. case 1:
  283. AddDrive(drive, &stbuf);
  284. break;
  285. /* Drive exists, but isn't a CD-ROM */
  286. case 0:
  287. break;
  288. /* Drive doesn't exist */
  289. case -1:
  290. exists = 0;
  291. break;
  292. }
  293. }
  294. } else {
  295. sprintf(drive, "/dev/%s", checklist[i]);
  296. if ( CheckDrive(drive, &stbuf) > 0 ) {
  297. AddDrive(drive, &stbuf);
  298. }
  299. }
  300. }
  301. return(0);
  302. }
  303. static const char *SDL_SYS_CDName(int drive)
  304. {
  305. return(SDL_cdlist[drive]);
  306. }
  307. static int SDL_SYS_CDOpen(int drive)
  308. {
  309. return(open(SDL_cdlist[drive], O_RDONLY | O_NONBLOCK | O_EXCL, 0));
  310. }
  311. static int SDL_SYS_CDGetTOC(SDL_CD *cdrom)
  312. {
  313. u_char cdb[10], buf[4], *p, *toc;
  314. struct scsi_user_cdb sus;
  315. int i, sts, first_track, last_track, ntracks, toc_size;
  316. bzero(cdb, sizeof (cdb));
  317. cdb[0] = 0x43; /* Read TOC */
  318. cdb[1] = 0x2; /* MSF */
  319. cdb[8] = 4; /* size TOC header */
  320. sts = scsi_cmd(cdrom->id, (cdb_t *)cdb, 10, SUC_READ, buf, 4, &sus);
  321. if (sts < 0)
  322. return(-1);
  323. first_track = buf[2];
  324. last_track = buf[3];
  325. ntracks = last_track - first_track + 1;
  326. cdrom->numtracks = ntracks;
  327. toc_size = 4 + (ntracks + 1) * 8;
  328. toc = (u_char *)malloc(toc_size);
  329. if (toc == NULL)
  330. return(-1);
  331. bzero(cdb, sizeof (cdb));
  332. cdb[0] = 0x43;
  333. cdb[1] = 0x2;
  334. cdb[6] = first_track;
  335. cdb[7] = toc_size >> 8;
  336. cdb[8] = toc_size & 0xff;
  337. sts = scsi_cmd(cdrom->id, (cdb_t *)cdb, 10, SUC_READ, toc, toc_size, 
  338. &sus);
  339. if (sts < 0)
  340. {
  341. free(toc);
  342. return(-1);
  343. }
  344. for (i = 0, p = toc+4; i <= ntracks; i++, p+= 8)
  345. {
  346. if (i == ntracks)
  347. cdrom->track[i].id = 0xAA; /* Leadout */
  348. else
  349. cdrom->track[i].id = first_track + i;
  350. if (p[1] & 0x20)
  351. cdrom->track[i].type = SDL_DATA_TRACK;
  352. else
  353. cdrom->track[i].type = SDL_AUDIO_TRACK;
  354. cdrom->track[i].offset = msf_to_frame(p[5], p[6], p[7]);
  355. cdrom->track[i].length = 0;
  356. if (i > 0)
  357. cdrom->track[i-1].length = cdrom->track[i].offset -
  358.    cdrom->track[i-1].offset;
  359. }
  360. free(toc);
  361. return(0);
  362. }
  363. /* Get CD-ROM status */
  364. static CDstatus SDL_SYS_CDStatus(SDL_CD *cdrom, int *position)
  365. {
  366. CDstatus status;
  367. u_char cdb[10], buf[16];
  368. int sts;
  369. struct scsi_user_cdb sus;
  370. bzero(cdb, sizeof (cdb));
  371. cdb[0] = 0x42; /* read subq */
  372. cdb[1] = 0x2; /* MSF */
  373. cdb[2] = 0x40; /* q channel */
  374. cdb[3] = 1; /* current pos */
  375. cdb[7] = sizeof (buf) >> 8;
  376. cdb[8] = sizeof (buf) & 0xff;
  377. sts = scsi_cmd(cdrom->id, (cdb_t *)cdb, 10, SUC_READ, buf, sizeof (buf),
  378. &sus);
  379. if (sts < 0)
  380. return(-1);
  381. if (sts)
  382. {
  383. if (TestForMedium(cdrom->id) == 0)
  384. status = CD_TRAYEMPTY;
  385. else
  386. status = CD_ERROR;
  387. }
  388. else
  389. {
  390. switch (buf[1])
  391. {
  392. case 0x11:
  393. status = CD_PLAYING;
  394. break;
  395. case 0x12:
  396. status = CD_PAUSED;
  397. break;
  398. case 0x13:
  399. case 0x14:
  400. case 0x15:
  401. status = CD_STOPPED;
  402. break;
  403. default:
  404. status = CD_ERROR;
  405. break;
  406. }
  407. }
  408. if (position)
  409. {
  410. if ( status == CD_PLAYING || (status == CD_PAUSED) )
  411. *position = msf_to_frame(buf[9], buf[10], buf[11]);
  412. else
  413. *position = 0;
  414. }
  415. return(status);
  416. }
  417. /* Start play */
  418. static int SDL_SYS_CDPlay(SDL_CD *cdrom, int start, int length)
  419. {
  420. u_char cdb[10];
  421. int sts, minute, second, frame, eminute, esecond, eframe;
  422. struct scsi_user_cdb sus;
  423. bzero(cdb, sizeof(cdb));
  424. cdb[0] = 0x47; /* Play */
  425. frame_to_msf(start, &minute, &second, &frame);
  426. frame_to_msf(start + length, &eminute, &esecond, &eframe);
  427. cdb[3] = minute;
  428. cdb[4] = second;
  429. cdb[5] = frame;
  430. cdb[6] = eminute;
  431. cdb[7] = esecond;
  432. cdb[8] = eframe;
  433. sts = scsi_cmd(cdrom->id, (cdb_t *)cdb, 10, SUC_READ, 0, 0, &sus);
  434. return(sts);
  435. }
  436. static int
  437. pauseresume(SDL_CD *cdrom, int flag)
  438. {
  439. u_char cdb[10];
  440. struct scsi_user_cdb sus;
  441. bzero(cdb, sizeof (cdb));
  442. cdb[0] = 0x4b;
  443. cdb[8] = flag & 0x1;
  444. return(scsi_cmd(cdrom->id, (cdb_t *)cdb, 10, SUC_READ, 0, 0, &sus));
  445. }
  446. /* Pause play */
  447. static int SDL_SYS_CDPause(SDL_CD *cdrom)
  448. {
  449. return(pauseresume(cdrom, 0));
  450. }
  451. /* Resume play */
  452. static int SDL_SYS_CDResume(SDL_CD *cdrom)
  453. {
  454. return(pauseresume(cdrom, 1));
  455. }
  456. /* Stop play */
  457. static int SDL_SYS_CDStop(SDL_CD *cdrom)
  458. {
  459. u_char cdb[6];
  460. struct scsi_user_cdb sus;
  461. bzero(cdb, sizeof (cdb));
  462. cdb[0] = 0x1b; /* stop */
  463. cdb[1] = 1; /* immediate */
  464. return(scsi_cmd(cdrom->id, (cdb_t *)cdb, 6, SUC_READ, 0, 0, &sus));
  465. }
  466. /* Eject the CD-ROM */
  467. static int SDL_SYS_CDEject(SDL_CD *cdrom)
  468. {
  469. u_char cdb[6];
  470. struct scsi_user_cdb sus;
  471. bzero(cdb, sizeof (cdb));
  472. cdb[0] = 0x1b; /* stop */
  473. cdb[1] = 1; /* immediate */
  474. cdb[4] = 2; /* eject */
  475. return(scsi_cmd(cdrom->id, (cdb_t *)cdb, 6, SUC_READ, 0, 0, &sus));
  476. }
  477. /* Close the CD-ROM handle */
  478. static void SDL_SYS_CDClose(SDL_CD *cdrom)
  479. {
  480. close(cdrom->id);
  481. }
  482. void SDL_SYS_CDQuit(void)
  483. {
  484. int i;
  485. if ( SDL_numcds > 0 ) {
  486. for ( i=0; i<SDL_numcds; ++i ) {
  487. free(SDL_cdlist[i]);
  488. }
  489. }
  490. SDL_numcds = 0;
  491. }