1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/*
* Libbrasero-burn
* Copyright (C) Philippe Rouquier 2005-2009 <bonfire-app@wanadoo.fr>
*
* Libbrasero-burn 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.
*
* The Libbrasero-burn authors hereby grant permission for non-GPL compatible
* GStreamer plugins to be used and distributed together with GStreamer
* and Libbrasero-burn. This permission is above and beyond the permissions granted
* by the GPL license by which Libbrasero-burn is covered. If you modify this code
* you may extend this exception to your version of the code, but you are not
* obligated to do so. If you do not wish to do so, delete this exception
* statement from your version.
*
* Libbrasero-burn 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 Library 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.,
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <string.h>
#include <math.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include <stdlib.h>
#include <glib.h>
#include <glib-object.h>
#include <glib/gi18n-lib.h>
#include <glib/gstdio.h>
#include <gmodule.h>
#include <gconf/gconf-client.h>
#include "brasero-units.h"
#include "burn-job.h"
#include "burn-process.h"
#include "brasero-plugin-registration.h"
#include "burn-cdrtools.h"
#include "brasero-tags.h"
#include "brasero-track-image.h"
#include "brasero-track-stream.h"
#define BRASERO_TYPE_CD_RECORD (brasero_cdrecord_get_type ())
#define BRASERO_CD_RECORD(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), BRASERO_TYPE_CD_RECORD, BraseroCDRecord))
#define BRASERO_CD_RECORD_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), BRASERO_TYPE_CD_RECORD, BraseroCDRecordClass))
#define BRASERO_IS_CD_RECORD(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), BRASERO_TYPE_CD_RECORD))
#define BRASERO_IS_CD_RECORD_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), BRASERO_TYPE_CD_RECORD))
#define BRASERO_CD_RECORD_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), BRASERO_TYPE_CD_RECORD, BraseroCDRecordClass))
BRASERO_PLUGIN_BOILERPLATE (BraseroCDRecord, brasero_cdrecord, BRASERO_TYPE_PROCESS, BraseroProcess);
struct _BraseroCDRecordPrivate {
goffset current_track_end_pos;
goffset current_track_written;
gint current_track_num;
gint track_count;
gint minbuf;
GSList *infs;
guint immediate:1;
};
typedef struct _BraseroCDRecordPrivate BraseroCDRecordPrivate;
#define BRASERO_CD_RECORD_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), BRASERO_TYPE_CD_RECORD, BraseroCDRecordPrivate))
static GObjectClass *parent_class = NULL;
#define GCONF_KEY_IMMEDIATE_FLAG "/apps/brasero/config/immed_flag"
#define GCONF_KEY_MINBUF_VALUE "/apps/brasero/config/minbuf_value"
static BraseroBurnResult
brasero_cdrecord_stderr_read (BraseroProcess *process, const gchar *line)
{
BraseroBurnFlag flags;
brasero_job_get_flags (BRASERO_JOB (process), &flags);
if (strstr (line, "Cannot open SCSI driver.")
|| strstr (line, "Operation not permitted. Cannot send SCSI cmd via ioctl")
|| strstr (line, "Cannot open or use SCSI driver")) {
brasero_job_error (BRASERO_JOB (process),
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_PERMISSION,
_("You do not have the required permissions to use this drive")));
}
else if (!(flags & BRASERO_BURN_FLAG_OVERBURN)
&& strstr (line, "Data may not fit on current disk")) {
/* we don't error out if overburn was chosen */
brasero_job_error (BRASERO_JOB (process),
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_MEDIUM_SPACE,
_("Not enough space available on the disc")));
}
else if (strstr (line ,"cdrecord: A write error occurred")
|| strstr (line, "Could not write Lead-in")
|| strstr (line, "Cannot fixate disk")) {
brasero_job_error (BRASERO_JOB (process),
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_WRITE_MEDIUM,
_("An error occurred while writing to disc")));
}
else if (strstr (line, "DMA speed too slow") != NULL) {
brasero_job_error (BRASERO_JOB (process),
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_SLOW_DMA,
_("The system is too slow to write the disc at this speed. Try a lower speed")));
}
else if (strstr (line, "Device or resource busy")) {
if (!strstr (line, "retrying in")) {
brasero_job_error (BRASERO_JOB (process),
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_DRIVE_BUSY,
_("The drive is busy")));
}
}
else if (strstr (line, "Illegal write mode for this drive")) {
/* NOTE : when it happened I had to unlock the
* drive with cdrdao and eject it. Should we ? */
brasero_job_error (BRASERO_JOB (process),
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_DRIVE_BUSY,
_("The drive is busy")));
}
else if (strstr (line, "Probably trying to use ultra high speed+ medium on improper writer")) {
/* Set a deferred error as this message tends to indicate a failure */
brasero_process_deferred_error (process,
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_MEDIUM_INVALID,
_("The disc is not supported")));
}
/* REMINDER: these should not be necessary as we checked that already */
/**
else if (strstr (line, "cannot write medium - incompatible format") != NULL) {
brasero_job_error (BRASERO_JOB (process),
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_INPUT_INVALID,
_("The image does not seem to be a proper iso9660 file system")));
}
else if (strstr (line, "This means that we are checking recorded media.") != NULL) {
**/ /* NOTE: defer the consequence of this error as it is not always
* fatal. So send a warning but don't stop the process. */
/** brasero_process_deferred_error (process,
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_MEDIUM_INVALID,
_("The disc is already burnt")));
}
else if (strstr (line, "Cannot blank disk, aborting.") != NULL) {
brasero_job_error (BRASERO_JOB (process),
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_MEDIUM_INVALID,
_("The disc could not be blanked")));
}
else if (strstr (line, "Bad audio track size")) {
brasero_job_error (BRASERO_JOB (process),
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_GENERAL,
_("The audio tracks are too short or not a multiple of 2352")));
}
else if (strstr (line, "cdrecord: No such file or directory. Cannot open")
|| strstr (line, "No tracks specified. Need at least one.")) {
brasero_job_error (BRASERO_JOB (process),
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_INPUT,
_("The image file cannot be found")));
}
else if (strstr (line, "Inappropriate audio coding")) {
brasero_job_error (BRASERO_JOB (process),
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_INPUT_INVALID,
_("All audio files must be stereo, 16-bit digital audio with 44100Hz samples")));
}
else if (strstr (line, "No disk / Wrong disk!") != NULL) {
brasero_job_error (BRASERO_JOB (process),
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_MEDIA_NONE,
_("There seems to be no disc in the drive")));
}
**/
/** For these we'd rather have a message saying "cdrecord failed"
* as an internal error occurred says nothing/even less
else if (strstr (line, "Bad file descriptor. read error on input file")
|| strstr (line, "Input buffer error, aborting")) {
brasero_job_error (BRASERO_JOB (process),
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_GENERAL,
_("An internal error occurred")));
}
**/
return BRASERO_BURN_OK;
}
static void
brasero_cdrecord_compute (BraseroCDRecord *cdrecord,
goffset mb_written,
goffset mb_total,
goffset track_num)
{
gboolean track_num_changed = FALSE;
BraseroCDRecordPrivate *priv;
gchar *action_string;
gchar *track_num_str;
goffset this_remain;
goffset bytes;
goffset total;
priv = BRASERO_CD_RECORD_PRIVATE (cdrecord);
if (mb_total <= 0)
return;
total = mb_total * (goffset) 1048576LL;
if (track_num > priv->current_track_num) {
track_num_changed = TRUE;
priv->current_track_num = track_num;
priv->current_track_end_pos += mb_total * (goffset) 1048576LL;
}
this_remain = (mb_total - mb_written) * (goffset) 1048576LL;
bytes = (total - priv->current_track_end_pos) + this_remain;
brasero_job_set_written_session (BRASERO_JOB (cdrecord), total - bytes);
track_num_str = g_strdup_printf ("%02" G_GOFFSET_FORMAT, track_num);
/* Translators: %s is the number of the track */
action_string = g_strdup_printf (_("Writing track %s"), track_num_str);
g_free (track_num_str);
brasero_job_set_current_action (BRASERO_JOB (cdrecord),
BRASERO_BURN_ACTION_RECORDING,
action_string,
track_num_changed);
g_free (action_string);
}
static void
brasero_cdrecord_set_rate (BraseroProcess *process,
int speed_1,
int speed_2)
{
gdouble current_rate = -1.0;
BraseroMedia media;
if (brasero_job_get_media (BRASERO_JOB (process), &media) != BRASERO_BURN_OK)
return;
if (BRASERO_MEDIUM_IS (media, BRASERO_MEDIUM_CD))
current_rate = (gdouble) ((gdouble) speed_1 +
(gdouble) speed_2 / 10.0) *
(gdouble) CD_RATE;
else if (BRASERO_MEDIUM_IS (media, BRASERO_MEDIUM_DVD))
current_rate = (gdouble) ((gdouble) speed_1 +
(gdouble) speed_2 / 10.0) *
(gdouble) DVD_RATE;
else if (BRASERO_MEDIUM_IS (media, BRASERO_MEDIUM_BD))
current_rate = (gdouble) ((gdouble) speed_1 +
(gdouble) speed_2 / 10.0) *
(gdouble) BD_RATE;
brasero_job_set_rate (BRASERO_JOB (process), current_rate);
}
static BraseroBurnResult
brasero_cdrecord_stdout_read (BraseroProcess *process, const gchar *line)
{
guint track;
guint speed_1, speed_2;
BraseroCDRecord *cdrecord;
BraseroCDRecordPrivate *priv;
int mb_written = 0, mb_total = 0, fifo = 0, buf = 0;
cdrecord = BRASERO_CD_RECORD (process);
priv = BRASERO_CD_RECORD_PRIVATE (cdrecord);
if (sscanf (line, "Track %2u: %d of %d MB written (fifo %d%%) [buf %d%%] %d.%dx.",
&track, &mb_written, &mb_total, &fifo, &buf, &speed_1, &speed_2) == 7 ||
/* This is for DVD+R */
sscanf (line, "Track %2u: %d of %d MB written (fifo %d%%) [buf %d%%] |%*s %*s| %d.%dx.",
&track, &mb_written, &mb_total, &fifo, &buf, &speed_1, &speed_2) == 7) {
brasero_cdrecord_set_rate (process, speed_1, speed_2);
priv->current_track_written = (goffset) mb_written * (goffset) 1048576LL;
brasero_cdrecord_compute (cdrecord,
mb_written,
mb_total,
track);
brasero_job_start_progress (BRASERO_JOB (cdrecord), FALSE);
}
else if (sscanf (line, "Track %2u: %d MB written (fifo %d%%) [buf %d%%] %d.%dx.",
&track, &mb_written, &fifo, &buf, &speed_1, &speed_2) == 6 ||
sscanf (line, "Track %2u: %d MB written (fifo %d%%) [buf %d%%] |%*s %*s| %d.%dx.",
&track, &mb_written, &fifo, &buf, &speed_1, &speed_2) == 6) {
brasero_cdrecord_set_rate (process, speed_1, speed_2);
priv->current_track_written = (goffset) mb_written * (goffset) 1048576LL;
if (brasero_job_get_fd_in (BRASERO_JOB (cdrecord), NULL) == BRASERO_BURN_OK) {
goffset bytes = 0;
/* we must ask the imager what is the total size */
brasero_job_get_session_output_size (BRASERO_JOB (cdrecord),
NULL,
&bytes);
mb_total = bytes / (goffset) 1048576LL;
brasero_cdrecord_compute (cdrecord,
mb_written,
mb_total,
track);
}
brasero_job_start_progress (BRASERO_JOB (cdrecord), FALSE);
}
else if (sscanf (line, "Track %*d: %*s %d MB ", &mb_total) == 1) {
/* if (mb_total > 0)
priv->tracks_total_bytes += mb_total * 1048576;
*/ }
else if (strstr (line, "Formatting media")) {
brasero_job_set_current_action (BRASERO_JOB (process),
BRASERO_BURN_ACTION_BLANKING,
_("Formatting disc"),
FALSE);
}
else if (strstr (line, "Sending CUE sheet")) {
BraseroTrackType *type = NULL;
/* See if we are in an audio case which would mean we're writing
* CD-TEXT */
type = brasero_track_type_new ();
brasero_job_get_input_type (BRASERO_JOB (cdrecord), type);
brasero_job_set_current_action (BRASERO_JOB (process),
BRASERO_BURN_ACTION_RECORDING_CD_TEXT,
brasero_track_type_get_has_stream (type) ? NULL:_("Writing cue sheet"),
FALSE);
brasero_track_type_free (type);
}
else if (g_str_has_prefix (line, "Re-load disk and hit <CR>")
|| g_str_has_prefix (line, "send SIGUSR1 to continue")) {
BraseroBurnAction action = BRASERO_BURN_ACTION_NONE;
brasero_job_get_current_action (BRASERO_JOB (process), &action);
/* NOTE: There seems to be a BUG somewhere when writing raw images
* with clone mode. After disc has been written and fixated cdrecord
* asks the media to be reloaded. So we simply ignore this message
* and returns that everything went well. Which is indeed the case */
if (action == BRASERO_BURN_ACTION_FIXATING) {
brasero_job_finished_session (BRASERO_JOB (process));
return BRASERO_BURN_OK;
}
brasero_job_error (BRASERO_JOB (process),
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_MEDIUM_NEED_RELOADING,
_("The disc needs to be reloaded before being recorded")));
}
else if (g_str_has_prefix (line, "Fixating...")
|| g_str_has_prefix (line, "Writing Leadout...")) {
BraseroJobAction action;
/* Do this to avoid strange things to appear when erasing */
brasero_job_get_action (BRASERO_JOB (process), &action);
if (action == BRASERO_JOB_ACTION_RECORD)
brasero_job_set_current_action (BRASERO_JOB (process),
BRASERO_BURN_ACTION_FIXATING,
NULL,
FALSE);
}
else if (g_str_has_prefix (line, "Last chance to quit, ")) {
brasero_job_set_dangerous (BRASERO_JOB (process), TRUE);
}
/* else if (g_str_has_prefix (line, "Blanking PMA, TOC, pregap")
|| strstr (line, "Blanking entire disk")) {
}
*/
else if (strstr (line, "Disk sub type: Ultra High speed+")) {
/* Set a deferred error as this message tends to indicate a failure */
brasero_process_deferred_error (process,
g_error_new (BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_MEDIUM_INVALID,
_("The disc is not supported")));
}
/* This should not happen */
/* else if (strstr (line, "Use tsize= option in SAO mode to specify track size")) */
return BRASERO_BURN_OK;
}
static gboolean
brasero_cdrecord_write_inf (BraseroCDRecord *cdrecord,
GPtrArray *argv,
BraseroTrack *track,
const gchar *tmpdir,
const gchar *album,
gint index,
gint start,
gboolean last_track,
GError **error)
{
gint fd;
int isrc;
int errsv;
gint size;
gchar *path;
guint64 length;
gchar *string;
gint b_written;
gint64 sectors;
const gchar *info;
gchar buffer [128];
BraseroCDRecordPrivate *priv;
priv = BRASERO_CD_RECORD_PRIVATE (cdrecord);
/* NOTE: about the .inf files: they should have the exact same path
* but the ending suffix file is replaced by inf:
* example : /path/to/file.mp3 => /path/to/file.inf */
if (brasero_job_get_fd_in (BRASERO_JOB (cdrecord), NULL) != BRASERO_BURN_OK) {
gchar *dot, *separator;
path = brasero_track_stream_get_source (BRASERO_TRACK_STREAM (track), FALSE);
dot = strrchr (path, '.');
separator = strrchr (path, G_DIR_SEPARATOR);
if (dot && dot > separator)
path = g_strdup_printf ("%.*s.inf",
(int) (dot - path),
path);
else
path = g_strdup_printf ("%s.inf",
path);
/* since this file was not returned by brasero_job_get_tmp_file
* it won't be erased when session is unrefed so we have to do
* it ourselves */
priv->infs = g_slist_prepend (priv->infs, g_strdup (path));
}
else {
BraseroBurnResult result;
/* in this case don't care about the name since stdin is used */
result = brasero_job_get_tmp_file (BRASERO_JOB (cdrecord),
".inf",
&path,
error);
if (result != BRASERO_BURN_OK)
return result;
}
fd = open (path, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);
if (fd < 0)
goto error;
BRASERO_JOB_LOG (cdrecord, "writing inf (%s)", path);
/* The problem here is that when writing CD-TEXT from .inf files, wodim
* uses only one charset (and don't let us specify which one) which is
* ISO-8859-1. (NOTE: don't believe the doc claiming it requires ASCII
* and see cdrecord/cdtext.c line 309).
* So we have to convert our UTF-8 input into such a charset.
* NOTE: according to docs ASCII should be used for text packs other
* than disc/track title.
* It might be good in the end to write and pack CD-TEXT pack data
* ourselves so we can set a different charset from English like
* Chinese for example. */
strcpy (buffer, "# created by brasero\n");
size = strlen (buffer);
b_written = write (fd, buffer, size);
if (b_written != size)
goto error;
strcpy (buffer, "MCN=\t\n");
size = strlen (buffer);
b_written = write (fd, buffer, size);
if (b_written != size)
goto error;
/* ISRC */
isrc = brasero_track_tag_lookup_int (BRASERO_TRACK (track), BRASERO_TRACK_STREAM_ISRC_TAG);
if (isrc > 0)
string = g_strdup_printf ("ISRC=\t%i\n", isrc);
else
string = g_strdup ("ISRC=\t\n");
size = strlen (string);
b_written = write (fd, string, size);
g_free (string);
if (b_written != size)
goto error;
strcpy (buffer, "Albumperformer=\t\n");
size = strlen (buffer);
b_written = write (fd, buffer, size);
if (b_written != size)
goto error;
if (album) {
gchar *encoded;
encoded = g_convert_with_fallback (album,
-1,
"ISO-8859-1",
"UTF-8",
"_", /* Fallback for non convertible characters */
NULL,
NULL,
NULL);
string = g_strdup_printf ("Albumtitle=\t%s\n", encoded);
g_free (encoded);
}
else
string = strdup ("Albumtitle=\t\n");
size = strlen (string);
b_written = write (fd, string, size);
g_free (string);
if (b_written != size)
goto error;
/* ARTIST */
info = brasero_track_tag_lookup_string (BRASERO_TRACK (track),
BRASERO_TRACK_STREAM_ARTIST_TAG);
if (info) {
gchar *encoded;
encoded = g_convert_with_fallback (info,
-1,
"ISO-8859-1",
"UTF-8",
"_", /* Fallback for non convertible characters */
NULL,
NULL,
NULL);
string = g_strdup_printf ("Performer=\t%s\n", encoded);
g_free (encoded);
}
else
string = strdup ("Performer=\t\n");
size = strlen (string);
b_written = write (fd, string, size);
g_free (string);
if (b_written != size)
goto error;
/* COMPOSER */
info = brasero_track_tag_lookup_string (BRASERO_TRACK (track),
BRASERO_TRACK_STREAM_COMPOSER_TAG);
if (info) {
gchar *encoded;
encoded = g_convert_with_fallback (info,
-1,
"ISO-8859-1",
"UTF-8",
"_", /* Fallback for non convertible characters */
NULL,
NULL,
NULL);
string = g_strdup_printf ("Composer=\t%s\n", encoded);
g_free (encoded);
}
else
string = strdup ("Composer=\t\n");
size = strlen (string);
b_written = write (fd, string, size);
g_free (string);
if (b_written != size)
goto error;
/* TITLE */
info = brasero_track_tag_lookup_string (BRASERO_TRACK (track),
BRASERO_TRACK_STREAM_TITLE_TAG);
if (info) {
gchar *encoded;
encoded = g_convert_with_fallback (info,
-1,
"ISO-8859-1",
"UTF-8",
"_", /* Fallback for non convertible characters */
NULL,
NULL,
NULL);
string = g_strdup_printf ("Tracktitle=\t%s\n", encoded);
g_free (encoded);
}
else
string = strdup ("Tracktitle=\t\n");
size = strlen (string);
b_written = write (fd, string, size);
g_free (string);
if (b_written != size)
goto error;
string = g_strdup_printf ("Tracknumber=\t%i\n", index);
size = strlen (string);
b_written = write (fd, string, size);
g_free (string);
if (b_written != size)
goto error;
string = g_strdup_printf ("Trackstart=\t%i\n", start);
size = strlen (string);
b_written = write (fd, string, size);
g_free (string);
if (b_written != size)
goto error;
length = 0;
brasero_track_stream_get_length (BRASERO_TRACK_STREAM (track), &length);
sectors = BRASERO_DURATION_TO_SECTORS (length);
BRASERO_JOB_LOG (cdrecord, "got track length %lli", length);
string = g_strdup_printf ("Tracklength=\t%"G_GINT64_FORMAT", 0\n", sectors);
size = strlen (string);
b_written = write (fd, string, size);
g_free (string);
if (b_written != size)
goto error;
strcpy (buffer, "Pre-emphasis=\tno\n");
size = strlen (buffer);
b_written = write (fd, buffer, size);
if (b_written != size)
goto error;
strcpy (buffer, "Channels=\t2\n");
size = strlen (buffer);
b_written = write (fd, buffer, size);
if (b_written != size)
goto error;
strcpy (buffer, "Copy_permitted=\tyes\n");
size = strlen (buffer);
b_written = write (fd, buffer, size);
if (b_written != size)
goto error;
strcpy (buffer, "Endianess=\tlittle\n");
size = strlen (buffer);
b_written = write (fd, buffer, size);
if (b_written != size)
goto error;
strcpy (buffer, "Index=\t\t0\n");
size = strlen (buffer);
b_written = write (fd, buffer, size);
if (b_written != size)
goto error;
/* NOTE: -1 here means no pregap */
if (!last_track) {
/* K3b does this (possibly to remove silence) */
string = g_strdup_printf ("Index0=\t\t%"G_GINT64_FORMAT"\n",
sectors - 150);
}
else
string = g_strdup_printf ("Index0=\t\t-1\n");
size = strlen (string);
b_written = write (fd, string, size);
g_free (string);
if (b_written != size)
goto error;
close (fd);
if (argv)
g_ptr_array_add (argv, path);
else
g_free (path);
return BRASERO_BURN_OK;
error:
errsv = errno;
g_remove (path);
g_free (path);
g_set_error (error,
BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_GENERAL,
_("An internal error occurred (%s)"),
g_strerror (errsv));
return BRASERO_BURN_ERR;
}
static BraseroBurnResult
brasero_cdrecord_write_infs (BraseroCDRecord *cdrecord,
GPtrArray *argv,
GError **error)
{
BraseroCDRecordPrivate *priv;
BraseroBurnResult result;
gchar *tmpdir = NULL;
GSList *tracks;
goffset start;
GSList *iter;
gchar *album;
gint index;
priv = BRASERO_CD_RECORD_PRIVATE (cdrecord);
brasero_job_get_audio_title (BRASERO_JOB (cdrecord), &album);
brasero_job_get_tracks (BRASERO_JOB (cdrecord), &tracks);
index = 1;
start = 0;
for (iter = tracks; iter; iter = iter->next) {
goffset sectors;
BraseroTrack *track;
const gchar *track_inf;
track = iter->data;
track_inf = brasero_track_tag_lookup_string (track, BRASERO_CDRTOOLS_TRACK_INF_FILE);
if (track_inf) {
BRASERO_JOB_LOG (cdrecord, "Already existing .inf file");
/* There is already an .inf file associated with this track */
if (argv)
g_ptr_array_add (argv, g_strdup (track_inf));
}
else {
result = brasero_cdrecord_write_inf (cdrecord,
argv,
track,
tmpdir,
album,
index,
start,
(iter->next == NULL),
error);
if (result != BRASERO_BURN_OK)
return result;
}
index ++;
sectors = 0;
brasero_track_get_size (track, §ors, NULL);
start += sectors;
}
g_free (album);
g_free (tmpdir);
return BRASERO_BURN_OK;
}
static BraseroBurnResult
brasero_cdrecord_set_argv_record (BraseroCDRecord *cdrecord,
GPtrArray *argv,
GError **error)
{
guint speed;
BraseroBurnFlag flags;
BraseroCDRecordPrivate *priv;
BraseroTrackType *type = NULL;
priv = BRASERO_CD_RECORD_PRIVATE (cdrecord);
if (priv->immediate) {
g_ptr_array_add (argv, g_strdup ("-immed"));
g_ptr_array_add (argv, g_strdup_printf ("minbuf=%i", priv->minbuf));
}
if (brasero_job_get_speed (BRASERO_JOB (cdrecord), &speed) == BRASERO_BURN_OK) {
gchar *speed_str;
speed_str = g_strdup_printf ("speed=%d", speed);
g_ptr_array_add (argv, speed_str);
}
brasero_job_get_flags (BRASERO_JOB (cdrecord), &flags);
if (flags & BRASERO_BURN_FLAG_OVERBURN)
g_ptr_array_add (argv, g_strdup ("-overburn"));
if (flags & BRASERO_BURN_FLAG_BURNPROOF)
g_ptr_array_add (argv, g_strdup ("driveropts=burnfree"));
if (flags & BRASERO_BURN_FLAG_MULTI)
g_ptr_array_add (argv, g_strdup ("-multi"));
/* NOTE: This write mode is necessary for all CLONE images burning */
if (flags & BRASERO_BURN_FLAG_RAW)
g_ptr_array_add (argv, g_strdup ("-raw96r"));
/* NOTE1: DAO can't be used if we're appending to a disc */
/* NOTE2: CD-text cannot be written in tao mode (which is the default)
* NOTE3: when we don't want wodim to use stdin then we give the audio
* file on the command line. Otherwise we use the .inf */
if (flags & BRASERO_BURN_FLAG_DAO)
g_ptr_array_add (argv, g_strdup ("-dao"));
type = brasero_track_type_new ();
brasero_job_get_input_type (BRASERO_JOB (cdrecord), type);
if (brasero_job_get_fd_in (BRASERO_JOB (cdrecord), NULL) == BRASERO_BURN_OK) {
BraseroBurnResult result;
int buffer_size;
goffset sectors;
/* we need to know what is the type of the track (audio / data) */
result = brasero_job_get_input_type (BRASERO_JOB (cdrecord), type);
if (result != BRASERO_BURN_OK) {
brasero_track_type_free (type);
BRASERO_JOB_LOG (cdrecord, "Imager doesn't seem to be ready")
g_set_error (error,
BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_GENERAL,
_("An internal error occurred"));
return BRASERO_BURN_ERR;
}
/* ask the size */
result = brasero_job_get_session_output_size (BRASERO_JOB (cdrecord),
§ors,
NULL);
if (result != BRASERO_BURN_OK) {
brasero_track_type_free (type);
BRASERO_JOB_LOG (cdrecord, "The size of the session cannot be retrieved")
g_set_error (error,
BRASERO_BURN_ERROR,
BRASERO_BURN_ERROR_GENERAL,
_("An internal error occurred"));
return BRASERO_BURN_ERR;
}
/* we create a buffer depending on the size
* buffer 4m> < 64m and is 1/25th of size otherwise */
buffer_size = sectors * 2352 / 1024 / 1024 / 25;
if (buffer_size > 32)
buffer_size = 32;
else if (buffer_size < 4)
buffer_size = 4;
g_ptr_array_add (argv, g_strdup_printf ("fs=%im", buffer_size));
if (brasero_track_type_get_has_image (type)) {
BraseroImageFormat format;
format = brasero_track_type_get_image_format (type);
if (format == BRASERO_IMAGE_FORMAT_BIN) {
g_ptr_array_add (argv, g_strdup_printf ("tsize=%"G_GINT64_FORMAT"s", sectors));
g_ptr_array_add (argv, g_strdup ("-data"));
g_ptr_array_add (argv, g_strdup ("-nopad"));
g_ptr_array_add (argv, g_strdup ("-"));
}
else {
brasero_track_type_free (type);
BRASERO_JOB_NOT_SUPPORTED (cdrecord);
}
}
else if (brasero_track_type_get_has_stream (type)) {
g_ptr_array_add (argv, g_strdup ("-audio"));
g_ptr_array_add (argv, g_strdup ("-useinfo"));
g_ptr_array_add (argv, g_strdup ("-text"));
result = brasero_cdrecord_write_infs (cdrecord,
argv,
error);
if (result != BRASERO_BURN_OK) {
brasero_track_type_free (type);
return result;
}
}
else {
brasero_track_type_free (type);
BRASERO_JOB_NOT_SUPPORTED (cdrecord);
}
}
else if (brasero_track_type_get_has_stream (type)) {
BraseroBurnResult result;
GSList *tracks;
g_ptr_array_add (argv, g_strdup ("fs=16m"));
g_ptr_array_add (argv, g_strdup ("-audio"));
g_ptr_array_add (argv, g_strdup ("-pad"));
g_ptr_array_add (argv, g_strdup ("-useinfo"));
g_ptr_array_add (argv, g_strdup ("-text"));
result = brasero_cdrecord_write_infs (cdrecord,
NULL,
error);
if (result != BRASERO_BURN_OK) {
brasero_track_type_free (type);
return result;
}
tracks = NULL;
brasero_job_get_tracks (BRASERO_JOB (cdrecord), &tracks);
for (; tracks; tracks = tracks->next) {
BraseroTrack *track;
gchar *path;
track = tracks->data;
path = brasero_track_stream_get_source (BRASERO_TRACK_STREAM (track), FALSE);
g_ptr_array_add (argv, path);
}
}
else if (brasero_track_type_get_has_image (type)) {
BraseroTrack *track = NULL;
BraseroImageFormat format;
brasero_job_get_current_track (BRASERO_JOB (cdrecord), &track);
if (!track) {
brasero_track_type_free (type);
BRASERO_JOB_NOT_READY (cdrecord);
}
format = brasero_track_type_get_image_format (type);
if (format == BRASERO_IMAGE_FORMAT_NONE) {
gchar *image_path;
image_path = brasero_track_image_get_source (BRASERO_TRACK_IMAGE (track), FALSE);
if (!image_path) {
brasero_track_type_free (type);
BRASERO_JOB_NOT_READY (cdrecord);
}
g_ptr_array_add (argv, g_strdup ("fs=16m"));
g_ptr_array_add (argv, g_strdup ("-data"));
g_ptr_array_add (argv, g_strdup ("-nopad"));
g_ptr_array_add (argv, image_path);
}
else if (format == BRASERO_IMAGE_FORMAT_BIN) {
gchar *isopath;
isopath = brasero_track_image_get_source (BRASERO_TRACK_IMAGE (track), FALSE);
if (!isopath) {
brasero_track_type_free (type);
BRASERO_JOB_NOT_READY (cdrecord);
}
g_ptr_array_add (argv, g_strdup ("fs=16m"));
g_ptr_array_add (argv, g_strdup ("-data"));
g_ptr_array_add (argv, g_strdup ("-nopad"));
g_ptr_array_add (argv, isopath);
}
else if (format == BRASERO_IMAGE_FORMAT_CLONE) {
gchar *rawpath;
rawpath = brasero_track_image_get_source (BRASERO_TRACK_IMAGE (track), FALSE);
if (!rawpath) {
brasero_track_type_free (type);
BRASERO_JOB_NOT_READY (cdrecord);
}
g_ptr_array_add (argv, g_strdup ("fs=16m"));
g_ptr_array_add (argv, g_strdup ("-clone"));
g_ptr_array_add (argv, rawpath);
}
else if (format == BRASERO_IMAGE_FORMAT_CUE) {
gchar *cue_str;
gchar *cuepath;
gchar *parent;
cuepath = brasero_track_image_get_toc_source (BRASERO_TRACK_IMAGE (track), FALSE);
if (!cuepath) {
brasero_track_type_free (type);
BRASERO_JOB_NOT_READY (cdrecord);
}
parent = g_path_get_dirname (cuepath);
brasero_process_set_working_directory (BRASERO_PROCESS (cdrecord), parent);
g_free (parent);
/* we need to check endianness */
if (brasero_track_image_need_byte_swap (BRASERO_TRACK_IMAGE (track)))
g_ptr_array_add (argv, g_strdup ("-swab"));
g_ptr_array_add (argv, g_strdup ("fs=16m"));
/* This is to make sure the CD-TEXT stuff gets written */
g_ptr_array_add (argv, g_strdup ("-text"));
cue_str = g_strdup_printf ("cuefile=%s", cuepath);
g_ptr_array_add (argv, cue_str);
g_free (cuepath);
}
else {
brasero_track_type_free (type);
BRASERO_JOB_NOT_SUPPORTED (cdrecord);
}
}
else {
brasero_track_type_free (type);
BRASERO_JOB_NOT_SUPPORTED (cdrecord);
}
brasero_track_type_free (type);
brasero_job_set_current_action (BRASERO_JOB (cdrecord),
BRASERO_BURN_ACTION_START_RECORDING,
NULL,
FALSE);
return BRASERO_BURN_OK;
}
static BraseroBurnResult
brasero_cdrecord_set_argv_blank (BraseroCDRecord *cdrecord, GPtrArray *argv)
{
gchar *blank_str;
BraseroBurnFlag flags;
brasero_job_get_flags (BRASERO_JOB (cdrecord), &flags);
blank_str = g_strdup_printf ("blank=%s",
(flags & BRASERO_BURN_FLAG_FAST_BLANK) ? "fast" : "all");
g_ptr_array_add (argv, blank_str);
brasero_job_set_current_action (BRASERO_JOB (cdrecord),
BRASERO_BURN_ACTION_BLANKING,
NULL,
FALSE);
return BRASERO_BURN_OK;
}
static BraseroBurnResult
brasero_cdrecord_set_argv (BraseroProcess *process,
GPtrArray *argv,
GError **error)
{
BraseroCDRecordPrivate *priv;
BraseroCDRecord *cdrecord;
BraseroBurnResult result;
BraseroJobAction action;
BraseroBurnFlag flags;
gchar *device = NULL;
gchar *dev_str;
cdrecord = BRASERO_CD_RECORD (process);
priv = BRASERO_CD_RECORD_PRIVATE (cdrecord);
brasero_job_get_action (BRASERO_JOB (cdrecord), &action);
if (action == BRASERO_JOB_ACTION_SIZE)
return BRASERO_BURN_NOT_SUPPORTED;
g_ptr_array_add (argv, g_strdup ("cdrecord"));
g_ptr_array_add (argv, g_strdup ("-v"));
/* NOTE: that function returns either bus_target_lun or the device path
* according to OSes. Basically it returns bus/target/lun only for FreeBSD
* which is the only OS in need for that. For all others it returns the device
* path. */
brasero_job_get_bus_target_lun (BRASERO_JOB (cdrecord), &device);
dev_str = g_strdup_printf ("dev=%s", device);
g_ptr_array_add (argv, dev_str);
g_free (device);
brasero_job_get_flags (BRASERO_JOB (cdrecord), &flags);
if (flags & BRASERO_BURN_FLAG_DUMMY)
g_ptr_array_add (argv, g_strdup ("-dummy"));
if (flags & BRASERO_BURN_FLAG_NOGRACE)
g_ptr_array_add (argv, g_strdup ("gracetime=0"));
if (action == BRASERO_JOB_ACTION_RECORD)
result = brasero_cdrecord_set_argv_record (cdrecord, argv, error);
else if (action == BRASERO_JOB_ACTION_ERASE)
result = brasero_cdrecord_set_argv_blank (cdrecord, argv);
else
BRASERO_JOB_NOT_SUPPORTED (cdrecord);
return result;
}
static BraseroBurnResult
brasero_cdrecord_post (BraseroJob *job)
{
BraseroCDRecordPrivate *priv;
GSList *iter;
priv = BRASERO_CD_RECORD_PRIVATE (job);
for (iter = priv->infs; iter; iter = iter->next) {
gchar *path;
path = iter->data;
g_remove (path);
g_free (path);
}
g_slist_free (priv->infs);
priv->infs = NULL;
return brasero_job_finished_session (job);
}
static void
brasero_cdrecord_class_init (BraseroCDRecordClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
BraseroProcessClass *process_class = BRASERO_PROCESS_CLASS (klass);
g_type_class_add_private (klass, sizeof (BraseroCDRecordPrivate));
parent_class = g_type_class_peek_parent (klass);
object_class->finalize = brasero_cdrecord_finalize;
process_class->stderr_func = brasero_cdrecord_stderr_read;
process_class->stdout_func = brasero_cdrecord_stdout_read;
process_class->set_argv = brasero_cdrecord_set_argv;
process_class->post = brasero_cdrecord_post;
}
static void
brasero_cdrecord_init (BraseroCDRecord *obj)
{
GConfClient *client;
BraseroCDRecordPrivate *priv;
/* load our "configuration" */
priv = BRASERO_CD_RECORD_PRIVATE (obj);
client = gconf_client_get_default ();
priv->immediate = gconf_client_get_bool (client,
GCONF_KEY_IMMEDIATE_FLAG,
NULL);
priv->minbuf = gconf_client_get_int (client,
GCONF_KEY_MINBUF_VALUE,
NULL);
if (priv->minbuf > 95 || priv->minbuf < 25)
priv->minbuf = 30;
g_object_unref (client);
}
static void
brasero_cdrecord_finalize (GObject *object)
{
BraseroCDRecordPrivate *priv;
GSList *iter;
priv = BRASERO_CD_RECORD_PRIVATE (object);
for (iter = priv->infs; iter; iter = iter->next) {
gchar *path;
path = iter->data;
g_remove (path);
g_free (path);
}
g_slist_free (priv->infs);
priv->infs = NULL;
G_OBJECT_CLASS (parent_class)->finalize (object);
}
static void
brasero_cdrecord_export_caps (BraseroPlugin *plugin)
{
BraseroPluginConfOption *immed, *minbuf;
const BraseroMedia media = BRASERO_MEDIUM_CD|
BRASERO_MEDIUM_WRITABLE|
BRASERO_MEDIUM_REWRITABLE|
BRASERO_MEDIUM_BLANK|
BRASERO_MEDIUM_APPENDABLE|
BRASERO_MEDIUM_HAS_AUDIO|
BRASERO_MEDIUM_HAS_DATA;
const BraseroMedia dvd_media = BRASERO_MEDIUM_DVD|
BRASERO_MEDIUM_PLUS|
BRASERO_MEDIUM_SEQUENTIAL|
BRASERO_MEDIUM_WRITABLE|
BRASERO_MEDIUM_REWRITABLE|
BRASERO_MEDIUM_BLANK|
BRASERO_MEDIUM_UNFORMATTED|
BRASERO_MEDIUM_APPENDABLE|
BRASERO_MEDIUM_HAS_DATA;
const BraseroMedia media_rw = BRASERO_MEDIUM_CD|
BRASERO_MEDIUM_REWRITABLE|
BRASERO_MEDIUM_APPENDABLE|
BRASERO_MEDIUM_CLOSED|
BRASERO_MEDIUM_HAS_AUDIO|
BRASERO_MEDIUM_HAS_DATA|
BRASERO_MEDIUM_BLANK;
GSList *output;
GSList *input;
/* NOTE: it seems that cdrecord can burn cue files on the fly */
brasero_plugin_define (plugin,
"cdrecord",
_("Burns, blanks and formats CDs, DVDs and BDs"),
"Philippe Rouquier",
1);
/* for recording */
input = brasero_caps_image_new (BRASERO_PLUGIN_IO_ACCEPT_PIPE|
BRASERO_PLUGIN_IO_ACCEPT_FILE,
BRASERO_IMAGE_FORMAT_BIN);
/* cdrecord can burn all DVDs (except restricted) when it's ISOs */
output = brasero_caps_disc_new (dvd_media);
brasero_plugin_link_caps (plugin, output, input);
g_slist_free (output);
/* All CD-R(W) */
output = brasero_caps_disc_new (media);
brasero_plugin_link_caps (plugin, output, input);
g_slist_free (input);
input = brasero_caps_audio_new (BRASERO_PLUGIN_IO_ACCEPT_PIPE|
BRASERO_PLUGIN_IO_ACCEPT_FILE,
BRASERO_AUDIO_FORMAT_RAW|
BRASERO_METADATA_INFO);
brasero_plugin_link_caps (plugin, output, input);
g_slist_free (input);
input = brasero_caps_audio_new (BRASERO_PLUGIN_IO_ACCEPT_PIPE|
BRASERO_PLUGIN_IO_ACCEPT_FILE,
BRASERO_AUDIO_FORMAT_RAW);
brasero_plugin_link_caps (plugin, output, input);
g_slist_free (output);
g_slist_free (input);
/* for CLONE and CUE type images, we only want blank CD-R(W) */
output = brasero_caps_disc_new (BRASERO_MEDIUM_CD|
BRASERO_MEDIUM_WRITABLE|
BRASERO_MEDIUM_REWRITABLE|
BRASERO_MEDIUM_BLANK);
input = brasero_caps_image_new (BRASERO_PLUGIN_IO_ACCEPT_FILE,
BRASERO_IMAGE_FORMAT_CUE|
BRASERO_IMAGE_FORMAT_CLONE);
brasero_plugin_link_caps (plugin, output, input);
g_slist_free (output);
g_slist_free (input);
/* Blank CD(R)W : don't use standard flags cdrecord fails consistently
* to write a first track of a multisession disc with DAO mode. */
brasero_plugin_set_flags (plugin,
BRASERO_MEDIUM_CD|
BRASERO_MEDIUM_WRITABLE|
BRASERO_MEDIUM_REWRITABLE|
BRASERO_MEDIUM_BLANK,
BRASERO_BURN_FLAG_DAO|
BRASERO_BURN_FLAG_BURNPROOF|
BRASERO_BURN_FLAG_OVERBURN|
BRASERO_BURN_FLAG_DUMMY|
BRASERO_BURN_FLAG_NOGRACE,
BRASERO_BURN_FLAG_NONE);
brasero_plugin_set_flags (plugin,
BRASERO_MEDIUM_CD|
BRASERO_MEDIUM_WRITABLE|
BRASERO_MEDIUM_REWRITABLE|
BRASERO_MEDIUM_BLANK,
BRASERO_BURN_FLAG_MULTI|
BRASERO_BURN_FLAG_BURNPROOF|
BRASERO_BURN_FLAG_OVERBURN|
BRASERO_BURN_FLAG_DUMMY|
BRASERO_BURN_FLAG_NOGRACE,
BRASERO_BURN_FLAG_NONE);
/* Apart from DAO it also supports RAW mode to burn CLONE images. This
* is a special mode for which there isn't any DUMMY burn possible */
brasero_plugin_set_flags (plugin,
BRASERO_MEDIUM_CD|
BRASERO_MEDIUM_WRITABLE|
BRASERO_MEDIUM_REWRITABLE|
BRASERO_MEDIUM_BLANK,
BRASERO_BURN_FLAG_RAW|
BRASERO_BURN_FLAG_BURNPROOF|
BRASERO_BURN_FLAG_OVERBURN|
BRASERO_BURN_FLAG_NOGRACE,
BRASERO_BURN_FLAG_NONE);
/* This is a CDR with data; data can be merged or at least appended */
brasero_plugin_set_flags (plugin,
BRASERO_MEDIUM_CD|
BRASERO_MEDIUM_WRITABLE|
BRASERO_MEDIUM_APPENDABLE|
BRASERO_MEDIUM_HAS_AUDIO|
BRASERO_MEDIUM_HAS_DATA,
BRASERO_BURN_FLAG_APPEND|
BRASERO_BURN_FLAG_MERGE|
BRASERO_BURN_FLAG_BURNPROOF|
BRASERO_BURN_FLAG_OVERBURN|
BRASERO_BURN_FLAG_MULTI|
BRASERO_BURN_FLAG_DUMMY|
BRASERO_BURN_FLAG_NOGRACE,
BRASERO_BURN_FLAG_APPEND);
/* It is a CDRW we want the CD to be either blanked before or appended
* that's why we set MERGE as compulsory. That way if the CD is not
* MERGED we force the blank before writing to avoid appending sessions
* endlessly until there is no free space. */
brasero_plugin_set_flags (plugin,
BRASERO_MEDIUM_CD|
BRASERO_MEDIUM_REWRITABLE|
BRASERO_MEDIUM_APPENDABLE|
BRASERO_MEDIUM_HAS_AUDIO|
BRASERO_MEDIUM_HAS_DATA,
BRASERO_BURN_FLAG_APPEND|
BRASERO_BURN_FLAG_MERGE|
BRASERO_BURN_FLAG_BURNPROOF|
BRASERO_BURN_FLAG_OVERBURN|
BRASERO_BURN_FLAG_MULTI|
BRASERO_BURN_FLAG_DUMMY|
BRASERO_BURN_FLAG_NOGRACE,
BRASERO_BURN_FLAG_MERGE);
/* DVD-RW cdrecord capabilites are limited to blank media.
* It should not start a multisession disc. */
brasero_plugin_set_flags (plugin,
BRASERO_MEDIUM_DVD|
BRASERO_MEDIUM_SEQUENTIAL|
BRASERO_MEDIUM_WRITABLE|
BRASERO_MEDIUM_REWRITABLE|
BRASERO_MEDIUM_BLANK,
BRASERO_BURN_FLAG_DAO|
BRASERO_BURN_FLAG_BURNPROOF|
BRASERO_BURN_FLAG_DUMMY|
BRASERO_BURN_FLAG_NOGRACE,
BRASERO_BURN_FLAG_NONE);
/* DVD+W cdrecord capabilities are limited to blank media */
brasero_plugin_set_flags (plugin,
BRASERO_MEDIUM_DVDR_PLUS|
BRASERO_MEDIUM_BLANK,
BRASERO_BURN_FLAG_DAO|
BRASERO_BURN_FLAG_BURNPROOF|
BRASERO_BURN_FLAG_NOGRACE,
BRASERO_BURN_FLAG_NONE);
/* for DVD+RW cdrecord capabilities are limited no MERGE */
brasero_plugin_set_flags (plugin,
BRASERO_MEDIUM_DVDRW_PLUS|
BRASERO_MEDIUM_UNFORMATTED|
BRASERO_MEDIUM_BLANK,
BRASERO_BURN_FLAG_NOGRACE,
BRASERO_BURN_FLAG_NONE);
brasero_plugin_set_flags (plugin,
BRASERO_MEDIUM_DVDRW_PLUS|
BRASERO_MEDIUM_APPENDABLE|
BRASERO_MEDIUM_CLOSED|
BRASERO_MEDIUM_HAS_DATA,
BRASERO_BURN_FLAG_NOGRACE,
BRASERO_BURN_FLAG_NONE);
/* blanking/formatting caps and flags for +/sequential RW
* NOTE: restricted overwrite DVD-RW can't be formatted.
* moreover DVD+RW are formatted while DVD-RW sequential are blanked.
*/
output = brasero_caps_disc_new (BRASERO_MEDIUM_DVD|
BRASERO_MEDIUM_PLUS|
BRASERO_MEDIUM_REWRITABLE|
BRASERO_MEDIUM_APPENDABLE|
BRASERO_MEDIUM_SEQUENTIAL|
BRASERO_MEDIUM_CLOSED|
BRASERO_MEDIUM_HAS_DATA|
BRASERO_MEDIUM_UNFORMATTED|
BRASERO_MEDIUM_BLANK);
brasero_plugin_blank_caps (plugin, output);
g_slist_free (output);
brasero_plugin_set_blank_flags (plugin,
BRASERO_MEDIUM_DVDRW |
BRASERO_MEDIUM_BLANK|
BRASERO_MEDIUM_CLOSED |
BRASERO_MEDIUM_APPENDABLE|
BRASERO_MEDIUM_HAS_DATA|
BRASERO_MEDIUM_UNFORMATTED,
BRASERO_BURN_FLAG_NOGRACE|
BRASERO_BURN_FLAG_FAST_BLANK,
BRASERO_BURN_FLAG_NONE);
/* again DVD+RW don't support dummy */
brasero_plugin_set_blank_flags (plugin,
BRASERO_MEDIUM_DVDRW_PLUS|
BRASERO_MEDIUM_APPENDABLE|
BRASERO_MEDIUM_HAS_DATA|
BRASERO_MEDIUM_UNFORMATTED|
BRASERO_MEDIUM_BLANK|
BRASERO_MEDIUM_CLOSED,
BRASERO_BURN_FLAG_NOGRACE,
BRASERO_BURN_FLAG_NONE);
/* for blanking (CDRWs) */
output = brasero_caps_disc_new (media_rw);
brasero_plugin_blank_caps (plugin, output);
g_slist_free (output);
brasero_plugin_set_blank_flags (plugin,
media_rw,
BRASERO_BURN_FLAG_NOGRACE|
BRASERO_BURN_FLAG_FAST_BLANK,
BRASERO_BURN_FLAG_NONE);
/* add some configure options */
immed = brasero_plugin_conf_option_new (GCONF_KEY_IMMEDIATE_FLAG,
_("Enable the \"-immed\" flag (see cdrecord manual)"),
BRASERO_PLUGIN_OPTION_BOOL);
minbuf = brasero_plugin_conf_option_new (GCONF_KEY_MINBUF_VALUE,
_("Minimum drive buffer fill ratio (in %%) (see cdrecord manual):"),
BRASERO_PLUGIN_OPTION_INT);
brasero_plugin_conf_option_int_set_range (minbuf, 25, 95);
brasero_plugin_conf_option_bool_add_suboption (immed, minbuf);
brasero_plugin_add_conf_option (plugin, immed);
brasero_plugin_register_group (plugin, _(CDRTOOLS_DESCRIPTION));
}
G_MODULE_EXPORT void
brasero_plugin_check_config (BraseroPlugin *plugin)
{
gint version [3] = { 2, 0, -1};
brasero_plugin_test_app (plugin,
"cdrecord",
"--version",
"Cdrecord-ProDVD-ProBD-Clone %d.%d",
version);
}
|