2006-08-30 15:14:41 +00:00
|
|
|
|
2006-11-17 19:51:51 +00:00
|
|
|
/* test/libburner.c , API illustration of burning data or audio tracks to CD */
|
2010-01-23 10:42:52 +00:00
|
|
|
/* Copyright (C) 2005 - 2010 Thomas Schmitt <scdbackup@gmx.net> */
|
|
|
|
/* Provided under GPL, see also "License and copyright aspects" at file end */
|
2006-08-30 15:14:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** Overview
|
|
|
|
|
|
|
|
libburner is a minimal demo application for the library libburn as provided
|
2007-08-11 07:51:04 +00:00
|
|
|
on http://libburnia-project.org . It can list the available devices, can
|
2008-12-14 10:45:04 +00:00
|
|
|
blank a CD-RW or DVD-RW, can format DVD-RW and BD, can burn to CD-R,
|
|
|
|
CD-RW, DVD-R, DVD+R, DVD+R/DL, DVD+RW, DVD-RW, DVD-RAM, BD-R, BD-RE.
|
|
|
|
Not supported yet: DVD-R/DL.
|
2007-02-07 17:49:52 +00:00
|
|
|
|
2006-08-30 15:14:41 +00:00
|
|
|
It's main purpose, nevertheless, is to show you how to use libburn and also
|
2006-12-03 15:56:27 +00:00
|
|
|
to serve the libburnia team as reference application. libburner.c does indeed
|
2006-08-30 15:14:41 +00:00
|
|
|
define the standard way how above three gestures can be implemented and
|
|
|
|
stay upward compatible for a good while.
|
|
|
|
|
|
|
|
Before you can do anything, you have to initialize libburn by
|
|
|
|
burn_initialize()
|
2006-10-03 16:37:08 +00:00
|
|
|
and provide some signal and abort handling, e.g. by the builtin handler, by
|
2010-08-28 11:29:29 +00:00
|
|
|
burn_set_signal_handling("libburner : ", NULL, 0x0)
|
|
|
|
as it is done in main() at the end of this file.
|
|
|
|
Then you aquire a drive in an appropriate way conforming to the API. The twoi
|
|
|
|
main approaches are shown here in application functions:
|
2006-08-30 15:14:41 +00:00
|
|
|
libburner_aquire_by_adr() demonstrates usage as of cdrecord traditions
|
|
|
|
libburner_aquire_by_driveno() demonstrates a scan-and-choose approach
|
2010-08-28 11:29:29 +00:00
|
|
|
|
|
|
|
With that aquired drive you can blank a CD-RW or DVD-RW as shown in
|
2006-08-30 15:14:41 +00:00
|
|
|
libburner_blank_disc()
|
2007-01-02 12:57:47 +00:00
|
|
|
or you can format a DVD-RW to profile "Restricted Overwrite" (needed once)
|
2008-12-14 10:45:04 +00:00
|
|
|
or an unused BD to default size with spare blocks
|
|
|
|
libburner_format()
|
2010-08-28 11:29:29 +00:00
|
|
|
With the aquired drive you can burn to CD, DVD, BD. See
|
2006-08-30 15:14:41 +00:00
|
|
|
libburner_payload()
|
2010-08-28 11:29:29 +00:00
|
|
|
|
|
|
|
These three functions switch temporarily to a non-fatal signal handler
|
|
|
|
while they are waiting for the drive to become idle again:
|
|
|
|
burn_set_signal_handling("libburner : ", NULL, 0x30)
|
|
|
|
After the waiting loop ended, they check for eventual abort events by
|
|
|
|
burn_is_aborting(0)
|
|
|
|
The 0x30 handler will eventually execute
|
|
|
|
burn_abort()
|
|
|
|
but not wait for the drive to become idle and not call exit().
|
|
|
|
This is needed because the worker threads might block as long as the signal
|
|
|
|
handler has not returned. The 0x0 handler would wait for them to finish.
|
|
|
|
Take this into respect when implementing own signal handlers.
|
|
|
|
|
2006-08-30 15:14:41 +00:00
|
|
|
When everything is done, main() releases the drive and shuts down libburn:
|
|
|
|
burn_drive_release();
|
|
|
|
burn_finish()
|
2010-03-06 13:52:21 +00:00
|
|
|
|
2010-01-14 14:01:13 +00:00
|
|
|
Applications must use 64 bit off_t. E.g. by defining
|
|
|
|
#define _LARGEFILE_SOURCE
|
|
|
|
#define _FILE_OFFSET_BITS 64
|
|
|
|
or take special precautions to interface with the library by 64 bit integers
|
2010-01-14 14:09:30 +00:00
|
|
|
where libburn/libburn.h prescribes off_t.
|
2010-01-14 14:01:13 +00:00
|
|
|
This program gets fed with appropriate settings externally by libburn's
|
|
|
|
autotools generated build system.
|
|
|
|
*/
|
|
|
|
|
2006-08-30 15:14:41 +00:00
|
|
|
|
2006-09-05 19:12:47 +00:00
|
|
|
/** See this for the decisive API specs . libburn.h is The Original */
|
2006-11-01 17:19:37 +00:00
|
|
|
/* For using the installed header file : #include <libburn/libburn.h> */
|
|
|
|
/* This program insists in the own headerfile. */
|
|
|
|
#include "../libburn/libburn.h"
|
2006-08-30 15:14:41 +00:00
|
|
|
|
2010-08-28 11:29:29 +00:00
|
|
|
/* libburn works on Linux systems with kernel 2.4 or 2.6, FreeBSD, Solaris */
|
2006-08-30 15:14:41 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <errno.h>
|
2006-11-16 16:38:23 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2006-08-30 15:14:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** For simplicity i use global variables to represent the drives.
|
|
|
|
Drives are systemwide global, so we do not give away much of good style.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** This list will hold the drives known to libburn. This might be all CD
|
|
|
|
drives of the system and thus might impose severe impact on the system.
|
|
|
|
*/
|
|
|
|
static struct burn_drive_info *drive_list;
|
|
|
|
|
|
|
|
/** If you start a long lasting operation with drive_count > 1 then you are
|
|
|
|
not friendly to the users of other drives on those systems. Beware. */
|
|
|
|
static unsigned int drive_count;
|
|
|
|
|
|
|
|
/** This variable indicates wether the drive is grabbed and must be
|
|
|
|
finally released */
|
|
|
|
static int drive_is_grabbed = 0;
|
|
|
|
|
2007-01-02 12:57:47 +00:00
|
|
|
/** A number and a text describing the type of media in aquired drive */
|
|
|
|
static int current_profile= -1;
|
2006-12-21 20:58:26 +00:00
|
|
|
static char current_profile_name[80]= {""};
|
|
|
|
|
2006-09-11 17:49:42 +00:00
|
|
|
|
2006-08-30 15:14:41 +00:00
|
|
|
/* Some in-advance definitions to allow a more comprehensive ordering
|
|
|
|
of the functions and their explanations in here */
|
|
|
|
int libburner_aquire_by_adr(char *drive_adr);
|
|
|
|
int libburner_aquire_by_driveno(int *drive_no);
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------------------- API gestures ---------------------------- */
|
|
|
|
|
|
|
|
/** You need to aquire a drive before burning. The API offers this as one
|
|
|
|
compact call and alternatively as application controllable gestures of
|
|
|
|
whitelisting, scanning for drives and finally grabbing one of them.
|
|
|
|
|
|
|
|
If you have a persistent address of the drive, then the compact call is
|
2006-09-11 17:49:42 +00:00
|
|
|
to prefer because it only touches one drive. On modern Linux kernels,
|
|
|
|
there should be no fatal disturbance of ongoing burns of other libburn
|
|
|
|
instances with any of our approaches. We use open(O_EXCL) by default.
|
|
|
|
On /dev/hdX it should cooperate with growisofs and some cdrecord variants.
|
|
|
|
On /dev/sgN versus /dev/scdM expect it not to respect other programs.
|
2006-08-30 15:14:41 +00:00
|
|
|
*/
|
|
|
|
int libburner_aquire_drive(char *drive_adr, int *driveno)
|
|
|
|
{
|
2007-01-02 12:57:47 +00:00
|
|
|
int ret;
|
2006-08-30 15:14:41 +00:00
|
|
|
|
|
|
|
if(drive_adr != NULL && drive_adr[0] != 0)
|
|
|
|
ret = libburner_aquire_by_adr(drive_adr);
|
|
|
|
else
|
|
|
|
ret = libburner_aquire_by_driveno(driveno);
|
2009-06-02 16:30:06 +00:00
|
|
|
if (ret <= 0 || *driveno <= 0)
|
2006-12-21 20:58:26 +00:00
|
|
|
return ret;
|
2007-01-02 12:57:47 +00:00
|
|
|
burn_disc_get_profile(drive_list[0].drive, ¤t_profile,
|
|
|
|
current_profile_name);
|
2006-12-21 20:58:26 +00:00
|
|
|
if (current_profile_name[0])
|
|
|
|
printf("Detected media type: %s\n", current_profile_name);
|
|
|
|
return 1;
|
2006-08-30 15:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** If the persistent drive address is known, then this approach is much
|
|
|
|
more un-obtrusive to the systemwide livestock of drives. Only the
|
|
|
|
given drive device will be opened during this procedure.
|
|
|
|
*/
|
|
|
|
int libburner_aquire_by_adr(char *drive_adr)
|
|
|
|
{
|
|
|
|
int ret;
|
2006-11-25 15:43:31 +00:00
|
|
|
char libburn_drive_adr[BURN_DRIVE_ADR_LEN];
|
|
|
|
|
2007-09-24 18:21:32 +00:00
|
|
|
/* Some not-so-harmless drive addresses get blocked in this demo */
|
|
|
|
if (strncmp(drive_adr, "stdio:/dev/fd/", 14) == 0 ||
|
|
|
|
strcmp(drive_adr, "stdio:-") == 0) {
|
|
|
|
fprintf(stderr, "Will not work with pseudo-drive '%s'\n",
|
|
|
|
drive_adr);
|
|
|
|
return 0;
|
2006-11-25 15:43:31 +00:00
|
|
|
}
|
2007-09-24 18:21:32 +00:00
|
|
|
|
|
|
|
/* This tries to resolve links or alternative device files */
|
|
|
|
ret = burn_drive_convert_fs_adr(drive_adr, libburn_drive_adr);
|
|
|
|
if (ret<=0) {
|
|
|
|
fprintf(stderr, "Address does not lead to a CD burner: '%s'\n",
|
|
|
|
drive_adr);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
fprintf(stderr,"Aquiring drive '%s' ...\n", libburn_drive_adr);
|
|
|
|
ret = burn_drive_scan_and_grab(&drive_list, libburn_drive_adr, 1);
|
2006-08-30 15:14:41 +00:00
|
|
|
if (ret <= 0) {
|
|
|
|
fprintf(stderr,"FAILURE with persistent drive address '%s'\n",
|
2006-11-25 15:43:31 +00:00
|
|
|
libburn_drive_adr);
|
2006-08-30 15:14:41 +00:00
|
|
|
} else {
|
2007-09-04 22:51:44 +00:00
|
|
|
fprintf(stderr,"Done\n");
|
2006-08-30 15:14:41 +00:00
|
|
|
drive_is_grabbed = 1;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** This method demonstrates how to use libburn without knowing a persistent
|
2006-09-11 17:49:42 +00:00
|
|
|
drive address in advance. It has to make sure that after assessing the list
|
|
|
|
of available drives, all unwanted drives get closed again. As long as they
|
|
|
|
are open, no other libburn instance can see them. This is an intended
|
|
|
|
locking feature. The application is responsible for giving up the locks
|
|
|
|
by either burn_drive_release() (only after burn_drive_grab() !),
|
|
|
|
burn_drive_info_forget(), burn_drive_info_free(), or burn_finish().
|
2006-08-30 15:14:41 +00:00
|
|
|
@param driveno the index number in libburn's drive list. This will get
|
|
|
|
set to 0 on success and will then be the drive index to
|
|
|
|
use in the further dourse of processing.
|
|
|
|
@return 1 success , <= 0 failure
|
|
|
|
*/
|
|
|
|
int libburner_aquire_by_driveno(int *driveno)
|
|
|
|
{
|
|
|
|
char adr[BURN_DRIVE_ADR_LEN];
|
|
|
|
int ret, i;
|
|
|
|
|
|
|
|
printf("Beginning to scan for devices ...\n");
|
2006-09-10 10:09:17 +00:00
|
|
|
while (!burn_drive_scan(&drive_list, &drive_count))
|
2007-10-07 11:06:37 +00:00
|
|
|
usleep(100002);
|
2006-09-07 18:43:37 +00:00
|
|
|
if (drive_count <= 0 && *driveno >= 0) {
|
2006-08-30 15:14:41 +00:00
|
|
|
printf("FAILED (no drives found)\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2006-09-11 17:49:42 +00:00
|
|
|
printf("Done\n");
|
|
|
|
|
|
|
|
/*
|
|
|
|
Interactive programs may choose the drive number at this moment.
|
|
|
|
|
|
|
|
drive[0] to drive[drive_count-1] are struct burn_drive_info
|
|
|
|
as defined in libburn/libburn.h . This structure is part of API
|
|
|
|
and thus will strive for future compatibility on source level.
|
|
|
|
Have a look at the info offered.
|
|
|
|
Caution: do not take .location for drive address. Always use
|
|
|
|
burn_drive_get_adr() or you might become incompatible
|
|
|
|
in future.
|
|
|
|
Note: bugs with struct burn_drive_info - if any - will not be
|
|
|
|
easy to fix. Please report them but also strive for
|
|
|
|
workarounds on application level.
|
2006-08-30 15:14:41 +00:00
|
|
|
*/
|
|
|
|
printf("\nOverview of accessible drives (%d found) :\n",
|
|
|
|
drive_count);
|
|
|
|
printf("-----------------------------------------------------------------------------\n");
|
|
|
|
for (i = 0; i < drive_count; i++) {
|
|
|
|
if (burn_drive_get_adr(&(drive_list[i]), adr) <=0)
|
|
|
|
strcpy(adr, "-get_adr_failed-");
|
|
|
|
printf("%d --drive '%s' : '%s' '%s'\n",
|
|
|
|
i,adr,drive_list[i].vendor,drive_list[i].product);
|
|
|
|
}
|
2006-09-05 21:17:37 +00:00
|
|
|
printf("-----------------------------------------------------------------------------\n\n");
|
2006-08-30 15:14:41 +00:00
|
|
|
|
2006-09-11 17:49:42 +00:00
|
|
|
/*
|
|
|
|
On multi-drive systems save yourself from sysadmins' revenge.
|
|
|
|
|
|
|
|
Be aware that you hold reserved all available drives at this point.
|
|
|
|
So either make your choice quick enough not to annoy other system
|
|
|
|
users, or set free the drives for a while.
|
|
|
|
|
|
|
|
The tested way of setting free all drives is to shutdown the library
|
|
|
|
and to restart when the choice has been made. The list of selectable
|
|
|
|
drives should also hold persistent drive addresses as obtained
|
|
|
|
above by burn_drive_get_adr(). By such an address one may use
|
|
|
|
burn_drive_scan_and_grab() to finally aquire exactly one drive.
|
|
|
|
|
|
|
|
A not yet tested shortcut should be to call burn_drive_info_free()
|
|
|
|
and to call either burn_drive_scan() or burn_drive_scan_and_grab()
|
|
|
|
before accessing any drives again.
|
|
|
|
|
|
|
|
In both cases you have to be aware that the desired drive might get
|
|
|
|
aquired in the meantime by another user resp. libburn process.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* We already made our choice via command line. (default is 0)
|
|
|
|
So we just have to keep our desired drive and drop all others.
|
|
|
|
No other libburn instance will have a chance to steal our drive.
|
|
|
|
*/
|
2006-08-30 15:14:41 +00:00
|
|
|
if (*driveno < 0) {
|
|
|
|
printf("Pseudo-drive \"-\" given : bus scanning done.\n");
|
2006-09-11 17:49:42 +00:00
|
|
|
return 2; /* the program will end after this */
|
2006-08-30 15:14:41 +00:00
|
|
|
}
|
2006-09-11 17:49:42 +00:00
|
|
|
if (drive_count <= *driveno) {
|
2006-08-30 15:14:41 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"Found only %d drives. Number %d not available.\n",
|
|
|
|
drive_count, *driveno);
|
2006-09-11 17:49:42 +00:00
|
|
|
return 0; /* the program will end after this */
|
2006-08-30 15:14:41 +00:00
|
|
|
}
|
|
|
|
|
2006-09-11 17:49:42 +00:00
|
|
|
/* Drop all drives which we do not want to use */
|
|
|
|
for (i = 0; i < drive_count; i++) {
|
|
|
|
if (i == *driveno) /* the one drive we want to keep */
|
|
|
|
continue;
|
|
|
|
ret = burn_drive_info_forget(&(drive_list[i]),0);
|
|
|
|
if (ret != 1)
|
|
|
|
fprintf(stderr, "Cannot drop drive %d. Please report \"ret=%d\" to libburn-hackers@pykix.org\n",
|
|
|
|
i, ret);
|
|
|
|
else
|
|
|
|
printf("Dropped unwanted drive %d\n",i);
|
2006-08-30 15:14:41 +00:00
|
|
|
}
|
2006-09-11 17:49:42 +00:00
|
|
|
/* Make the one we want ready for blanking or burning */
|
|
|
|
ret= burn_drive_grab(drive_list[*driveno].drive, 1);
|
|
|
|
if (ret != 1)
|
2006-08-30 15:14:41 +00:00
|
|
|
return 0;
|
2006-09-11 17:49:42 +00:00
|
|
|
drive_is_grabbed = 1;
|
|
|
|
return 1;
|
2006-08-30 15:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-29 10:53:58 +00:00
|
|
|
/** Makes a previously used CD-RW or unformatted DVD-RW ready for thorough
|
|
|
|
re-usal.
|
2006-08-30 15:14:41 +00:00
|
|
|
|
|
|
|
To our knowledge it is hardly possible to abort an ongoing blank operation
|
|
|
|
because after start it is entirely handled by the drive.
|
2006-10-03 16:37:08 +00:00
|
|
|
So expect signal handling to wait the normal blanking timespan until it
|
|
|
|
can allow the process to end. External kill -9 will not help the drive.
|
2006-08-30 15:14:41 +00:00
|
|
|
*/
|
|
|
|
int libburner_blank_disc(struct burn_drive *drive, int blank_fast)
|
|
|
|
{
|
|
|
|
enum burn_disc_status disc_state;
|
2006-11-03 06:30:18 +00:00
|
|
|
struct burn_progress p;
|
2007-02-07 16:37:25 +00:00
|
|
|
double percent = 1.0;
|
2006-08-30 15:14:41 +00:00
|
|
|
|
2006-12-24 20:24:43 +00:00
|
|
|
disc_state = burn_disc_get_status(drive);
|
2006-08-30 15:14:41 +00:00
|
|
|
printf(
|
|
|
|
"Drive media status: %d (see libburn/libburn.h BURN_DISC_*)\n",
|
|
|
|
disc_state);
|
2007-02-07 16:37:25 +00:00
|
|
|
if (current_profile == 0x13) {
|
|
|
|
; /* formatted DVD-RW will get blanked to sequential state */
|
|
|
|
} else if (disc_state == BURN_DISC_BLANK) {
|
2006-08-30 15:14:41 +00:00
|
|
|
fprintf(stderr,
|
2006-12-24 20:24:43 +00:00
|
|
|
"IDLE: Blank media detected. Will leave it untouched\n");
|
2006-08-30 15:14:41 +00:00
|
|
|
return 2;
|
|
|
|
} else if (disc_state == BURN_DISC_FULL ||
|
|
|
|
disc_state == BURN_DISC_APPENDABLE) {
|
2007-02-17 08:56:41 +00:00
|
|
|
; /* this is what libburner is willing to blank */
|
2006-08-30 15:14:41 +00:00
|
|
|
} else if (disc_state == BURN_DISC_EMPTY) {
|
|
|
|
fprintf(stderr,"FATAL: No media detected in drive\n");
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
fprintf(stderr,
|
2007-01-02 12:57:47 +00:00
|
|
|
"FATAL: Unsuitable drive and media state\n");
|
2006-08-30 15:14:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(!burn_disc_erasable(drive)) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"FATAL : Media is not of erasable type\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2010-03-06 13:52:21 +00:00
|
|
|
/* Switch to asynchronous signal handling for the time of waiting */
|
2010-03-07 08:15:21 +00:00
|
|
|
burn_set_signal_handling("libburner : ", NULL, 0x30);
|
2010-03-06 13:52:21 +00:00
|
|
|
|
|
|
|
printf("Beginning to %s-blank media.\n", (blank_fast?"fast":"full"));
|
2006-08-30 15:14:41 +00:00
|
|
|
burn_disc_erase(drive, blank_fast);
|
2010-03-06 13:52:21 +00:00
|
|
|
|
2006-11-03 06:30:18 +00:00
|
|
|
sleep(1);
|
|
|
|
while (burn_drive_get_status(drive, &p) != BURN_DRIVE_IDLE) {
|
|
|
|
if(p.sectors>0 && p.sector>=0) /* display 1 to 99 percent */
|
|
|
|
percent = 1.0 + ((double) p.sector+1.0)
|
|
|
|
/ ((double) p.sectors) * 98.0;
|
2007-02-07 16:37:25 +00:00
|
|
|
printf("Blanking ( %.1f%% done )\n", percent);
|
2006-08-30 15:14:41 +00:00
|
|
|
sleep(1);
|
|
|
|
}
|
2010-03-06 13:52:21 +00:00
|
|
|
if (burn_is_aborting(0) > 0)
|
|
|
|
return -1;
|
|
|
|
/* Back to synchronous handling */
|
2010-08-28 11:29:29 +00:00
|
|
|
burn_set_signal_handling("libburner : ", NULL, 0x0);
|
2006-08-30 15:14:41 +00:00
|
|
|
printf("Done\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-06 18:08:04 +00:00
|
|
|
/** Formats unformatted DVD-RW to profile 0013h "Restricted Overwrite"
|
|
|
|
which needs no blanking for re-use but is not capable of multi-session.
|
2007-01-02 12:57:47 +00:00
|
|
|
Expect a behavior similar to blanking with unusual noises from the drive.
|
2008-05-06 18:08:04 +00:00
|
|
|
|
|
|
|
Formats unformatted BD-RE to default size. This will allocate some
|
|
|
|
reserve space, test for bad blocks and make the media ready for writing.
|
|
|
|
Expect a very long run time.
|
2008-12-14 10:45:04 +00:00
|
|
|
|
|
|
|
Formats unformatted blank BD-R to hold a default amount of spare blocks
|
|
|
|
for eventual mishaps during writing. If BD-R get written without being
|
|
|
|
formatted, then they get no such reserve and will burn at full speed.
|
2007-01-02 12:57:47 +00:00
|
|
|
*/
|
2008-12-14 10:45:04 +00:00
|
|
|
int libburner_format(struct burn_drive *drive)
|
2007-01-02 12:57:47 +00:00
|
|
|
{
|
|
|
|
struct burn_progress p;
|
2007-02-07 16:37:25 +00:00
|
|
|
double percent = 1.0;
|
2008-05-06 18:08:04 +00:00
|
|
|
int ret, status, num_formats, format_flag= 0;
|
|
|
|
off_t size = 0;
|
|
|
|
unsigned dummy;
|
2008-12-14 10:45:04 +00:00
|
|
|
enum burn_disc_status disc_state;
|
2007-01-02 12:57:47 +00:00
|
|
|
|
|
|
|
if (current_profile == 0x13) {
|
|
|
|
fprintf(stderr, "IDLE: DVD-RW media is already formatted\n");
|
|
|
|
return 2;
|
2008-12-14 10:45:04 +00:00
|
|
|
} else if (current_profile == 0x41 || current_profile == 0x43) {
|
|
|
|
disc_state = burn_disc_get_status(drive);
|
|
|
|
if (disc_state != BURN_DISC_BLANK && current_profile == 0x41) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"FATAL: BD-R is not blank. Cannot format.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2008-05-06 18:08:04 +00:00
|
|
|
ret = burn_disc_get_formats(drive, &status, &size, &dummy,
|
|
|
|
&num_formats);
|
2008-12-14 10:45:04 +00:00
|
|
|
if (ret > 0 && status != BURN_FORMAT_IS_UNFORMATTED) {
|
2008-05-06 18:08:04 +00:00
|
|
|
fprintf(stderr,
|
2008-12-14 10:45:04 +00:00
|
|
|
"IDLE: BD media is already formatted\n");
|
2008-05-06 18:08:04 +00:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
size = 0; /* does not really matter */
|
|
|
|
format_flag = 3<<1; /* format to default size, no quick */
|
|
|
|
} else if (current_profile == 0x14) { /* sequential DVD-RW */
|
|
|
|
size = 128 * 1024 * 1024;
|
|
|
|
format_flag = 1; /* write initial 128 MiB */
|
|
|
|
} else {
|
2008-12-14 10:45:04 +00:00
|
|
|
fprintf(stderr, "FATAL: Can only format DVD-RW or BD\n");
|
2007-01-02 12:57:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2010-03-07 08:15:21 +00:00
|
|
|
burn_set_signal_handling("libburner : ", NULL, 0x30);
|
2008-05-06 18:08:04 +00:00
|
|
|
|
2007-01-02 12:57:47 +00:00
|
|
|
printf("Beginning to format media.\n");
|
2008-05-06 18:08:04 +00:00
|
|
|
burn_disc_format(drive, size, format_flag);
|
2007-01-13 21:20:56 +00:00
|
|
|
|
2007-01-02 12:57:47 +00:00
|
|
|
sleep(1);
|
|
|
|
while (burn_drive_get_status(drive, &p) != BURN_DRIVE_IDLE) {
|
|
|
|
if(p.sectors>0 && p.sector>=0) /* display 1 to 99 percent */
|
|
|
|
percent = 1.0 + ((double) p.sector+1.0)
|
|
|
|
/ ((double) p.sectors) * 98.0;
|
2007-02-07 16:37:25 +00:00
|
|
|
printf("Formatting ( %.1f%% done )\n", percent);
|
2007-01-02 12:57:47 +00:00
|
|
|
sleep(1);
|
|
|
|
}
|
2010-03-06 13:52:21 +00:00
|
|
|
if (burn_is_aborting(0) > 0)
|
|
|
|
return -1;
|
2010-08-28 11:29:29 +00:00
|
|
|
burn_set_signal_handling("libburner : ", NULL, 0x0);
|
2007-01-02 12:57:47 +00:00
|
|
|
burn_disc_get_profile(drive_list[0].drive, ¤t_profile,
|
|
|
|
current_profile_name);
|
2008-05-06 18:08:04 +00:00
|
|
|
if (current_profile == 0x14 || current_profile == 0x13)
|
|
|
|
printf("Media type now: %4.4xh \"%s\"\n",
|
|
|
|
current_profile, current_profile_name);
|
|
|
|
if (current_profile == 0x14) {
|
2007-01-02 12:57:47 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"FATAL: Failed to change media profile to desired value\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-18 16:59:07 +00:00
|
|
|
/** Brings preformatted track images (ISO 9660, audio, ...) onto media.
|
|
|
|
To make sure a data image is fully readable on any Linux machine, this
|
2007-06-10 08:06:03 +00:00
|
|
|
function adds 300 kiB of padding to the (usualy single) track.
|
2006-10-18 16:59:07 +00:00
|
|
|
Audio tracks get padded to complete their last sector.
|
2007-10-04 20:06:38 +00:00
|
|
|
A fifo of 4 MB is installed between each track and its data source.
|
|
|
|
Each of the 4 MB buffers gets allocated automatically as soon as a track
|
|
|
|
begins to be processed and it gets freed as soon as the track is done.
|
|
|
|
The fifos do not wait for buffer fill but writing starts immediately.
|
2006-08-30 15:14:41 +00:00
|
|
|
|
2006-10-03 16:37:08 +00:00
|
|
|
In case of external signals expect abort handling of an ongoing burn to
|
|
|
|
last up to a minute. Wait the normal burning timespan before any kill -9.
|
2007-02-07 16:37:25 +00:00
|
|
|
|
|
|
|
For simplicity, this function allows memory leaks in case of failure.
|
|
|
|
In apps which do not abort immediately, one should clean up better.
|
2006-08-30 15:14:41 +00:00
|
|
|
*/
|
2006-10-18 16:59:07 +00:00
|
|
|
int libburner_payload(struct burn_drive *drive,
|
|
|
|
char source_adr[][4096], int source_adr_count,
|
2006-11-17 19:51:51 +00:00
|
|
|
int multi, int simulate_burn, int all_tracks_type)
|
2006-08-30 15:14:41 +00:00
|
|
|
{
|
2007-10-03 22:38:39 +00:00
|
|
|
struct burn_source *data_src, *fifo_src[99];
|
2006-08-30 15:14:41 +00:00
|
|
|
struct burn_disc *target_disc;
|
|
|
|
struct burn_session *session;
|
|
|
|
struct burn_write_opts *burn_options;
|
|
|
|
enum burn_disc_status disc_state;
|
2006-10-19 09:39:10 +00:00
|
|
|
struct burn_track *track, *tracklist[99];
|
2006-08-30 15:14:41 +00:00
|
|
|
struct burn_progress progress;
|
|
|
|
time_t start_time;
|
2007-02-07 16:37:25 +00:00
|
|
|
int last_sector = 0, padding = 0, trackno, unpredicted_size = 0, fd;
|
2007-10-03 22:38:39 +00:00
|
|
|
int fifo_chunksize = 2352, fifo_chunks = 1783; /* ~ 4 MB fifo */
|
2006-11-16 16:38:23 +00:00
|
|
|
off_t fixed_size;
|
2007-02-22 09:49:18 +00:00
|
|
|
char *adr, reasons[BURN_REASONS_LEN];
|
2006-11-16 16:38:23 +00:00
|
|
|
struct stat stbuf;
|
2006-10-18 16:59:07 +00:00
|
|
|
|
|
|
|
if (all_tracks_type != BURN_AUDIO) {
|
|
|
|
all_tracks_type = BURN_MODE1;
|
2007-06-10 08:06:03 +00:00
|
|
|
/* a padding of 300 kiB helps to avoid the read-ahead bug */
|
2006-10-18 16:59:07 +00:00
|
|
|
padding = 300*1024;
|
2007-10-03 22:38:39 +00:00
|
|
|
fifo_chunksize = 2048;
|
|
|
|
fifo_chunks = 2048; /* 4 MB fifo */
|
2006-10-18 16:59:07 +00:00
|
|
|
}
|
2006-08-30 15:14:41 +00:00
|
|
|
|
|
|
|
target_disc = burn_disc_create();
|
|
|
|
session = burn_session_create();
|
|
|
|
burn_disc_add_session(target_disc, session, BURN_POS_END);
|
2006-08-31 11:07:28 +00:00
|
|
|
|
2006-10-18 16:59:07 +00:00
|
|
|
for (trackno = 0 ; trackno < source_adr_count; trackno++) {
|
2006-10-19 09:39:10 +00:00
|
|
|
tracklist[trackno] = track = burn_track_create();
|
2006-10-18 16:59:07 +00:00
|
|
|
burn_track_define_data(track, 0, padding, 1, all_tracks_type);
|
2006-08-31 11:07:28 +00:00
|
|
|
|
2007-10-03 22:38:39 +00:00
|
|
|
/* Open file descriptor to source of track data */
|
2006-10-18 16:59:07 +00:00
|
|
|
adr = source_adr[trackno];
|
2006-11-16 16:38:23 +00:00
|
|
|
fixed_size = 0;
|
2006-10-18 16:59:07 +00:00
|
|
|
if (adr[0] == '-' && adr[1] == 0) {
|
2006-11-16 16:38:23 +00:00
|
|
|
fd = 0;
|
|
|
|
} else {
|
|
|
|
fd = open(adr, O_RDONLY);
|
|
|
|
if (fd>=0)
|
|
|
|
if (fstat(fd,&stbuf)!=-1)
|
|
|
|
if((stbuf.st_mode&S_IFMT)==S_IFREG)
|
|
|
|
fixed_size = stbuf.st_size;
|
|
|
|
}
|
|
|
|
if (fixed_size==0)
|
2007-02-07 16:37:25 +00:00
|
|
|
unpredicted_size = 1;
|
2007-10-03 22:38:39 +00:00
|
|
|
|
|
|
|
/* Convert this filedescriptor into a burn_source object */
|
2006-11-16 16:38:23 +00:00
|
|
|
data_src = NULL;
|
|
|
|
if (fd>=0)
|
|
|
|
data_src = burn_fd_source_new(fd, -1, fixed_size);
|
2006-10-18 16:59:07 +00:00
|
|
|
if (data_src == NULL) {
|
2006-08-30 15:14:41 +00:00
|
|
|
fprintf(stderr,
|
2006-10-18 16:59:07 +00:00
|
|
|
"FATAL: Could not open data source '%s'.\n",adr);
|
2006-08-30 15:14:41 +00:00
|
|
|
if(errno!=0)
|
|
|
|
fprintf(stderr,"(Most recent system error: %s )\n",
|
|
|
|
strerror(errno));
|
|
|
|
return 0;
|
2006-10-18 16:59:07 +00:00
|
|
|
}
|
2007-10-03 22:38:39 +00:00
|
|
|
/* Install a fifo object on top of that data source object */
|
|
|
|
fifo_src[trackno] = burn_fifo_source_new(data_src,
|
|
|
|
fifo_chunksize, fifo_chunks, 0);
|
|
|
|
if (fifo_src[trackno] == NULL) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"FATAL: Could not create fifo object of 4 MB\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Use the fifo object as data source for the track */
|
|
|
|
if (burn_track_set_source(track, fifo_src[trackno])
|
|
|
|
!= BURN_SOURCE_OK) {
|
2008-02-21 20:11:20 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"FATAL: Cannot attach source object to track object\n");
|
2006-08-30 15:14:41 +00:00
|
|
|
return 0;
|
2006-10-18 16:59:07 +00:00
|
|
|
}
|
2006-08-30 15:14:41 +00:00
|
|
|
|
2006-10-18 16:59:07 +00:00
|
|
|
burn_session_add_track(session, track, BURN_POS_END);
|
2006-11-25 16:05:23 +00:00
|
|
|
printf("Track %d : source is '%s'\n", trackno+1, adr);
|
2007-10-03 22:38:39 +00:00
|
|
|
|
|
|
|
/* Give up local reference to the data burn_source object */
|
2006-10-18 16:59:07 +00:00
|
|
|
burn_source_free(data_src);
|
2007-10-03 22:38:39 +00:00
|
|
|
|
2008-12-29 10:53:58 +00:00
|
|
|
} /* trackno loop end */
|
2006-10-18 16:59:07 +00:00
|
|
|
|
2006-08-30 15:14:41 +00:00
|
|
|
/* Evaluate drive and media */
|
2006-12-24 20:24:43 +00:00
|
|
|
disc_state = burn_disc_get_status(drive);
|
2007-02-07 16:37:25 +00:00
|
|
|
if (disc_state != BURN_DISC_BLANK &&
|
|
|
|
disc_state != BURN_DISC_APPENDABLE) {
|
2006-11-17 19:51:51 +00:00
|
|
|
if (disc_state == BURN_DISC_FULL) {
|
|
|
|
fprintf(stderr, "FATAL: Closed media with data detected. Need blank or appendable media.\n");
|
2006-08-30 15:14:41 +00:00
|
|
|
if (burn_disc_erasable(drive))
|
|
|
|
fprintf(stderr, "HINT: Try --blank_fast\n\n");
|
|
|
|
} else if (disc_state == BURN_DISC_EMPTY)
|
|
|
|
fprintf(stderr,"FATAL: No media detected in drive\n");
|
|
|
|
else
|
|
|
|
fprintf(stderr,
|
2006-11-16 16:38:23 +00:00
|
|
|
"FATAL: Cannot recognize state of drive and media\n");
|
2006-08-30 15:14:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
burn_options = burn_write_opts_new(drive);
|
|
|
|
burn_write_opts_set_perform_opc(burn_options, 0);
|
2006-11-17 19:51:51 +00:00
|
|
|
burn_write_opts_set_multi(burn_options, !!multi);
|
2006-08-30 15:14:41 +00:00
|
|
|
if(simulate_burn)
|
|
|
|
printf("\n*** Will TRY to SIMULATE burning ***\n\n");
|
|
|
|
burn_write_opts_set_simulate(burn_options, simulate_burn);
|
|
|
|
burn_drive_set_speed(drive, 0, 0);
|
|
|
|
burn_write_opts_set_underrun_proof(burn_options, 1);
|
2007-02-07 16:37:25 +00:00
|
|
|
if (burn_write_opts_auto_write_type(burn_options, target_disc,
|
|
|
|
reasons, 0) == BURN_WRITE_NONE) {
|
|
|
|
fprintf(stderr, "FATAL: Failed to find a suitable write mode with this media.\n");
|
|
|
|
fprintf(stderr, "Reasons given:\n%s\n", reasons);
|
|
|
|
return 0;
|
|
|
|
}
|
2010-03-07 08:15:21 +00:00
|
|
|
burn_set_signal_handling("libburner : ", NULL, 0x30);
|
2006-08-30 15:14:41 +00:00
|
|
|
|
|
|
|
printf("Burning starts. With e.g. 4x media expect up to a minute of zero progress.\n");
|
|
|
|
start_time = time(0);
|
|
|
|
burn_disc_write(burn_options, target_disc);
|
|
|
|
|
|
|
|
burn_write_opts_free(burn_options);
|
2006-09-10 10:09:17 +00:00
|
|
|
while (burn_drive_get_status(drive, NULL) == BURN_DRIVE_SPAWNING)
|
2007-10-07 11:06:37 +00:00
|
|
|
usleep(100002);
|
2006-10-18 16:59:07 +00:00
|
|
|
while (burn_drive_get_status(drive, &progress) != BURN_DRIVE_IDLE) {
|
2007-10-04 20:06:38 +00:00
|
|
|
if (progress.sectors <= 0 ||
|
|
|
|
(progress.sector >= progress.sectors - 1 &&
|
|
|
|
!unpredicted_size) ||
|
|
|
|
(unpredicted_size && progress.sector == last_sector))
|
2006-08-30 15:14:41 +00:00
|
|
|
printf(
|
2007-10-03 22:38:39 +00:00
|
|
|
"Thank you for being patient since %d seconds.",
|
2006-08-30 15:14:41 +00:00
|
|
|
(int) (time(0) - start_time));
|
2007-02-07 16:37:25 +00:00
|
|
|
else if(unpredicted_size)
|
2007-10-03 22:38:39 +00:00
|
|
|
printf("Track %d : sector %d", progress.track+1,
|
2006-11-16 16:38:23 +00:00
|
|
|
progress.sector);
|
2006-08-30 15:14:41 +00:00
|
|
|
else
|
2007-10-03 22:38:39 +00:00
|
|
|
printf("Track %d : sector %d of %d",progress.track+1,
|
2006-08-30 15:14:41 +00:00
|
|
|
progress.sector, progress.sectors);
|
|
|
|
last_sector = progress.sector;
|
2007-10-03 22:38:39 +00:00
|
|
|
if (progress.track >= 0 && progress.track < source_adr_count) {
|
|
|
|
int size, free_bytes, ret;
|
2007-10-04 20:06:38 +00:00
|
|
|
char *status_text;
|
2007-10-03 22:38:39 +00:00
|
|
|
|
|
|
|
ret = burn_fifo_inquire_status(
|
2007-10-04 20:06:38 +00:00
|
|
|
fifo_src[progress.track], &size, &free_bytes,
|
|
|
|
&status_text);
|
2007-10-07 11:06:37 +00:00
|
|
|
if (ret >= 0 )
|
2007-10-04 20:06:38 +00:00
|
|
|
printf(" [fifo %s, %2d%% fill]", status_text,
|
2007-10-03 22:38:39 +00:00
|
|
|
(int) (100.0 - 100.0 *
|
|
|
|
((double) free_bytes) /
|
|
|
|
(double) size));
|
|
|
|
}
|
|
|
|
printf("\n");
|
2006-08-30 15:14:41 +00:00
|
|
|
sleep(1);
|
|
|
|
}
|
|
|
|
printf("\n");
|
2006-10-19 09:39:10 +00:00
|
|
|
|
2007-10-03 22:38:39 +00:00
|
|
|
for (trackno = 0 ; trackno < source_adr_count; trackno++) {
|
|
|
|
burn_source_free(fifo_src[trackno]);
|
2006-10-19 09:39:10 +00:00
|
|
|
burn_track_free(tracklist[trackno]);
|
2007-10-03 22:38:39 +00:00
|
|
|
}
|
2006-08-30 15:14:41 +00:00
|
|
|
burn_session_free(session);
|
|
|
|
burn_disc_free(target_disc);
|
2010-03-06 13:52:21 +00:00
|
|
|
if (burn_is_aborting(0) > 0)
|
|
|
|
return -1;
|
2007-01-13 21:20:56 +00:00
|
|
|
if (multi && current_profile != 0x1a && current_profile != 0x13 &&
|
2008-05-06 18:08:04 +00:00
|
|
|
current_profile != 0x12 && current_profile != 0x43)
|
|
|
|
/* not with DVD+RW, formatted DVD-RW, DVD-RAM, BD-RE */
|
2006-11-17 19:51:51 +00:00
|
|
|
printf("NOTE: Media left appendable.\n");
|
|
|
|
if (simulate_burn)
|
2006-08-30 15:14:41 +00:00
|
|
|
printf("\n*** Did TRY to SIMULATE burning ***\n\n");
|
2006-11-25 16:05:23 +00:00
|
|
|
return 1;
|
2006-08-30 15:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-17 19:51:51 +00:00
|
|
|
/** The setup parameters of libburner */
|
2006-11-16 16:38:23 +00:00
|
|
|
static char drive_adr[BURN_DRIVE_ADR_LEN] = {""};
|
|
|
|
static int driveno = 0;
|
|
|
|
static int do_blank = 0;
|
2006-10-18 16:59:07 +00:00
|
|
|
static char source_adr[99][4096];
|
2006-11-16 16:38:23 +00:00
|
|
|
static int source_adr_count = 0;
|
2006-11-17 19:51:51 +00:00
|
|
|
static int do_multi = 0;
|
2006-10-18 16:59:07 +00:00
|
|
|
static int simulate_burn = 0;
|
|
|
|
static int all_tracks_type = BURN_MODE1;
|
|
|
|
|
|
|
|
|
|
|
|
/** Converts command line arguments into above setup parameters.
|
2006-08-30 15:14:41 +00:00
|
|
|
*/
|
2006-10-18 16:59:07 +00:00
|
|
|
int libburner_setup(int argc, char **argv)
|
2006-08-30 15:14:41 +00:00
|
|
|
{
|
2006-10-18 16:59:07 +00:00
|
|
|
int i, insuffient_parameters = 0, print_help = 0;
|
2006-08-30 15:14:41 +00:00
|
|
|
|
|
|
|
for (i = 1; i < argc; ++i) {
|
2006-10-18 16:59:07 +00:00
|
|
|
if (!strcmp(argv[i], "--audio")) {
|
|
|
|
all_tracks_type = BURN_AUDIO;
|
|
|
|
|
|
|
|
} else if (!strcmp(argv[i], "--blank_fast")) {
|
|
|
|
do_blank = 1;
|
2006-08-30 15:14:41 +00:00
|
|
|
|
|
|
|
} else if (!strcmp(argv[i], "--blank_full")) {
|
2006-10-18 16:59:07 +00:00
|
|
|
do_blank = 2;
|
2006-08-30 15:14:41 +00:00
|
|
|
|
|
|
|
} else if (!strcmp(argv[i], "--burn_for_real")) {
|
|
|
|
simulate_burn = 0;
|
|
|
|
|
|
|
|
} else if (!strcmp(argv[i], "--drive")) {
|
|
|
|
++i;
|
|
|
|
if (i >= argc) {
|
|
|
|
fprintf(stderr,"--drive requires an argument\n");
|
|
|
|
return 1;
|
|
|
|
} else if (strcmp(argv[i], "-") == 0) {
|
|
|
|
drive_adr[0] = 0;
|
2006-10-18 16:59:07 +00:00
|
|
|
driveno = -1;
|
2006-08-30 15:14:41 +00:00
|
|
|
} else if (isdigit(argv[i][0])) {
|
|
|
|
drive_adr[0] = 0;
|
2006-10-18 16:59:07 +00:00
|
|
|
driveno = atoi(argv[i]);
|
2006-08-30 15:14:41 +00:00
|
|
|
} else {
|
|
|
|
if(strlen(argv[i]) >= BURN_DRIVE_ADR_LEN) {
|
|
|
|
fprintf(stderr,"--drive address too long (max. %d)\n",
|
|
|
|
BURN_DRIVE_ADR_LEN-1);
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
strcpy(drive_adr, argv[i]);
|
|
|
|
}
|
2008-12-14 10:45:04 +00:00
|
|
|
} else if ((!strcmp(argv[i], "--format_overwrite")) ||
|
|
|
|
(!strcmp(argv[i], "--format"))) {
|
2007-01-02 12:57:47 +00:00
|
|
|
do_blank = 101;
|
|
|
|
|
2006-11-17 19:51:51 +00:00
|
|
|
} else if (!strcmp(argv[i], "--multi")) {
|
|
|
|
do_multi = 1;
|
|
|
|
|
2006-11-16 16:38:23 +00:00
|
|
|
} else if (!strcmp(argv[i], "--stdin_size")) { /* obsoleted */
|
|
|
|
i++;
|
|
|
|
|
2006-08-30 15:14:41 +00:00
|
|
|
} else if (!strcmp(argv[i], "--try_to_simulate")) {
|
|
|
|
simulate_burn = 1;
|
|
|
|
|
|
|
|
} else if (!strcmp(argv[i], "--help")) {
|
|
|
|
print_help = 1;
|
|
|
|
|
2006-10-18 16:59:07 +00:00
|
|
|
} else if (!strncmp(argv[i], "--",2)) {
|
|
|
|
fprintf(stderr, "Unidentified option: %s\n", argv[i]);
|
|
|
|
return 7;
|
2006-08-30 15:14:41 +00:00
|
|
|
} else {
|
|
|
|
if(strlen(argv[i]) >= 4096) {
|
|
|
|
fprintf(stderr, "Source address too long (max. %d)\n", 4096-1);
|
|
|
|
return 5;
|
|
|
|
}
|
2006-10-18 16:59:07 +00:00
|
|
|
if(source_adr_count >= 99) {
|
|
|
|
fprintf(stderr, "Too many tracks (max. 99)\n");
|
|
|
|
return 6;
|
|
|
|
}
|
|
|
|
strcpy(source_adr[source_adr_count], argv[i]);
|
|
|
|
source_adr_count++;
|
2006-08-30 15:14:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
insuffient_parameters = 1;
|
2006-10-18 16:59:07 +00:00
|
|
|
if (driveno < 0)
|
2006-08-30 15:14:41 +00:00
|
|
|
insuffient_parameters = 0;
|
2006-10-18 16:59:07 +00:00
|
|
|
if (source_adr_count > 0)
|
2006-08-30 15:14:41 +00:00
|
|
|
insuffient_parameters = 0;
|
2006-10-18 16:59:07 +00:00
|
|
|
if (do_blank)
|
2006-08-30 15:14:41 +00:00
|
|
|
insuffient_parameters = 0;
|
|
|
|
if (print_help || insuffient_parameters ) {
|
|
|
|
printf("Usage: %s\n", argv[0]);
|
2006-11-16 16:38:23 +00:00
|
|
|
printf(" [--drive <address>|<driveno>|\"-\"] [--audio]\n");
|
2008-12-14 10:45:04 +00:00
|
|
|
printf(" [--blank_fast|--blank_full|--format] [--try_to_simulate]\n");
|
2006-11-17 19:51:51 +00:00
|
|
|
printf(" [--multi] [<one or more imagefiles>|\"-\"]\n");
|
2006-08-30 15:14:41 +00:00
|
|
|
printf("Examples\n");
|
|
|
|
printf("A bus scan (needs rw-permissions to see a drive):\n");
|
|
|
|
printf(" %s --drive -\n",argv[0]);
|
2006-11-17 19:51:51 +00:00
|
|
|
printf("Burn a file to drive chosen by number, leave appendable:\n");
|
|
|
|
printf(" %s --drive 0 --multi my_image_file\n", argv[0]);
|
|
|
|
printf("Burn a file to drive chosen by persistent address, close:\n");
|
2006-10-18 16:59:07 +00:00
|
|
|
printf(" %s --drive /dev/hdc my_image_file\n", argv[0]);
|
2006-08-30 15:14:41 +00:00
|
|
|
printf("Blank a used CD-RW (is combinable with burning in one run):\n");
|
2006-10-18 16:59:07 +00:00
|
|
|
printf(" %s --drive /dev/hdc --blank_fast\n",argv[0]);
|
2007-02-07 17:49:52 +00:00
|
|
|
printf("Blank a used DVD-RW (is combinable with burning in one run):\n");
|
|
|
|
printf(" %s --drive /dev/hdc --blank_full\n",argv[0]);
|
2008-12-14 10:45:04 +00:00
|
|
|
printf("Format a DVD-RW, BD-RE or BD-R:\n");
|
|
|
|
printf(" %s --drive /dev/hdc --format\n", argv[0]);
|
2007-02-07 17:49:52 +00:00
|
|
|
printf("Burn two audio tracks (to CD only):\n");
|
2006-10-18 16:59:07 +00:00
|
|
|
printf(" lame --decode -t /path/to/track1.mp3 track1.cd\n");
|
|
|
|
printf(" test/dewav /path/to/track2.wav -o track2.cd\n");
|
|
|
|
printf(" %s --drive /dev/hdc --audio track1.cd track2.cd\n", argv[0]);
|
2006-11-17 19:51:51 +00:00
|
|
|
printf("Burn a compressed afio archive on-the-fly:\n");
|
2006-08-30 15:14:41 +00:00
|
|
|
printf(" ( cd my_directory ; find . -print | afio -oZ - ) | \\\n");
|
2006-11-16 16:38:23 +00:00
|
|
|
printf(" %s --drive /dev/hdc -\n", argv[0]);
|
2006-12-24 20:24:43 +00:00
|
|
|
printf("To be read from *not mounted* media via: afio -tvZ /dev/hdc\n");
|
2006-08-30 15:14:41 +00:00
|
|
|
if (insuffient_parameters)
|
|
|
|
return 6;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2006-10-18 16:59:07 +00:00
|
|
|
int ret;
|
2006-08-30 15:14:41 +00:00
|
|
|
|
2010-04-04 18:13:45 +00:00
|
|
|
/* A warning to programmers who start their own projekt from here. */
|
|
|
|
if (sizeof(off_t) != 8) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"\nFATAL: Compile time misconfiguration. off_t is not 64 bit.\n\n");
|
|
|
|
exit(39);
|
|
|
|
}
|
|
|
|
|
2006-10-18 16:59:07 +00:00
|
|
|
ret = libburner_setup(argc, argv);
|
2006-08-30 15:14:41 +00:00
|
|
|
if (ret)
|
|
|
|
exit(ret);
|
|
|
|
|
2007-08-11 07:51:04 +00:00
|
|
|
printf("Initializing libburnia-project.org ...\n");
|
2006-08-30 15:14:41 +00:00
|
|
|
if (burn_initialize())
|
2006-09-11 17:49:42 +00:00
|
|
|
printf("Done\n");
|
2006-08-30 15:14:41 +00:00
|
|
|
else {
|
|
|
|
printf("FAILED\n");
|
2006-10-18 16:59:07 +00:00
|
|
|
fprintf(stderr,"\nFATAL: Failed to initialize.\n");
|
2006-08-30 15:14:41 +00:00
|
|
|
exit(33);
|
|
|
|
}
|
|
|
|
|
2006-10-18 16:59:07 +00:00
|
|
|
/* Print messages of severity SORRY or more directly to stderr */
|
|
|
|
burn_msgs_set_severities("NEVER", "SORRY", "libburner : ");
|
|
|
|
|
2010-03-06 13:52:21 +00:00
|
|
|
/* Activate the synchronous signal handler which eventually will try to
|
2006-10-03 16:37:08 +00:00
|
|
|
properly shutdown drive and library on aborting events. */
|
2010-08-28 11:29:29 +00:00
|
|
|
burn_set_signal_handling("libburner : ", NULL, 0x0);
|
2006-10-03 16:37:08 +00:00
|
|
|
|
2006-08-30 15:14:41 +00:00
|
|
|
/** Note: driveno might change its value in this call */
|
|
|
|
ret = libburner_aquire_drive(drive_adr, &driveno);
|
|
|
|
if (ret<=0) {
|
|
|
|
fprintf(stderr,"\nFATAL: Failed to aquire drive.\n");
|
|
|
|
{ ret = 34; goto finish_libburn; }
|
|
|
|
}
|
|
|
|
if (ret == 2)
|
|
|
|
{ ret = 0; goto release_drive; }
|
|
|
|
if (do_blank) {
|
2007-01-02 12:57:47 +00:00
|
|
|
if (do_blank > 100)
|
2008-12-14 10:45:04 +00:00
|
|
|
ret = libburner_format(drive_list[driveno].drive);
|
2007-01-02 12:57:47 +00:00
|
|
|
else
|
|
|
|
ret = libburner_blank_disc(drive_list[driveno].drive,
|
|
|
|
do_blank == 1);
|
2006-08-30 15:14:41 +00:00
|
|
|
if (ret<=0)
|
|
|
|
{ ret = 36; goto release_drive; }
|
|
|
|
}
|
2006-10-18 16:59:07 +00:00
|
|
|
if (source_adr_count > 0) {
|
|
|
|
ret = libburner_payload(drive_list[driveno].drive,
|
2006-11-16 16:38:23 +00:00
|
|
|
source_adr, source_adr_count,
|
2006-11-17 19:51:51 +00:00
|
|
|
do_multi, simulate_burn, all_tracks_type);
|
2006-08-30 15:14:41 +00:00
|
|
|
if (ret<=0)
|
|
|
|
{ ret = 38; goto release_drive; }
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
release_drive:;
|
|
|
|
if (drive_is_grabbed)
|
|
|
|
burn_drive_release(drive_list[driveno].drive, 0);
|
|
|
|
|
|
|
|
finish_libburn:;
|
2010-03-06 13:52:21 +00:00
|
|
|
if (burn_is_aborting(0) > 0) {
|
|
|
|
burn_abort(4400, burn_abort_pacifier, "libburner : ");
|
|
|
|
fprintf(stderr,"\nlibburner run aborted\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2006-08-30 15:14:41 +00:00
|
|
|
/* This app does not bother to know about exact scan state.
|
|
|
|
Better to accept a memory leak here. We are done anyway. */
|
|
|
|
/* burn_drive_info_free(drive_list); */
|
|
|
|
burn_finish();
|
2006-10-18 16:59:07 +00:00
|
|
|
exit(ret);
|
2006-08-30 15:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* License and copyright aspects:
|
|
|
|
|
2006-09-02 20:29:58 +00:00
|
|
|
This all is provided under GPL.
|
|
|
|
Read. Try. Think. Play. Write yourself some code. Be free of my copyright.
|
2006-08-30 15:14:41 +00:00
|
|
|
|
2006-09-02 20:29:58 +00:00
|
|
|
Be also invited to study the code of cdrskin/cdrskin.c et al.
|
2006-08-30 15:14:41 +00:00
|
|
|
|
2006-09-02 20:29:58 +00:00
|
|
|
History:
|
|
|
|
libburner is a compilation of my own contributions to test/burniso.c and
|
|
|
|
fresh code which replaced the remaining parts under copyright of
|
|
|
|
Derek Foreman.
|
|
|
|
My respect and my thanks to Derek for providing me a start back in 2005.
|
|
|
|
|
2006-08-30 15:14:41 +00:00
|
|
|
*/
|
|
|
|
|