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
|
/*
* Copyright (C) 2003 Ross Burton <ross@burtonini.com>
*
* Sound Juicer - sj-extracting.c
*
* This program 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.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*
* Authors: Ross Burton <ross@burtonini.com>
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "libgtkpod/gtkpod_app_iface.h"
#include "libgtkpod/gp_itdb.h"
#include "libgtkpod/misc.h"
#include "libgtkpod/misc_track.h"
#include "sound-juicer.h"
#include <sys/time.h>
#include <time.h>
#include <string.h>
#include <limits.h>
#include <glib.h>
#include <gio/gio.h>
#include <gtk/gtk.h>
#include <gdk/gdkx.h>
#include <brasero-volume.h>
#include "sj-error.h"
#include "sj-extracting.h"
#include "sj-main.h"
#include "sj-util.h"
#include "sj-inhibit.h"
#include "sj-genres.h"
#include "egg-play-preview.h"
typedef struct {
int seconds;
struct timeval time;
int ripped;
int taken;
} Progress;
typedef enum {
OVERWRITE_ALL = 1,
SKIP_ALL = 2,
NORMAL = 3
} OverWriteModes;
int overwrite_mode;
typedef enum {
BUTTON_SKIP = 1,
BUTTON_SKIP_ALL = 2,
BUTTON_OVERWRITE = 3,
BUTTON_OVERWRITE_ALL = 4,
BUTTON_DELETE_EVENT = GTK_RESPONSE_DELETE_EVENT,
} OverwriteDialogResponse;
/* files smaller than this are assumed to be corrupt */
#define MIN_FILE_SIZE 100000
/** If this module has been initialised yet. */
static gboolean initialised = FALSE;
/** If a track has been successfully extracted */
static gboolean successful_extract = FALSE;
/** The progress bar and Status bar */
static GtkWidget *progress_bar, *status_bar;
/** The widgets in the main UI */
static GtkWidget *extract_button, *title_entry, *artist_entry, *composer_entry, *genre_entry, *year_entry, *disc_number_entry, *track_listview;
static GtkTreeIter current;
/**
* A list of paths we have extracted music into. Contains allocated items, free
* the data and the list when finished.
*/
static GList *paths = NULL;
/**
* A list of files we have extracted.
*/
static GList *files = NULL;
/**
* The total number of tracks we are extracting.
*/
static int total_extracting;
/**
* The duration of the extracted tracks, only used so the album progress
* displays inter-track progress.
*/
static int current_duration;
/**
* The total duration of the tracks we are ripping.
*/
static int total_duration;
/**
* Snapshots of the progress used to calculate the speed and the ETA
*/
static Progress before;
/**
* The cookie returned from PowerManagement
*/
static guint cookie;
/**
* Build the absolute filename for the specified track.
*
* The base path is the extern variable 'base_uri', the formats to use are the
* extern variables 'path_pattern' and 'file_pattern'. Free the result when you
* have finished with it.
*/
static GFile *
build_filename (const TrackDetails *track, gboolean temp_filename, GError **error)
{
GFile *uri, *new;
gchar *realfile, *realpath, *filename, *scheme;
const gchar *extension;
size_t len_extension;
int max_realfile = INT_MAX;
GstEncodingProfile *profile;
g_object_get (extractor, "profile", &profile, NULL);
realpath = filepath_parse_pattern (path_pattern, track);
new = g_file_get_child (base_uri, realpath);
uri = new;
g_free (realpath);
if (profile == NULL) {
g_set_error (error, 0, 0, _("Failed to get output format"));
return NULL;
} else {
gchar *media_type;
media_type = rb_gst_encoding_profile_get_media_type (profile);
extension = rb_gst_media_type_to_extension (media_type);
g_free (media_type);
gst_encoding_profile_unref (profile);
}
len_extension = 1 + strlen (extension);
#if defined(NAME_MAX) && NAME_MAX > 0
max_realfile = NAME_MAX - len_extension;
#endif /* NAME_MAX */
#if defined(PATH_MAX) && PATH_MAX > 0
scheme = g_file_get_uri_scheme (uri);
if (scheme && !strcmp (scheme, "file")) {
gchar *path = g_file_get_path (uri);
size_t len_path = strlen (path) + 1;
max_realfile = MIN (max_realfile, PATH_MAX - len_path - len_extension);
g_free (path);
}
g_free (scheme);
#endif /* PATH_MAX */
if (max_realfile <= 0) {
g_set_error_literal (error, SJ_ERROR, SJ_ERROR_INTERNAL_ERROR, _("Name too long"));
return NULL;
}
realfile = filepath_parse_pattern (file_pattern, track);
if (temp_filename) {
filename = g_strdup_printf (".%.*s.%s", max_realfile-1, realfile, extension);
} else {
filename = g_strdup_printf ("%.*s.%s", max_realfile, realfile, extension);
}
new = g_file_get_child (uri, filename);
g_object_unref (uri); uri = new;
g_free (filename); g_free (realfile);
return uri;
}
static gboolean
find_next (void)
{
do {
gboolean extract = FALSE;
gtk_tree_model_get (GTK_TREE_MODEL (track_store), ¤t, COLUMN_EXTRACT, &extract, -1);
if (extract)
return TRUE;
} while (gtk_tree_model_iter_next (GTK_TREE_MODEL (track_store), ¤t));
return FALSE;
}
/**
* Cleanup the data used, and even enable the Extract button again.
*/
static void
cleanup (void)
{
/* We're not extracting any more */
extracting = FALSE;
brasero_drive_unlock (drive);
sj_uninhibit (cookie);
/* Remove any state icons from the model */
if (current.stamp) {
/* TODO: has to be a better way to do that test */
gtk_list_store_set (track_store, ¤t,
COLUMN_STATE, STATE_IDLE, -1);
}
/* Free the used data */
if (paths) {
g_list_deep_free (paths, NULL);
paths = NULL;
}
/* Forcibly invalidate the iterator */
current.stamp = 0;
gtk_button_set_label (GTK_BUTTON (extract_button), _("E_xtract"));
/* Clear the Status bar */
gtk_statusbar_push (GTK_STATUSBAR (status_bar), 0, "");
/* Clear the progress bar */
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (progress_bar), 0);
gtk_widget_hide (progress_bar);
gtk_widget_set_sensitive (title_entry, TRUE);
gtk_widget_set_sensitive (artist_entry, TRUE);
gtk_widget_set_sensitive (composer_entry, TRUE);
gtk_widget_set_sensitive (genre_entry, TRUE);
gtk_widget_set_sensitive (year_entry, TRUE);
gtk_widget_set_sensitive (disc_number_entry, TRUE);
/* Enabling the Menuitem */
set_action_enabled ("select-all", TRUE);
set_action_enabled ("deselect-all", TRUE);
set_action_enabled ("re-read", TRUE);
/*Enable the Extract column and Make the Title and Artist column Editable*/
g_object_set (G_OBJECT (toggle_renderer), "mode", GTK_CELL_RENDERER_MODE_ACTIVATABLE, NULL);
g_object_set (G_OBJECT (title_renderer), "editable", TRUE, NULL);
g_object_set (G_OBJECT (artist_renderer), "editable", TRUE, NULL);
}
/**
* Check if a file exists, can be written to, etc.
* Return true on continue, false on skip.
*/
static goffset
check_file_size (GFile *uri)
{
GFileInfo *gfile_info;
GError *error = NULL;
goffset size;
gfile_info = g_file_query_info (uri, G_FILE_ATTRIBUTE_STANDARD_SIZE, 0,
NULL, &error);
/* No existing file */
if (!gfile_info && error->code == G_IO_ERROR_NOT_FOUND) {
g_error_free (error);
return 0;
}
/* unexpected error condition - bad news */
if (!gfile_info) {
/* TODO: display an error dialog */
g_warning ("Cannot get file info: %s", error->message);
g_error_free (error);
return -1;
}
/* A file with that name does exist. Report the size. */
size = g_file_info_get_size (gfile_info);
g_object_unref (gfile_info);
return size;
}
static gboolean
confirm_overwrite_existing_file (GFile *uri, int *overwrite_mode, goffset info_size)
{
OverwriteDialogResponse ret;
GtkWidget *dialog;
GtkWidget *play_preview;
char *display_name, *filename, *size;
display_name = g_file_get_parse_name (uri);
#if GLIB_CHECK_VERSION(2,30,0)
size = g_format_size (info_size);
#else
size = g_format_size_for_display(info_size);
#endif
dialog = gtk_message_dialog_new (GTK_WINDOW (gtkpod_app), GTK_DIALOG_MODAL,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_NONE,
_("A file with the same name exists"));
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
_("A file called '%s' exists, size %s.\nDo you want to skip this track or overwrite it?"),
display_name, size);
g_free (display_name);
g_free (size);
filename = g_file_get_uri (uri);
play_preview = egg_play_preview_new_with_uri (filename);
gtk_container_add (GTK_CONTAINER (gtk_dialog_get_content_area (GTK_DIALOG (dialog))), play_preview);
g_free (filename);
gtk_dialog_add_button (GTK_DIALOG (dialog), _("_Skip"), BUTTON_SKIP);
gtk_dialog_add_button (GTK_DIALOG (dialog), _("S_kip All"), BUTTON_SKIP_ALL);
gtk_dialog_add_button (GTK_DIALOG (dialog), _("_Overwrite"), BUTTON_OVERWRITE);
gtk_dialog_add_button (GTK_DIALOG (dialog), _("Overwrite _All"), BUTTON_OVERWRITE_ALL);
gtk_dialog_set_default_response (GTK_DIALOG (dialog), BUTTON_SKIP);
gtk_widget_show_all (dialog);
ret = gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
switch (ret) {
case BUTTON_OVERWRITE_ALL:
*overwrite_mode = OVERWRITE_ALL;
return TRUE;
break;
case BUTTON_OVERWRITE:
return TRUE;
break;
case BUTTON_SKIP_ALL:
*overwrite_mode = SKIP_ALL;
return FALSE;
break;
case BUTTON_SKIP:
case BUTTON_DELETE_EVENT:
default:
return FALSE;
break;
}
return ret;
}
/**
* Find the name of the directory this file is in, create it, and return the
* directory.
*/
static char*
create_directory_for (GFile *uri, GError **error)
{
gboolean res;
GFile *parent;
char *string;
GError *io_error = NULL;
g_return_val_if_fail (uri != NULL, NULL);
parent = g_file_get_parent (uri);
res = make_directory_with_parents (parent, NULL, &io_error);
if (!res) {
if (io_error->code != G_IO_ERROR_EXISTS) {
g_set_error (error, SJ_ERROR, SJ_ERROR_CD_PERMISSION_ERROR,
_("Failed to create output directory: %s"),
io_error->message);
g_error_free (io_error);
return NULL;
}
g_error_free (io_error);
}
string = g_file_get_uri (parent);
g_object_unref (parent);
return string;
}
/* Prototypes for pop_and_extract */
static void on_completion_cb (SjExtractor *extractor, gpointer data);
static void on_error_cb (SjExtractor *extractor, GError *error, gpointer data);
/**
* The work horse of this file. Take the first entry from the pending list,
* update the UI, and start the extractor.
*/
static void
pop_and_extract (int *overwrite_mode)
{
if (current.stamp == 0) {
/* TODO: remove this test? */
g_assert_not_reached ();
} else {
TrackDetails *track = NULL;
char *directory;
GFile *file = NULL, *temp_file = NULL;
GError *error = NULL;
/* Pop the next track to extract */
gtk_tree_model_get (GTK_TREE_MODEL (track_store), ¤t, COLUMN_DETAILS, &track, -1);
/* Build the filename for this track */
file = build_filename (track, FALSE, &error);
if (error) {
goto error;
}
temp_file = build_filename (track, TRUE, &error);
if (error) {
goto error;
}
/* Delete the temporary file as giosink won't overwrite existing files */
g_file_delete (temp_file, NULL, NULL);
/* Create the directory it lives in */
directory = create_directory_for (file, &error);
if (error) {
goto error;
}
/* Save the directory name for later */
paths = g_list_append (paths, directory);
/* Save the file name for later */
files = g_list_append(files, g_file_get_path(file));
goffset file_size;
file_size = check_file_size (file);
/* Skip if destination file can't be accessed (unexpected error). */
/* Skip existing files if "skip all" is selected. */
if ((file_size == -1) ||
((file_size > MIN_FILE_SIZE) && (*overwrite_mode == SKIP_ALL))) {
successful_extract = FALSE;
on_completion_cb (NULL, overwrite_mode);
return;
}
/* What if the file already exists? */
if ((file_size > MIN_FILE_SIZE) &&
(*overwrite_mode != OVERWRITE_ALL) &&
(confirm_overwrite_existing_file (file, overwrite_mode, file_size) == FALSE)) {
successful_extract = FALSE;
on_completion_cb (NULL, overwrite_mode);
return;
}
/* OK, we can write/overwrite the file */
/* Update the state image */
gtk_list_store_set (track_store, ¤t,
COLUMN_STATE, STATE_EXTRACTING, -1);
/* Update the progress bars */
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (progress_bar),
CLAMP ((float)current_duration / (float)total_duration, 0.0, 1.0));
/* Set the Treelist focus to the item to be extracted */
GtkTreePath* path = gtk_tree_model_get_path(GTK_TREE_MODEL (track_store), ¤t);
gtk_tree_view_set_cursor(GTK_TREE_VIEW (track_listview), path, NULL, TRUE);
gtk_tree_path_free(path);
/* Now actually do the extraction */
sj_extractor_extract_track (extractor, track, temp_file, &error);
if (error) {
goto error;
} else
successful_extract = TRUE;
goto local_cleanup;
error:
successful_extract = FALSE;
on_error_cb (NULL, error, NULL);
g_error_free (error);
local_cleanup:
g_object_unref (file);
g_object_unref (temp_file);
}
}
/**
* Foreach callback to populate pending with the list of TrackDetails to
* extract.
*/
static gboolean
extract_track_foreach_cb (GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data)
{
gboolean extract;
TrackDetails *track;
gtk_tree_model_get (model, iter,
COLUMN_EXTRACT, &extract,
COLUMN_DETAILS, &track,
-1);
if (extract) {
++total_extracting;
total_duration += track->duration;
}
return FALSE;
}
/**
* Update the ETA and Speed labels
*/
static void
update_speed_progress (SjExtractor *extractor, float speed, int eta)
{
char *eta_str;
if (eta >= 0) {
eta_str = g_strdup_printf (_("Estimated time left: %d:%02d (at %0.1f\303\227)"), eta / 60, eta % 60, speed);
} else {
eta_str = g_strdup (_("Estimated time left: unknown"));
}
gtk_statusbar_push (GTK_STATUSBAR (status_bar), 0, eta_str);
g_free (eta_str);
}
/**
* Callback from SjExtractor to report progress.
*/
static void
on_progress_cb (SjExtractor *extractor, const int seconds, gpointer data)
{
/* Album progress */
if (total_duration != 0) {
float percent;
percent = CLAMP ((float)(current_duration + seconds) / (float)total_duration, 0, 1);
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (progress_bar), percent);
if (before.seconds == -1) {
before.seconds = current_duration + seconds;
gettimeofday(&before.time, NULL);
} else {
struct timeval time;
int taken;
float speed;
gettimeofday(&time, NULL);
taken = time.tv_sec + (time.tv_usec / 1000000.0)
- (before.time.tv_sec + (before.time.tv_usec / 1000000.0));
if (taken >= 4) {
before.taken += taken;
before.ripped += current_duration + seconds - before.seconds;
speed = (float) before.ripped / (float) before.taken;
update_speed_progress (extractor, speed, (int) ((total_duration - current_duration - seconds) / speed));
before.seconds = current_duration + seconds;
gettimeofday(&before.time, NULL);
}
}
}
}
/**
* A list foreach function which will find the deepest common directory in a
* list of filenames.
* @param path the path in this iteration
* @param ret a char** to the deepest common path
*/
static void
base_finder (char *path, char **ret)
{
if (*ret == NULL) {
/* If no common directory so far, this must be it. */
*ret = g_strdup (path);
return;
} else {
/* Urgh */
char *i, *j, *marker;
i = marker = path;
j = *ret;
while (*i == *j) {
if (*i == G_DIR_SEPARATOR) marker = i;
if (*i == 0) {
marker = i;
break;
}
i = g_utf8_next_char (i);
j = g_utf8_next_char (j);
}
g_free (*ret);
*ret = g_strndup (path, marker - path + 1);
}
}
static gboolean
import_files_to_itdb(gpointer *data)
{
GList *file_list = files;
gchar *statusmsg;
iTunesDB *itdb;
GError *error = NULL;
gboolean result = TRUE; /* Result of file adding */
GString *errors = g_string_new("");
itdb = gp_get_selected_itdb();
if (!itdb) {
gtkpod_warning(_("%d were ripped from the CD but no repository was selected. Please import them manually."), g_list_length(files));
g_string_free(errors, TRUE);
g_list_free_full(files, g_free);
return TRUE;
}
block_widgets();
gtkpod_statusbar_busy_push();
gtkpod_statusbar_reset_progress(g_list_length(files));
while(file_list) {
gchar *file = file_list->data;
statusmsg = g_strdup_printf(_("Importing file '%s'. Please wait..."), file);
error = NULL;
result &= add_track_by_filename(itdb, file, NULL, FALSE, NULL, NULL, &error);
if (error) {
gchar *buf = g_strdup_printf(_("%s\n"), error->message);
g_string_append(errors, buf);
g_free(buf);
g_error_free(error);
error = NULL;
}
gtkpod_statusbar_increment_progress_ticks(1, statusmsg);
file_list = file_list->next;
}
gtkpod_statusbar_busy_pop();
release_widgets();
/* Final save of remaining added tracks */
gp_save_itdb(itdb);
/* clear log of non-updated tracks */
display_non_updated((void *) -1, NULL);
/* display log of updated tracks */
display_updated(NULL, NULL);
/* display log of detected duplicates */
gp_duplicate_remove(NULL, NULL);
/* Set the itdb's playlist as the selected - updates the display */
gtkpod_set_current_playlist(itdb_playlist_mpl(itdb));
/* Were all files successfully added? */
if (!result) {
if (errors->len > 0) {
gtkpod_confirmation(-1, /* gint id, */
TRUE, /* gboolean modal, */
_("File Addition Errors"), /* title */
_("Some files were not added successfully"), /* label */
errors->str, /* scrolled text */
NULL, 0, NULL, /* option 1 */
NULL, 0, NULL, /* option 2 */
TRUE, /* gboolean confirm_again, */
"show_file_addition_errors",/* confirm_again_key,*/
CONF_NULL_HANDLER, /* ConfHandler ok_handler,*/
NULL, /* don't show "Apply" button */
NULL, /* cancel_handler,*/
NULL, /* gpointer user_data1,*/
NULL); /* gpointer user_data2,*/
}
else {
gtkpod_warning(_("Some tracks failed to be added but no errors were reported."));
}
}
g_string_free(errors, TRUE);
g_list_free_full(files, g_free);
return TRUE;
}
/**
* Handle any post-rip actions
*/
static void
finished_actions (void)
{
/* Maybe eject */
if (eject_finished && successful_extract) {
brasero_drive_eject (drive, FALSE, NULL);
}
gdk_threads_add_idle((GSourceFunc) import_files_to_itdb, NULL);
}
/**
* Callback from SjExtractor to report completion.
*/
static void
on_completion_cb (SjExtractor *extractor, gpointer data)
{
TrackDetails *track = NULL;
GFile *temp_file, *new_file;
GError *error = NULL;
/* Only manipulate the track state if we have an album, as we might be here if
the disk was ejected mid-rip. */
if (gtk_tree_model_iter_n_children (GTK_TREE_MODEL (track_store), NULL) > 0) {
/* Remove the track state */
gtk_list_store_set (track_store, ¤t, COLUMN_STATE, STATE_IDLE, -1);
/* Uncheck the Extract check box */
gtk_list_store_set (track_store, ¤t, COLUMN_EXTRACT, FALSE, -1);
}
gtk_tree_model_get (GTK_TREE_MODEL (track_store), ¤t,
COLUMN_DETAILS, &track, -1);
temp_file = build_filename (track, TRUE, NULL);
new_file = build_filename (track, FALSE, NULL);
/* We could be here because the user skipped an overwrite, in which case temp_file won't exist */
if (g_file_query_exists (temp_file, NULL))
g_file_move (temp_file, new_file, G_FILE_COPY_OVERWRITE, NULL, NULL, NULL, &error);
g_object_unref (temp_file);
g_object_unref (new_file);
if (error) {
on_error_cb (NULL, error, NULL);
g_error_free (error);
} else if (find_next ()) {
/* Increment the duration */
current_duration += track->duration;
/* And go and do it all again */
pop_and_extract ((int*)data);
} else {
/* If we got here then the track state has been set to IDLE already, so
unset the current iterator */
current.stamp = 0;
finished_actions ();
cleanup ();
}
}
/**
* Callback from SjExtractor to report errors.
*/
static void
on_error_cb (SjExtractor *extractor, GError *error, gpointer data)
{
GtkWidget *dialog;
/* Display a nice dialog */
dialog = gtk_message_dialog_new (GTK_WINDOW (gtkpod_app), 0,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_CLOSE,
"%s", _("Sound Juicer could not extract this CD."));
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
"%s: %s", _("Reason"), error->message);
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
/* No need to free the error passed in */
cleanup ();
}
/**
* Cancel in the progress dialog clicked or progress dialog has been closed.
*/
void
on_progress_cancel_clicked (GtkWidget *button, gpointer user_data)
{
TrackDetails *track = NULL;
GFile *file;
GError *error = NULL;
sj_extractor_cancel_extract (extractor);
gtk_tree_model_get (GTK_TREE_MODEL (track_store), ¤t,
COLUMN_DETAILS, &track, -1);
file = build_filename (track, TRUE, NULL);
g_file_delete (file, NULL, &error);
g_object_unref (file);
if (error) {
on_error_cb (NULL, error, NULL);
g_error_free (error);
} else {
cleanup ();
}
}
/**
* Entry point from the interface.
*/
G_MODULE_EXPORT void
on_extract_activate (GtkWidget *button, gpointer user_data)
{
char *reason = NULL;
/* If extracting, then cancel the extract */
if (extracting) {
on_progress_cancel_clicked (NULL, NULL);
return;
}
/* Populate the pending list */
current.stamp = 0;
total_extracting = 0;
current_duration = total_duration = 0;
before.seconds = -1;
overwrite_mode = NORMAL;
gtk_tree_model_foreach (GTK_TREE_MODEL (track_store), extract_track_foreach_cb, NULL);
/* If the pending list is still empty, return */
if (total_extracting == 0) {
/* Should never reach here */
g_warning ("No tracks selected for extracting");
return;
}
/* Initialise ourself */
if (!initialised) {
/* Connect to the SjExtractor signals */
g_signal_connect (extractor, "progress", G_CALLBACK (on_progress_cb), NULL);
g_signal_connect (extractor, "completion", G_CALLBACK (on_completion_cb), (gpointer)&overwrite_mode);
g_signal_connect (extractor, "error", G_CALLBACK (on_error_cb), NULL);
extract_button = GET_WIDGET ("extract_button");
title_entry = GET_WIDGET ("title_entry");
artist_entry = GET_WIDGET ("artist_entry");
composer_entry = GET_WIDGET ("composer_entry");
genre_entry = GET_WIDGET ("genre_entry");
year_entry = GET_WIDGET ("year_entry");
disc_number_entry = GET_WIDGET ("disc_number_entry");
track_listview = GET_WIDGET ("track_listview");
progress_bar = GET_WIDGET ("progress_bar");
status_bar = GET_WIDGET ("status_bar");
initialised = TRUE;
}
/* Change the label to Stop while extracting*/
gtk_button_set_label (GTK_BUTTON (extract_button), _("_Stop"));
gtk_widget_show (progress_bar);
/* Reset the progress dialog */
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (progress_bar), 0);
update_speed_progress (NULL, 0.0, -1);
/* Disable the widgets in the main UI*/
gtk_widget_set_sensitive (title_entry, FALSE);
gtk_widget_set_sensitive (artist_entry, FALSE);
gtk_widget_set_sensitive (composer_entry, FALSE);
gtk_widget_set_sensitive (genre_entry, FALSE);
gtk_widget_set_sensitive (year_entry, FALSE);
gtk_widget_set_sensitive (disc_number_entry, FALSE);
/* Disable the menuitems in the main menu*/
set_action_enabled ("select-all", FALSE);
set_action_enabled ("deselect-all", FALSE);
set_action_enabled ("re-read", FALSE);
/* Disable the Extract column */
g_object_set (G_OBJECT (toggle_renderer), "mode", GTK_CELL_RENDERER_MODE_INERT, NULL);
g_object_set (G_OBJECT (title_renderer), "editable", FALSE, NULL);
g_object_set (G_OBJECT (artist_renderer), "editable", FALSE, NULL);
if (! brasero_drive_lock (drive, _("Extracting audio from CD"), &reason)) {
g_warning ("Could not lock drive: %s", reason);
g_free (reason);
}
cookie = sj_inhibit (g_get_application_name (),
_("Extracting audio from CD"),
GDK_WINDOW_XID(gtk_widget_get_window (GTK_WIDGET(gtkpod_app))));
/* Save the genre */
save_genre (genre_entry);
/* Start the extracting */
extracting = TRUE;
gtk_tree_model_get_iter_first (GTK_TREE_MODEL (track_store), ¤t);
find_next ();
pop_and_extract (&overwrite_mode);
}
/*
* TODO: These should be moved somewhere else, probably with build_pattern at
* the top, into sj-patterns.[ch] or something.
*/
/**
* Perform magic on a path to make it safe.
*
* This will always replace '/' with ' ', and optionally make the file name
* shell-friendly. This involves removing [?*\ ] and replacing with '_'. Also
* any leading periods are removed so that the files don't end up being hidden.
*
* This function doesn't change the input, and returns an allocated
* string.
*/
static char*
sanitize_path (const char* str, const char* filesystem_type)
{
gchar *res = NULL;
gchar *s;
g_return_val_if_fail (str != NULL, NULL);
/* Skip leading periods, otherwise files disappear... */
while (*str == '.')
str++;
s = g_strdup(str);
/* Replace path seperators with a hyphen */
g_strdelimit (s, "/", '-');
/* filesystem specific sanitizing */
if (filesystem_type) {
if ((strcmp (filesystem_type, "vfat") == 0) ||
(strcmp (filesystem_type, "ntfs") == 0)) {
g_strdelimit (s, "\\:*?\"<>|", ' ');
}
}
if (strip_chars) {
/* Replace separators with a hyphen */
g_strdelimit (s, "\\:|", '-');
/* Replace all other weird characters to whitespace */
g_strdelimit (s, "*?&!\'\"$()`>{}[]<>", ' ');
/* Replace all whitespace with underscores */
/* TODO: I'd like this to compress whitespace aswell */
g_strdelimit (s, "\t ", '_');
}
res = g_filename_from_utf8(s, -1, NULL, NULL, NULL);
g_free(s);
return res ? res : g_strdup(str);
}
/*
* Return sanitized name or default if name is empty
*/
static char*
sanitize_name (const char *name, const char *default_name,
const char *filesystem_type)
{
const char *n = (sj_str_is_empty (name)) ? default_name : name;
return sanitize_path (n, filesystem_type);
}
/*
* Return lowercase sanitized name or default if name is empty
*/
static char*
lower_sanitize_name (const char *name, const char *default_name,
const char *filesystem_type)
{
char *tmp, *s;
const char *n = (sj_str_is_empty (name)) ? default_name : name;
tmp = g_utf8_strdown (n, -1);
s = sanitize_path (tmp, filesystem_type);
g_free (tmp);
return s;
}
/*
* Return sanitized sortname or name if sortname is empty or default
* if name is empty
*/
static char*
sanitize_sortname (const char *sortname, const char *name,
const char *default_name, const char *filesystem_type)
{
const char *n = (sj_str_is_empty (sortname)) ? name : sortname;
return sanitize_name (n, default_name, filesystem_type);
}
/*
* Return lowercase sanitized sortname or name if sortname is empty or
* default if name is empty
*/
static char*
lower_sanitize_sortname (const char *sortname, const char *name,
const char *default_name, const char *filesystem_type)
{
const char *n = (sj_str_is_empty (sortname)) ? name : sortname;
return lower_sanitize_name (n, default_name, filesystem_type);
}
/**
* Parse a filename pattern and replace markers with values from a TrackDetails
* structure.
*
* Valid markers so far are:
* %at -- album title
* %ay -- album year
* %aa -- album artist
* %aA -- album artist (lowercase)
* %as -- album artist sortname
* %aS -- album artist sortname (lowercase)
* %ac -- album composer
* %aC -- album composer (lowercase)
* %ap -- album composer (sortable)
* %aP -- album composer (sortable lowercase)
* %tn -- track number (i.e 8)
* %tN -- track number, zero padded (i.e 08)
* %tt -- track title
* %tT -- track title (lowercase)
* %ta -- track artist
* %tA -- track artist (lowercase)
* %ts -- track artist sortname
* %tS -- track artist sortname (lowercase)
* %tc -- track composer
* %tC -- track composer (lowercase)
* %tp -- track composer (sortable)
* %tP -- track composer (sortable lowercase)
* %dn -- disc and track number, track zero padded (i.e Disk 2 - 06, or 06)
* %dN -- condensed disc and track number, zero padded (i.e d02t06, or 06)
*/
char*
filepath_parse_pattern (const char* pattern, const TrackDetails *track)
{
/* p is the pattern iterator, i is a general purpose iterator */
const char *p;
char *tmp, *str, *filesystem_type = NULL;
GString *s;
GFileInfo *fs_info;
const char *default_album = _("Unknown Album");
const char *default_artist = _("Unknown Artist");
const char *default_composer = _("Unknown Composer");
const char *default_track = _("Unknown Track");
if (pattern == NULL || pattern[0] == 0)
return g_strdup (" ");
fs_info = g_file_query_filesystem_info (base_uri, G_FILE_ATTRIBUTE_FILESYSTEM_TYPE,
NULL, NULL);
if (fs_info) {
filesystem_type = g_file_info_get_attribute_as_string (fs_info, G_FILE_ATTRIBUTE_FILESYSTEM_TYPE);
g_object_unref (fs_info);
}
s = g_string_new (NULL);
p = pattern;
while (*p) {
char *string = NULL;
gboolean go_next = TRUE;
/* If not a % marker, copy and continue */
if (*p != '%') {
if ((*p == ' ') && (strip_chars)) {
g_string_append_c (s, '_');
} else {
g_string_append_unichar (s, g_utf8_get_char (p));
}
p = g_utf8_next_char (p);
/* Explicit increment as we continue past the increment */
continue;
}
/* Is a % marker, go to next and see what to do */
switch (*++p) {
case '%':
/*
* Literal %
*/
g_string_append_c (s, '%');
break;
case 'a':
/*
* Album tag
*/
switch (*++p) {
case 't':
string = sanitize_name (track->album->title, default_album,
filesystem_type);
break;
case 'y':
if (track->album->release_date && gst_date_time_has_year (track->album->release_date)) {
tmp = g_strdup_printf ("%d", gst_date_time_get_year (track->album->release_date));
string = sanitize_path (tmp, filesystem_type);
g_free (tmp);
}
break;
case 'T':
string = lower_sanitize_name (track->album->title, default_album,
filesystem_type);
break;
case 'a':
string = sanitize_name (track->album->artist, default_artist,
filesystem_type);
break;
case 'A':
string = lower_sanitize_name (track->album->artist, default_artist,
filesystem_type);
break;
case 's':
string = sanitize_sortname (track->album->artist_sortname,
track->album->artist, default_artist,
filesystem_type);
break;
case 'S':
string = lower_sanitize_sortname (track->album->artist_sortname,
track->album->artist, default_artist,
filesystem_type);
break;
case 'c':
string = sanitize_name (track->album->composer, default_composer,
filesystem_type);
break;
case 'C':
string = lower_sanitize_name (track->album->composer, default_composer,
filesystem_type);
break;
case 'p':
string = sanitize_sortname (track->album->composer_sortname,
track->album->composer, default_composer,
filesystem_type);
break;
case 'P':
string = lower_sanitize_sortname (track->album->composer_sortname,
track->album->composer,
default_composer, filesystem_type);
break;
default:
/* append "%a", and then the unicode character */
g_string_append (s, "%a");
p += 2;
g_string_append_unichar (s, g_utf8_get_char (p));
p = g_utf8_next_char (p);
go_next = FALSE;
}
break;
case 't':
/*
* Track tag
*/
switch (*++p) {
case 't':
string = sanitize_name (track->title, default_track, filesystem_type);
break;
case 'T':
string = lower_sanitize_name (track->title, default_track,
filesystem_type);
break;
case 'a':
string = sanitize_name (track->artist, default_artist, filesystem_type);
break;
case 'A':
string = lower_sanitize_name (track->artist, default_artist,
filesystem_type);
break;
case 's':
string = sanitize_sortname (track->artist_sortname, track->artist,
default_artist, filesystem_type);
break;
case 'S':
string = lower_sanitize_sortname (track->artist_sortname, track->artist,
default_artist, filesystem_type);
break;
case 'c':
string = sanitize_name (track->composer, default_composer,
filesystem_type);
break;
case 'C':
string = lower_sanitize_name (track->composer, default_composer,
filesystem_type);
break;
case 'p':
string = sanitize_sortname (track->composer_sortname, track->composer,
default_composer, filesystem_type);
break;
case 'P':
string = lower_sanitize_sortname (track->composer_sortname,
track->composer, default_composer,
filesystem_type);
break;
case 'n':
/* Track number */
string = g_strdup_printf ("%d", track->number);
break;
case 'N':
/* Track number, zero-padded */
string = g_strdup_printf ("%02d", track->number);
break;
default:
/* append "%a", and then the unicode character */
g_string_append (s, "%t");
p += 2;
g_string_append_unichar (s, g_utf8_get_char (p));
p = g_utf8_next_char (p);
go_next = FALSE;
}
break;
case 'd':
/*
* Disc and track tag
*/
switch (*++p) {
case 'n':
/* Disc and track number */
if (track->album->disc_number > 0) {
char *s = g_strdup_printf ("Disc %d - %02d", track->album->disc_number, track->number);
string = sanitize_path (s, filesystem_type); /* strip spaces if required */
g_free (s);
} else {
string = g_strdup_printf ("%d", track->number);
}
break;
case 'N':
/* Disc and track number, zero padded */
if (track->album->disc_number > 0) {
string = g_strdup_printf ("d%dt%02d", track->album->disc_number, track->number);
} else {
string = g_strdup_printf ("%02d", track->number);
}
break;
default:
g_string_append (s, "%d");
p += 2;
g_string_append_unichar (s, g_utf8_get_char (p));
p = g_utf8_next_char (p);
go_next = FALSE;
}
break;
default:
/* append "%", and then the unicode character */
g_string_append_c (s, '%');
p += 1;
g_string_append_unichar (s, g_utf8_get_char (p));
p = g_utf8_next_char (p);
}
if (string)
g_string_append (s, string);
g_free (string);
if (go_next)
++p;
}
g_free (filesystem_type);
str = s->str;
g_string_free (s, FALSE);
return str;
}
|