2008-12-09 19:46:00 +00:00
|
|
|
/* vim: set sw=3 ts=3 sts=3 expandtab: */
|
2008-04-01 21:30:41 +00:00
|
|
|
#include "ecdb.h"
|
|
|
|
|
|
|
|
typedef struct Burn_Data Burn_Data;
|
|
|
|
struct Burn_Data
|
|
|
|
{
|
2008-12-09 05:47:59 +00:00
|
|
|
BurnDisc *disc;
|
|
|
|
BurnSession *session;
|
2008-12-18 18:54:50 +00:00
|
|
|
Eina_List *sources;
|
|
|
|
Eina_List *tracks;
|
2008-12-09 05:47:59 +00:00
|
|
|
Ecdb_Project *proj;
|
2008-04-01 21:30:41 +00:00
|
|
|
};
|
|
|
|
|
2008-04-07 01:04:15 +00:00
|
|
|
int ecdb_burn_finished(void *data, int type, void *event);
|
2008-05-15 00:14:33 +00:00
|
|
|
int ecdb_burn_project_init(Ecdb_Burn_Project *proj);
|
|
|
|
int ecdb_erase_project_init(Ecdb_Erase_Project *proj);
|
2008-11-12 16:06:29 +00:00
|
|
|
static void ecdb_burn_progress_handler(void *data, void *buffer,
|
2008-12-09 05:47:59 +00:00
|
|
|
unsigned int nbyte);
|
2008-12-18 18:54:50 +00:00
|
|
|
void ecdb_sources_list_free(Eina_List *list);
|
|
|
|
void ecdb_tracks_list_free(Eina_List *list);
|
2008-12-09 02:38:04 +00:00
|
|
|
|
2008-04-01 21:30:41 +00:00
|
|
|
|
2008-05-15 00:14:33 +00:00
|
|
|
Ecdb_Burn_Project *
|
|
|
|
ecdb_burn_project_new(void)
|
|
|
|
{
|
2008-12-09 05:47:59 +00:00
|
|
|
Ecdb_Burn_Project *proj;
|
|
|
|
|
|
|
|
proj = calloc(1, sizeof(Ecdb_Burn_Project));
|
|
|
|
if (!proj)
|
|
|
|
return NULL;
|
|
|
|
if (!ecdb_burn_project_init(proj))
|
|
|
|
{
|
|
|
|
FREE(proj);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return proj;
|
2008-05-15 00:14:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ecdb_burn_project_init(Ecdb_Burn_Project *proj)
|
|
|
|
{
|
2008-12-09 05:47:59 +00:00
|
|
|
if (!ecdb_project_init(ECDB_PROJECT(proj)))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Create some sane defaults */
|
|
|
|
ecdb_project_type_set(ECDB_PROJECT(proj), ECDB_BURN_PROJECT);
|
|
|
|
proj->burn_mode = BURN_MODE1;
|
|
|
|
proj->fifo_chunksize = 2048;
|
|
|
|
proj->fifo_chunks = 2048;
|
|
|
|
proj->underrun_proof = TRUE;
|
|
|
|
proj->opc = TRUE;
|
|
|
|
proj->multi = TRUE;
|
|
|
|
proj->files = ecdb_source_new();
|
|
|
|
|
|
|
|
return TRUE;
|
2008-05-15 00:14:33 +00:00
|
|
|
}
|
|
|
|
|
2008-06-04 01:12:34 +00:00
|
|
|
void
|
|
|
|
ecdb_burn_project_destroy(Ecdb_Burn_Project *proj)
|
|
|
|
{
|
2008-12-09 05:47:59 +00:00
|
|
|
ecdb_source_destroy(proj->files);
|
|
|
|
FREE(proj->volume_id);
|
|
|
|
FREE(proj->publisher_id);
|
|
|
|
FREE(proj->data_preparer_id);
|
|
|
|
FREE(proj->system_id);
|
|
|
|
FREE(proj->application_id);
|
|
|
|
FREE(proj->copywrite_id);
|
|
|
|
FREE(proj->abstract_id);
|
|
|
|
FREE(proj->biblio_id);
|
|
|
|
ecdb_project_destroy(ECDB_PROJECT(proj));
|
|
|
|
FREE(proj);
|
2008-06-04 01:12:34 +00:00
|
|
|
}
|
|
|
|
|
2008-04-01 21:30:41 +00:00
|
|
|
int
|
2008-05-15 00:14:33 +00:00
|
|
|
ecdb_burn_project(Ecdb_Burn_Project *proj)
|
2008-04-01 21:30:41 +00:00
|
|
|
{
|
2008-12-09 05:47:59 +00:00
|
|
|
char reasons[BURN_REASONS_LEN];
|
|
|
|
int padding, i;
|
|
|
|
Burn_Data *data;
|
|
|
|
BurnTrack *track;
|
|
|
|
BurnSource *source;
|
|
|
|
BurnWriteOpts *opts;
|
|
|
|
pthread_t progress_update;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
data = calloc(1, sizeof(Burn_Data));
|
|
|
|
if (!data)
|
|
|
|
{
|
|
|
|
printf("Error: Cannot create burn data structure!\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
data->proj = ECDB_PROJECT(proj);
|
|
|
|
|
|
|
|
if (proj->burn_mode != BURN_AUDIO)
|
|
|
|
padding = 300*1024;
|
|
|
|
|
|
|
|
data->disc = burn_disc_create();
|
|
|
|
data->session = burn_session_create();
|
|
|
|
burn_disc_add_session(data->disc, data->session, BURN_POS_END);
|
|
|
|
|
|
|
|
track = burn_track_create();
|
|
|
|
burn_track_define_data(track, 0, padding, 1, proj->burn_mode);
|
|
|
|
|
|
|
|
source = ecdb_image_project(proj);
|
|
|
|
if (!source)
|
|
|
|
{
|
|
|
|
printf("Failed to add any files to burn disc!\n");
|
|
|
|
burn_session_free(data->session);
|
|
|
|
burn_disc_free(data->disc);
|
2008-12-18 18:54:50 +00:00
|
|
|
ecdb_sources_list_free(data->sources);
|
|
|
|
ecdb_tracks_list_free(data->tracks);
|
2008-12-09 05:47:59 +00:00
|
|
|
FREE(data);
|
|
|
|
return ECDB_ERROR_IMAGE_CREATE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (burn_track_set_source(track, source) != BURN_SOURCE_OK)
|
|
|
|
{
|
|
|
|
printf("Error: Cannot attach source object to track object!\n");
|
|
|
|
burn_session_free(data->session);
|
|
|
|
burn_disc_free(data->disc);
|
2008-12-18 18:54:50 +00:00
|
|
|
ecdb_sources_list_free(data->sources);
|
|
|
|
ecdb_tracks_list_free(data->tracks);
|
2008-12-09 05:47:59 +00:00
|
|
|
FREE(data);
|
|
|
|
return ECDB_ERROR_SOURCE_ATTACH;
|
|
|
|
}
|
|
|
|
|
|
|
|
burn_session_add_track(data->session, track, BURN_POS_END);
|
2008-12-18 18:54:50 +00:00
|
|
|
data->sources = eina_list_append(data->sources, source);
|
|
|
|
data->tracks = eina_list_append(data->tracks, track);
|
2008-12-09 05:47:59 +00:00
|
|
|
|
|
|
|
opts = burn_write_opts_new(ECDB_PROJECT(proj)->drive->tangible[0].drive);
|
|
|
|
burn_write_opts_set_perform_opc(opts, proj->opc);
|
|
|
|
burn_write_opts_set_multi(opts, proj->multi);
|
|
|
|
if (proj->simulate)
|
|
|
|
{
|
|
|
|
printf("Simulating Burn!\n");
|
|
|
|
}
|
|
|
|
burn_write_opts_set_simulate(opts, proj->simulate);
|
|
|
|
burn_drive_set_speed(ECDB_PROJECT(proj)->drive->tangible->drive, 0,
|
|
|
|
proj->speed);
|
|
|
|
burn_write_opts_set_underrun_proof(opts, proj->underrun_proof);
|
|
|
|
|
|
|
|
printf("Searching for burn mode\n");
|
|
|
|
if (burn_write_opts_auto_write_type(opts, data->disc, reasons, 0)
|
|
|
|
== BURN_WRITE_NONE)
|
|
|
|
{
|
|
|
|
printf("Error: Failed to find a suitable write mode for disc!\n");
|
|
|
|
burn_session_free(data->session);
|
|
|
|
burn_disc_free(data->disc);
|
|
|
|
burn_write_opts_free(opts);
|
2008-12-18 18:54:50 +00:00
|
|
|
ecdb_sources_list_free(data->sources);
|
|
|
|
ecdb_tracks_list_free(data->tracks);
|
2008-12-09 05:47:59 +00:00
|
|
|
FREE(proj);
|
|
|
|
return ECDB_ERROR_WRITE_MODE;
|
|
|
|
}
|
|
|
|
|
|
|
|
burn_disc_write(opts, data->disc);
|
|
|
|
burn_write_opts_free(opts);
|
|
|
|
|
|
|
|
printf("Disc now burning\n");
|
|
|
|
ECDB_PROJECT(proj)->pipe = ecore_pipe_add(ecdb_burn_progress_handler, NULL);
|
|
|
|
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_burn_finished, data);
|
|
|
|
|
|
|
|
return ECDB_ERROR_NONE;
|
2008-05-15 00:14:33 +00:00
|
|
|
}
|
|
|
|
|
2008-11-03 15:56:34 +00:00
|
|
|
/* This function is pretty naive... Should probably update it at some time */
|
2008-04-01 21:30:41 +00:00
|
|
|
void *
|
2008-11-03 15:56:34 +00:00
|
|
|
ecdb_drive_progress_update(void *data)
|
2008-04-01 21:30:41 +00:00
|
|
|
{
|
2008-12-09 05:47:59 +00:00
|
|
|
const Ecdb_Project *proj;
|
|
|
|
BurnProgress p;
|
|
|
|
struct burn_drive *drive;
|
|
|
|
|
|
|
|
proj = data;
|
|
|
|
|
|
|
|
if (!proj->drive->tangible)
|
|
|
|
{
|
|
|
|
printf("No tangible drive!\n");
|
|
|
|
ecore_pipe_del(proj->pipe);
|
|
|
|
pthread_exit(NULL);
|
|
|
|
}
|
|
|
|
drive = proj->drive->tangible[0].drive;
|
|
|
|
|
|
|
|
printf("Progress update active\n");
|
|
|
|
while (burn_drive_get_status(drive, NULL) == BURN_DRIVE_SPAWNING)
|
|
|
|
{
|
|
|
|
usleep(100000);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (burn_drive_get_status(drive, &p) != BURN_DRIVE_IDLE)
|
|
|
|
{
|
|
|
|
if (p.sectors > 0)
|
|
|
|
{
|
|
|
|
ecore_pipe_write(proj->pipe, &p, sizeof(p));
|
|
|
|
}
|
|
|
|
usleep(100000);
|
|
|
|
}
|
|
|
|
|
|
|
|
ecore_pipe_write(proj->pipe, "AC", sizeof("AC"));
|
|
|
|
ecore_pipe_del(proj->pipe);
|
|
|
|
/* Call the finished event handler here */
|
|
|
|
pthread_exit(NULL);
|
2008-04-01 21:30:41 +00:00
|
|
|
}
|
|
|
|
|
2008-11-03 15:56:34 +00:00
|
|
|
static void
|
2008-11-12 16:06:29 +00:00
|
|
|
ecdb_burn_progress_handler(void *data, void *buffer, unsigned int nbyte)
|
2008-04-07 01:04:15 +00:00
|
|
|
{
|
2008-12-09 05:47:59 +00:00
|
|
|
BurnProgress *p;
|
|
|
|
Evas_Object *swallow;
|
|
|
|
char buf[1024];
|
|
|
|
static int last_sector = 0;
|
2008-12-09 23:58:51 +00:00
|
|
|
int percent;
|
2008-12-09 05:47:59 +00:00
|
|
|
|
|
|
|
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),
|
|
|
|
"burn_image_page");
|
2008-12-09 23:58:51 +00:00
|
|
|
percent = (int)((double)(last_sector + 1) / (double)p->sectors * 100.0);
|
|
|
|
snprintf(buf, sizeof(buf), "%d%%", percent);
|
2008-12-09 05:47:59 +00:00
|
|
|
edje_object_part_text_set(swallow, "progress_percent", buf);
|
2008-12-09 23:58:51 +00:00
|
|
|
|
|
|
|
// Display an nice and comforting message here
|
|
|
|
if (percent >= 100)
|
|
|
|
{
|
|
|
|
edje_object_part_text_set(swallow, "progress_text", "Finalizing disc...");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
snprintf(buf, sizeof(buf), "%d/%d", last_sector, p->sectors);
|
|
|
|
edje_object_part_text_set(swallow, "progress_text", buf);
|
|
|
|
}
|
2008-04-07 01:04:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ecdb_burn_finished(void *data, int type, void *event)
|
|
|
|
{
|
2008-12-09 05:47:59 +00:00
|
|
|
Burn_Data *proj;
|
2008-04-07 01:04:15 +00:00
|
|
|
|
2008-12-09 05:47:59 +00:00
|
|
|
proj = data;
|
2008-04-07 01:04:15 +00:00
|
|
|
|
2008-12-09 05:47:59 +00:00
|
|
|
printf("Freeing source and tracks\n");
|
2008-12-18 18:54:50 +00:00
|
|
|
ecdb_sources_list_free(proj->sources);
|
|
|
|
ecdb_tracks_list_free(proj->tracks);
|
2008-04-07 01:04:15 +00:00
|
|
|
|
2008-12-09 05:47:59 +00:00
|
|
|
printf("Freeing session and disc\n");
|
|
|
|
burn_session_free(proj->session);
|
|
|
|
burn_disc_free(proj->disc);
|
2008-04-07 01:04:15 +00:00
|
|
|
|
2008-12-09 05:47:59 +00:00
|
|
|
printf("Releasing drive\n");
|
|
|
|
burn_drive_release(proj->proj->drive->tangible[0].drive, 1);
|
|
|
|
burn_drive_info_free(proj->proj->drive->tangible);
|
|
|
|
printf("Burn Complete\n");
|
2008-04-07 01:04:15 +00:00
|
|
|
|
2008-12-09 05:47:59 +00:00
|
|
|
ecore_event_handler_del(proj->proj->ev_handler);
|
2008-06-05 19:20:29 +00:00
|
|
|
|
2008-12-09 05:47:59 +00:00
|
|
|
switch (proj->proj->type)
|
|
|
|
{
|
|
|
|
case ECDB_AUDIO_PROJECT:
|
|
|
|
ecdb_audio_project_destroy(ECDB_AUDIO(proj->proj));
|
|
|
|
break;
|
2008-12-09 01:12:16 +00:00
|
|
|
|
2008-12-09 05:47:59 +00:00
|
|
|
default:
|
|
|
|
ecdb_burn_project_destroy(ECDB_BURN(proj->proj));
|
|
|
|
}
|
|
|
|
FREE(proj);
|
2008-12-09 02:38:04 +00:00
|
|
|
|
2008-12-09 05:47:59 +00:00
|
|
|
ecdb_gui_burn_image_cleanup();
|
|
|
|
|
|
|
|
return TRUE;
|
2008-12-09 02:38:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-12-18 18:54:50 +00:00
|
|
|
ecdb_sources_list_free(Eina_List *list)
|
2008-12-09 02:38:04 +00:00
|
|
|
{
|
2008-12-18 18:54:50 +00:00
|
|
|
Eina_List *l;
|
|
|
|
void *data;
|
|
|
|
|
|
|
|
EINA_LIST_FOREACH(list, l, data)
|
|
|
|
burn_source_free(data);
|
|
|
|
|
|
|
|
list = eina_list_free(list);
|
2008-12-09 02:38:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-12-18 18:54:50 +00:00
|
|
|
ecdb_tracks_list_free(Eina_List *list)
|
2008-12-09 02:38:04 +00:00
|
|
|
{
|
2008-12-18 18:54:50 +00:00
|
|
|
Eina_List *l;
|
|
|
|
void *data;
|
|
|
|
|
|
|
|
EINA_LIST_FOREACH(list, l, data)
|
|
|
|
burn_track_free(data);
|
|
|
|
|
|
|
|
list = eina_list_free(list);
|
2008-12-09 02:38:04 +00:00
|
|
|
}
|