2006-01-24 00:15:33 +00:00
|
|
|
/*
|
2007-04-15 16:39:18 +00:00
|
|
|
$Id: cdchange.c,v 1.6 2007/04/15 16:39:18 rocky Exp $
|
2006-01-24 00:15:33 +00:00
|
|
|
|
2007-03-05 11:18:49 +00:00
|
|
|
Copyright (C) 2005, 2006, 2007 Rocky Bernstein <rocky@gnu.org>
|
2006-01-24 00:15:33 +00:00
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Test media changed */
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
# include "config.h"
|
|
|
|
|
#endif
|
|
|
|
|
#include <stdio.h>
|
2006-01-24 00:53:19 +00:00
|
|
|
|
2007-03-05 11:49:24 +00:00
|
|
|
#ifdef HAVE_LIMITS_H
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-01-24 00:53:19 +00:00
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
|
# include <stdlib.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
|
# include <string.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_ERRNO_H
|
|
|
|
|
# include <errno.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
|
# include <sys/types.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-01-24 00:15:33 +00:00
|
|
|
#include <cdio/cdio.h>
|
|
|
|
|
int
|
|
|
|
|
main(int argc, const char *argv[])
|
|
|
|
|
{
|
|
|
|
|
CdIo_t *p_cdio;
|
2006-01-24 00:53:19 +00:00
|
|
|
unsigned long i_sleep=30;
|
2006-01-24 00:15:33 +00:00
|
|
|
|
2006-01-24 00:53:19 +00:00
|
|
|
if (argc > 1) {
|
2006-01-24 00:15:33 +00:00
|
|
|
p_cdio = cdio_open (argv[1], DRIVER_DEVICE);
|
2006-01-24 00:53:19 +00:00
|
|
|
if (argc > 2) {
|
2007-03-05 11:18:49 +00:00
|
|
|
errno = 0;
|
2006-01-24 00:53:19 +00:00
|
|
|
i_sleep = strtol(argv[2], (char **)NULL, 10);
|
2007-04-15 16:39:18 +00:00
|
|
|
if ( (LONG_MIN == i_sleep || LONG_MAX == i_sleep) && errno != 0 ) {
|
2006-01-24 00:53:19 +00:00
|
|
|
printf("Invalid sleep parameter %s\n", argv[2]);
|
|
|
|
|
printf("Error reported back from strtol: %s\n", strerror(errno));
|
|
|
|
|
return 2;
|
|
|
|
|
}
|
2006-01-24 00:15:33 +00:00
|
|
|
}
|
2006-01-24 00:53:19 +00:00
|
|
|
} else {
|
|
|
|
|
p_cdio = cdio_open (NULL, DRIVER_DEVICE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (NULL == p_cdio) {
|
|
|
|
|
printf("Couldn't find a driver.. leaving.\n");
|
|
|
|
|
return 1;
|
2006-01-24 00:15:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (cdio_get_media_changed(p_cdio))
|
|
|
|
|
printf("Initial media status: changed\n");
|
|
|
|
|
else
|
|
|
|
|
printf("Initial media status: not changed\n");
|
|
|
|
|
|
2006-01-24 00:53:19 +00:00
|
|
|
printf("Giving you %lu seconds to change CD if you want to do so.\n",
|
|
|
|
|
i_sleep);
|
2006-01-24 00:15:33 +00:00
|
|
|
sleep(30);
|
|
|
|
|
if (cdio_get_media_changed(p_cdio))
|
|
|
|
|
printf("Media status: changed\n");
|
|
|
|
|
else
|
|
|
|
|
printf("Media status: not changed\n");
|
|
|
|
|
|
|
|
|
|
cdio_destroy(p_cdio);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|