2006-08-15 20:37:04 +00:00
|
|
|
/* -*- indent-tabs-mode: t; tab-width: 8; c-basic-offset: 8; -*- */
|
|
|
|
|
|
|
|
#include "libburn.h"
|
|
|
|
#include "transport.h"
|
|
|
|
#include "drive.h"
|
|
|
|
#include "write.h"
|
|
|
|
#include "options.h"
|
|
|
|
#include "async.h"
|
2006-10-07 12:29:22 +00:00
|
|
|
#include "init.h"
|
2006-08-15 20:37:04 +00:00
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2006-10-07 06:23:31 +00:00
|
|
|
/*
|
|
|
|
#include <a ssert.h>
|
|
|
|
*/
|
|
|
|
#include "libdax_msgs.h"
|
|
|
|
extern struct libdax_msgs *libdax_messenger;
|
|
|
|
|
2006-08-15 20:37:04 +00:00
|
|
|
#define SCAN_GOING() (workers && !workers->drive)
|
|
|
|
|
|
|
|
typedef void *(*WorkerFunc) (void *);
|
|
|
|
|
|
|
|
struct scan_opts
|
|
|
|
{
|
|
|
|
struct burn_drive_info **drives;
|
|
|
|
unsigned int *n_drives;
|
|
|
|
|
|
|
|
int done;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct erase_opts
|
|
|
|
{
|
|
|
|
struct burn_drive *drive;
|
|
|
|
int fast;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct write_opts
|
|
|
|
{
|
|
|
|
struct burn_drive *drive;
|
|
|
|
struct burn_write_opts *opts;
|
|
|
|
struct burn_disc *disc;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct w_list
|
|
|
|
{
|
|
|
|
struct burn_drive *drive;
|
|
|
|
pthread_t thread;
|
|
|
|
|
|
|
|
struct w_list *next;
|
|
|
|
|
|
|
|
union w_list_data
|
|
|
|
{
|
|
|
|
struct scan_opts scan;
|
|
|
|
struct erase_opts erase;
|
|
|
|
struct write_opts write;
|
|
|
|
} u;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct w_list *workers;
|
|
|
|
|
|
|
|
static struct w_list *find_worker(struct burn_drive *d)
|
|
|
|
{
|
|
|
|
struct w_list *a;
|
|
|
|
|
|
|
|
for (a = workers; a; a = a->next)
|
|
|
|
if (a->drive == d)
|
|
|
|
return a;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void add_worker(struct burn_drive *d, WorkerFunc f, void *data)
|
|
|
|
{
|
|
|
|
struct w_list *a;
|
|
|
|
struct w_list *tmp;
|
|
|
|
|
|
|
|
a = malloc(sizeof(struct w_list));
|
|
|
|
a->drive = d;
|
|
|
|
a->u = *(union w_list_data *)data;
|
|
|
|
|
|
|
|
/* insert at front of the list */
|
|
|
|
a->next = workers;
|
|
|
|
tmp = workers;
|
|
|
|
workers = a;
|
|
|
|
|
|
|
|
if (d)
|
|
|
|
d->busy = BURN_DRIVE_SPAWNING;
|
|
|
|
|
|
|
|
if (pthread_create(&a->thread, NULL, f, a)) {
|
|
|
|
free(a);
|
|
|
|
workers = tmp;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void remove_worker(pthread_t th)
|
|
|
|
{
|
|
|
|
struct w_list *a, *l = NULL;
|
|
|
|
|
|
|
|
for (a = workers; a; l = a, a = a->next)
|
|
|
|
if (a->thread == th) {
|
|
|
|
if (l)
|
|
|
|
l->next = a->next;
|
|
|
|
else
|
|
|
|
workers = a->next;
|
|
|
|
free(a);
|
|
|
|
break;
|
|
|
|
}
|
2006-10-07 06:23:31 +00:00
|
|
|
|
|
|
|
/* ts A61006 */
|
|
|
|
/* a ssert(a != NULL);/ * wasn't found.. this should not be possible */
|
|
|
|
if (a == NULL)
|
|
|
|
libdax_msgs_submit(libdax_messenger, -1, 0x00020101,
|
|
|
|
LIBDAX_MSGS_SEV_WARNING, LIBDAX_MSGS_PRIO_HIGH,
|
|
|
|
"remove_worker() cannot find given worker item", 0, 0);
|
2006-08-15 20:37:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void *scan_worker_func(struct w_list *w)
|
|
|
|
{
|
|
|
|
burn_drive_scan_sync(w->u.scan.drives, w->u.scan.n_drives);
|
|
|
|
w->u.scan.done = 1;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int burn_drive_scan(struct burn_drive_info *drives[], unsigned int *n_drives)
|
|
|
|
{
|
|
|
|
struct scan_opts o;
|
|
|
|
int ret = 0;
|
|
|
|
|
2006-10-07 14:19:32 +00:00
|
|
|
/* ts A61006 : moved up from burn_drive_scan_sync , former Assert */
|
2006-10-07 12:29:22 +00:00
|
|
|
if (!burn_running) {
|
|
|
|
libdax_msgs_submit(libdax_messenger, -1, 0x00020109,
|
|
|
|
LIBDAX_MSGS_SEV_FATAL, LIBDAX_MSGS_PRIO_HIGH,
|
2006-10-07 13:24:12 +00:00
|
|
|
"Library not running (on attempt to scan)", 0, 0);
|
2006-10-07 12:29:22 +00:00
|
|
|
*drives = NULL;
|
|
|
|
*n_drives = 0;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-08-15 20:37:04 +00:00
|
|
|
/* cant be anything working! */
|
2006-10-07 06:23:31 +00:00
|
|
|
|
|
|
|
/* ts A61006 */
|
|
|
|
/* a ssert(!(workers && workers->drive)); */
|
|
|
|
if (workers != NULL && workers->drive != NULL) {
|
2006-10-07 12:29:22 +00:00
|
|
|
drive_is_active:;
|
|
|
|
libdax_msgs_submit(libdax_messenger, -1, 0x00020102,
|
2006-10-07 06:23:31 +00:00
|
|
|
LIBDAX_MSGS_SEV_SORRY, LIBDAX_MSGS_PRIO_HIGH,
|
|
|
|
"A drive operation is still going on (want to scan)",
|
|
|
|
0, 0);
|
2006-10-07 12:29:22 +00:00
|
|
|
*drives = NULL;
|
|
|
|
*n_drives = 0;
|
2006-10-07 06:23:31 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2006-08-15 20:37:04 +00:00
|
|
|
|
|
|
|
if (!workers) {
|
|
|
|
/* start it */
|
2006-10-07 12:29:22 +00:00
|
|
|
|
|
|
|
/* ts A61007 : test moved up from burn_drive_scan_sync()
|
|
|
|
was burn_wait_all() */
|
|
|
|
if (!burn_drives_are_clear())
|
|
|
|
goto drive_is_active;
|
|
|
|
*drives = NULL;
|
|
|
|
*n_drives = 0;
|
|
|
|
|
2006-08-15 20:37:04 +00:00
|
|
|
o.drives = drives;
|
|
|
|
o.n_drives = n_drives;
|
|
|
|
o.done = 0;
|
|
|
|
add_worker(NULL, (WorkerFunc) scan_worker_func, &o);
|
|
|
|
} else if (workers->u.scan.done) {
|
|
|
|
/* its done */
|
|
|
|
ret = workers->u.scan.done;
|
|
|
|
remove_worker(workers->thread);
|
2006-10-07 06:23:31 +00:00
|
|
|
|
|
|
|
/* ts A61006 */
|
|
|
|
/* a ssert(workers == NULL); */
|
2006-10-07 12:29:22 +00:00
|
|
|
if (workers != NULL) {
|
2006-10-07 06:23:31 +00:00
|
|
|
libdax_msgs_submit(libdax_messenger, -1, 0x00020101,
|
|
|
|
LIBDAX_MSGS_SEV_WARNING, LIBDAX_MSGS_PRIO_HIGH,
|
|
|
|
"After scan a drive operation is still going on",
|
|
|
|
0, 0);
|
2006-10-07 12:29:22 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2006-10-07 06:23:31 +00:00
|
|
|
|
2006-08-15 20:37:04 +00:00
|
|
|
} else {
|
|
|
|
/* still going */
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *erase_worker_func(struct w_list *w)
|
|
|
|
{
|
|
|
|
burn_disc_erase_sync(w->u.erase.drive, w->u.erase.fast);
|
|
|
|
remove_worker(pthread_self());
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_disc_erase(struct burn_drive *drive, int fast)
|
|
|
|
{
|
|
|
|
struct erase_opts o;
|
|
|
|
|
2006-10-07 06:23:31 +00:00
|
|
|
/* ts A61006 */
|
|
|
|
/* a ssert(drive); */
|
|
|
|
/* a ssert(!SCAN_GOING()); */
|
|
|
|
/* a ssert(!find_worker(drive)); */
|
|
|
|
if((drive == NULL)) {
|
|
|
|
libdax_msgs_submit(libdax_messenger, drive->global_index,
|
|
|
|
0x00020104,
|
|
|
|
LIBDAX_MSGS_SEV_SORRY, LIBDAX_MSGS_PRIO_HIGH,
|
|
|
|
"NULL pointer caught in burn_disc_erase", 0, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ((SCAN_GOING()) || find_worker(drive)) {
|
|
|
|
libdax_msgs_submit(libdax_messenger, drive->global_index,
|
|
|
|
0x00020102,
|
|
|
|
LIBDAX_MSGS_SEV_SORRY, LIBDAX_MSGS_PRIO_HIGH,
|
|
|
|
"A drive operation is still going on (want to erase)",
|
|
|
|
0, 0);
|
|
|
|
return;
|
|
|
|
}
|
2006-08-15 20:37:04 +00:00
|
|
|
|
|
|
|
o.drive = drive;
|
|
|
|
o.fast = fast;
|
|
|
|
add_worker(drive, (WorkerFunc) erase_worker_func, &o);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *write_disc_worker_func(struct w_list *w)
|
|
|
|
{
|
|
|
|
burn_disc_write_sync(w->u.write.opts, w->u.write.disc);
|
|
|
|
|
|
|
|
/* the options are refcounted, free out ref count which we added below
|
|
|
|
*/
|
|
|
|
burn_write_opts_free(w->u.write.opts);
|
|
|
|
|
|
|
|
remove_worker(pthread_self());
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_disc_write(struct burn_write_opts *opts, struct burn_disc *disc)
|
|
|
|
{
|
|
|
|
struct write_opts o;
|
|
|
|
|
2006-10-07 06:23:31 +00:00
|
|
|
/* ts A61006 */
|
|
|
|
/* a ssert(!SCAN_GOING()); */
|
|
|
|
/* a ssert(!find_worker(opts->drive)); */
|
|
|
|
if ((SCAN_GOING()) || find_worker(opts->drive)) {
|
|
|
|
libdax_msgs_submit(libdax_messenger, opts->drive->global_index,
|
|
|
|
0x00020102,
|
|
|
|
LIBDAX_MSGS_SEV_SORRY, LIBDAX_MSGS_PRIO_HIGH,
|
|
|
|
"A drive operation is still going on (want to write)",
|
|
|
|
0, 0);
|
|
|
|
return;
|
|
|
|
}
|
2006-10-07 17:51:07 +00:00
|
|
|
/* ts A61007 : obsolete Assert in spc_select_write_params() */
|
|
|
|
if (!opts->drive->mdata->valid) {
|
|
|
|
libdax_msgs_submit(libdax_messenger,
|
|
|
|
opts->drive->global_index, 0x00020113,
|
|
|
|
LIBDAX_MSGS_SEV_SORRY, LIBDAX_MSGS_PRIO_HIGH,
|
|
|
|
"Drive capabilities not inquired yet", 0, 0);
|
|
|
|
return;
|
|
|
|
}
|
2006-10-10 11:26:46 +00:00
|
|
|
/* ts A61009 : obsolete Assert in sector_headers() */
|
|
|
|
if (! burn_disc_write_is_ok(opts, disc)) /* issues own msgs */
|
|
|
|
return;
|
2006-10-07 17:51:07 +00:00
|
|
|
|
2006-08-15 20:37:04 +00:00
|
|
|
o.drive = opts->drive;
|
|
|
|
o.opts = opts;
|
|
|
|
o.disc = disc;
|
|
|
|
|
|
|
|
opts->refcount++;
|
|
|
|
|
|
|
|
add_worker(opts->drive, (WorkerFunc) write_disc_worker_func, &o);
|
|
|
|
}
|
|
|
|
|
|
|
|
void burn_async_join_all(void)
|
|
|
|
{
|
|
|
|
void *ret;
|
|
|
|
|
|
|
|
while (workers)
|
|
|
|
pthread_join(workers->thread, &ret);
|
|
|
|
}
|