2008-12-09 19:46:00 +00:00
|
|
|
/* vim: set sw=3 ts=3 sts=3 expandtab: */
|
2008-11-03 14:56:30 +00:00
|
|
|
#include "ecdb.h"
|
|
|
|
|
|
|
|
int ecdb_erase_project_init(Ecdb_Erase_Project *proj);
|
2008-11-12 16:06:29 +00:00
|
|
|
static void ecdb_erase_progress_handler(void *data, void *buffer,
|
2008-12-09 05:47:59 +00:00
|
|
|
unsigned int nbyte);
|
2008-11-12 16:06:29 +00:00
|
|
|
int ecdb_erase_finished(void *data, int type, void *event);
|
2008-12-09 05:47:59 +00:00
|
|
|
|
2008-11-03 14:56:30 +00:00
|
|
|
Ecdb_Erase_Project *
|
|
|
|
ecdb_erase_project_new(void)
|
|
|
|
{
|
2008-12-09 05:47:59 +00:00
|
|
|
Ecdb_Erase_Project *proj;
|
|
|
|
|
|
|
|
proj = calloc(1, sizeof(Ecdb_Erase_Project));
|
|
|
|
if (!proj)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ecdb_erase_project_init(proj))
|
|
|
|
{
|
|
|
|
FREE(proj);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return proj;
|
2008-11-03 14:56:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ecdb_erase_project_init(Ecdb_Erase_Project *proj)
|
|
|
|
{
|
2008-12-09 05:47:59 +00:00
|
|
|
if (!ecdb_project_init(ECDB_PROJECT(proj)))
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2008-11-03 14:56:30 +00:00
|
|
|
|
2008-12-09 05:47:59 +00:00
|
|
|
/* Proper defaults */
|
|
|
|
ecdb_project_type_set(ECDB_PROJECT(proj), ECDB_ERASE_PROJECT);
|
|
|
|
proj->quick = TRUE;
|
|
|
|
proj->format = FALSE;
|
2008-11-03 14:56:30 +00:00
|
|
|
|
2008-12-09 05:47:59 +00:00
|
|
|
return TRUE;
|
2008-11-03 14:56:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ecdb_erase_project_destroy(Ecdb_Erase_Project *proj)
|
|
|
|
{
|
2008-12-09 05:47:59 +00:00
|
|
|
ecdb_project_destroy(ECDB_PROJECT(proj));
|
|
|
|
FREE(proj);
|
2008-11-03 14:56:30 +00:00
|
|
|
}
|
|
|
|
|
2008-12-09 01:12:16 +00:00
|
|
|
// FIXME Make this return an error code
|
2008-11-03 14:56:30 +00:00
|
|
|
int
|
|
|
|
ecdb_erase_disc(Ecdb_Erase_Project *proj)
|
|
|
|
{
|
2008-12-09 05:47:59 +00:00
|
|
|
BurnDriveStatus disc_state;
|
|
|
|
pthread_t progress_update;
|
|
|
|
|
|
|
|
disc_state = burn_disc_get_status(ECDB_PROJECT(proj)->drive->
|
|
|
|
tangible[0].drive);
|
|
|
|
if (disc_state == BURN_DISC_BLANK)
|
|
|
|
{
|
|
|
|
printf("Disc is already blank!\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else if (disc_state == BURN_DISC_EMPTY)
|
|
|
|
{
|
|
|
|
printf("No disc!\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else if (!burn_disc_erasable(ECDB_PROJECT(proj)->drive->
|
|
|
|
tangible[0].drive))
|
|
|
|
{
|
|
|
|
printf("Not able to erase!\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else if (disc_state == BURN_DISC_FULL || BURN_DISC_APPENDABLE)
|
|
|
|
{
|
|
|
|
printf("Beginning to erase disc!\n");
|
|
|
|
ECDB_PROJECT(proj)->pipe = ecore_pipe_add(ecdb_erase_progress_handler,
|
|
|
|
NULL);
|
|
|
|
burn_disc_erase(ECDB_PROJECT(proj)->drive->tangible[0].drive,
|
|
|
|
proj->quick);
|
|
|
|
pthread_create(&progress_update, NULL, ecdb_drive_progress_update, proj);
|
|
|
|
pthread_detach(progress_update);
|
|
|
|
ECDB_PROJECT(proj)->ev_handler = ecore_event_handler_add
|
|
|
|
(ECDB_DRIVE_ACTION_FINISHED, ecdb_erase_finished, proj);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("Not of erasable type\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2008-11-03 14:56:30 +00:00
|
|
|
}
|
|
|
|
|
2008-11-03 15:56:34 +00:00
|
|
|
static void
|
2008-11-12 16:06:29 +00:00
|
|
|
ecdb_erase_progress_handler(void *data, void *buffer, unsigned int nbyte)
|
2008-11-03 15:56:34 +00:00
|
|
|
{
|
2008-12-09 05:47:59 +00:00
|
|
|
BurnProgress *p;
|
|
|
|
Evas_Object *swallow;
|
|
|
|
char buf[1024];
|
|
|
|
static int last_sector = 0;
|
|
|
|
|
|
|
|
if ((nbyte != sizeof(BurnProgress)) || (!strcmp((char *)buffer, "AC")))
|
|
|
|
{
|
|
|
|
ecore_event_add(ECDB_DRIVE_ACTION_FINISHED, NULL, NULL, NULL);
|
|
|
|
last_sector = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p = buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Libburn reports p->sector as being 0 right at the end of the job,
|
|
|
|
* so store the last sector and use that to determine the proper
|
|
|
|
* percentage/sector to set
|
|
|
|
*/
|
|
|
|
if (last_sector <= p->sector)
|
|
|
|
{
|
|
|
|
last_sector = p->sector;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
last_sector = p->sectors;
|
|
|
|
}
|
|
|
|
|
|
|
|
swallow = evas_object_name_find(ecore_evas_get(em->main_win_ee),
|
|
|
|
"erase_page");
|
|
|
|
snprintf(buf, sizeof(buf), "%d/%d", last_sector, p->sectors);
|
|
|
|
edje_object_part_text_set(swallow, "progress_text", buf);
|
|
|
|
snprintf(buf, sizeof(buf), "%d%%", (int)((double)(last_sector + 1) /
|
|
|
|
(double)p->sectors * 100.0));
|
|
|
|
edje_object_part_text_set(swallow, "progress_percent", buf);
|
2008-11-03 15:56:34 +00:00
|
|
|
}
|
2008-11-12 16:06:29 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
ecdb_erase_finished(void *data, int type, void *event)
|
|
|
|
{
|
2008-12-09 05:47:59 +00:00
|
|
|
Ecdb_Erase_Project *proj;
|
2008-11-12 16:06:29 +00:00
|
|
|
|
2008-12-09 05:47:59 +00:00
|
|
|
proj = data;
|
2008-11-12 16:06:29 +00:00
|
|
|
|
2008-12-09 05:47:59 +00:00
|
|
|
burn_drive_release(ECDB_PROJECT(proj)->drive->tangible[0].drive, 0);
|
|
|
|
burn_drive_info_free(ECDB_PROJECT(proj)->drive->tangible);
|
|
|
|
ecore_event_handler_del(ECDB_PROJECT(proj)->ev_handler);
|
|
|
|
ecdb_erase_project_destroy(proj);
|
|
|
|
ecdb_gui_erase_cleanup();
|
2008-11-12 16:06:29 +00:00
|
|
|
|
2008-12-09 05:47:59 +00:00
|
|
|
return TRUE;
|
2008-11-12 16:06:29 +00:00
|
|
|
}
|
|
|
|
|