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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Copyright (C) 2006 Jonathan Matthew <jonathan@kaolin.wh9.net>
*
* 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.
*
* The Rhythmbox authors hereby grant permission for non-GPL compatible
* GStreamer plugins to be used and distributed together with GStreamer
* and Rhythmbox. This permission is above and beyond the permissions granted
* by the GPL license by which Rhythmbox 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.
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/
#include "config.h"
#include <gtk/gtk.h>
#include <glib/gi18n.h>
#include "rb-entry-view.h"
#include "rb-missing-files-source.h"
#include "rb-song-info.h"
#include "rb-util.h"
#include "rb-debug.h"
/**
* SECTION:rb-missing-files-source
* @short_description: source displaying files missing from the library
*
* This source displays files that rhythmbox cannot find at the expected
* locations. On startup, it does a file access check for every file
* in the library, hiding those that fail. This source sets up a
* query model that matches only hidden entries. It displays the file
* location and the last time the file was successfully accessed.
*
* The source only displayed in the source list when there are hidden
* entries to show.
*/
static void rb_missing_files_source_class_init (RBMissingFilesSourceClass *klass);
static void rb_missing_files_source_init (RBMissingFilesSource *source);
static void rb_missing_files_source_constructed (GObject *object);
static void rb_missing_files_source_dispose (GObject *object);
static void rb_missing_files_source_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec);
static void rb_missing_files_source_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec);
static RBEntryView *impl_get_entry_view (RBSource *source);
static void impl_song_properties (RBSource *source);
static void impl_delete (RBSource *source);
static void impl_get_status (RBDisplayPage *page, char **text, char **progress_text, float *progress);
static void rb_missing_files_source_songs_show_popup_cb (RBEntryView *view,
gboolean over_entry,
RBMissingFilesSource *source);
static void rb_missing_files_source_songs_sort_order_changed_cb (GObject *object,
GParamSpec *pspec,
RBMissingFilesSource *source);
#define MISSING_FILES_SOURCE_SONGS_POPUP_PATH "/MissingFilesViewPopup"
struct RBMissingFilesSourcePrivate
{
RhythmDB *db;
RBEntryView *view;
};
G_DEFINE_TYPE (RBMissingFilesSource, rb_missing_files_source, RB_TYPE_SOURCE);
static void
rb_missing_files_source_class_init (RBMissingFilesSourceClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
RBDisplayPageClass *page_class = RB_DISPLAY_PAGE_CLASS (klass);
RBSourceClass *source_class = RB_SOURCE_CLASS (klass);
object_class->dispose = rb_missing_files_source_dispose;
object_class->constructed = rb_missing_files_source_constructed;
object_class->set_property = rb_missing_files_source_set_property;
object_class->get_property = rb_missing_files_source_get_property;
page_class->get_status = impl_get_status;
source_class->impl_get_entry_view = impl_get_entry_view;
source_class->impl_can_rename = (RBSourceFeatureFunc) rb_false_function;
source_class->impl_can_cut = (RBSourceFeatureFunc) rb_false_function;
source_class->impl_can_delete = (RBSourceFeatureFunc) rb_true_function;
source_class->impl_can_move_to_trash = (RBSourceFeatureFunc) rb_false_function;
source_class->impl_can_copy = (RBSourceFeatureFunc) rb_false_function;
source_class->impl_can_add_to_queue = (RBSourceFeatureFunc) rb_false_function;
source_class->impl_delete = impl_delete;
source_class->impl_song_properties = impl_song_properties;
source_class->impl_try_playlist = (RBSourceFeatureFunc) rb_false_function;
source_class->impl_can_pause = (RBSourceFeatureFunc) rb_false_function;
g_type_class_add_private (klass, sizeof (RBMissingFilesSourcePrivate));
}
static void
rb_missing_files_source_init (RBMissingFilesSource *source)
{
gint size;
GdkPixbuf *pixbuf;
source->priv = G_TYPE_INSTANCE_GET_PRIVATE (source, RB_TYPE_MISSING_FILES_SOURCE, RBMissingFilesSourcePrivate);
gtk_icon_size_lookup (RB_SOURCE_ICON_SIZE, &size, NULL);
pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (),
"dialog-warning",
size,
0, NULL);
g_object_set (source, "pixbuf", pixbuf, NULL);
if (pixbuf != NULL) {
g_object_unref (pixbuf);
}
}
static void
rb_missing_files_source_constructed (GObject *object)
{
GObject *shell_player;
RBMissingFilesSource *source;
RBShell *shell;
GPtrArray *query;
RhythmDBQueryModel *model;
RhythmDBEntryType *entry_type;
RB_CHAIN_GOBJECT_METHOD (rb_missing_files_source_parent_class, constructed, object);
source = RB_MISSING_FILES_SOURCE (object);
g_object_get (source,
"shell", &shell,
"entry-type", &entry_type,
NULL);
g_object_get (shell,
"db", &source->priv->db,
"shell-player", &shell_player,
NULL);
g_object_unref (shell);
/* construct real query */
query = rhythmdb_query_parse (source->priv->db,
RHYTHMDB_QUERY_PROP_EQUALS,
RHYTHMDB_PROP_TYPE,
entry_type,
RHYTHMDB_QUERY_PROP_EQUALS,
RHYTHMDB_PROP_HIDDEN,
TRUE,
RHYTHMDB_QUERY_END);
g_object_unref (entry_type);
model = rhythmdb_query_model_new (source->priv->db, query,
NULL, NULL, NULL, FALSE);
rhythmdb_query_free (query);
g_object_set (model, "show-hidden", TRUE, NULL);
/* set up entry view */
source->priv->view = rb_entry_view_new (source->priv->db, shell_player,
FALSE, FALSE);
g_object_unref (shell_player);
rb_entry_view_set_model (source->priv->view, model);
rb_entry_view_append_column (source->priv->view, RB_ENTRY_VIEW_COL_TRACK_NUMBER, FALSE);
rb_entry_view_append_column (source->priv->view, RB_ENTRY_VIEW_COL_TITLE, TRUE);
/* rb_entry_view_append_column (source->priv->view, RB_ENTRY_VIEW_COL_GENRE, FALSE); */
rb_entry_view_append_column (source->priv->view, RB_ENTRY_VIEW_COL_ARTIST, FALSE);
rb_entry_view_append_column (source->priv->view, RB_ENTRY_VIEW_COL_ALBUM, FALSE);
rb_entry_view_append_column (source->priv->view, RB_ENTRY_VIEW_COL_LOCATION, TRUE);
rb_entry_view_append_column (source->priv->view, RB_ENTRY_VIEW_COL_LAST_SEEN, TRUE);
rb_entry_view_set_columns_clickable (source->priv->view, TRUE);
gtk_container_add (GTK_CONTAINER (source), GTK_WIDGET (source->priv->view));
g_signal_connect_object (source->priv->view, "show_popup",
G_CALLBACK (rb_missing_files_source_songs_show_popup_cb), source, 0);
g_signal_connect_object (source->priv->view, "notify::sort-order",
G_CALLBACK (rb_missing_files_source_songs_sort_order_changed_cb), source, 0);
gtk_widget_show_all (GTK_WIDGET (source));
g_object_set (source, "query-model", model, NULL);
g_object_unref (model);
}
static void
rb_missing_files_source_dispose (GObject *object)
{
RBMissingFilesSource *source = RB_MISSING_FILES_SOURCE (object);
if (source->priv->db != NULL) {
g_object_unref (source->priv->db);
source->priv->db = NULL;
}
G_OBJECT_CLASS (rb_missing_files_source_parent_class)->dispose (object);
}
static RBEntryView *
impl_get_entry_view (RBSource *asource)
{
RBMissingFilesSource *source = RB_MISSING_FILES_SOURCE (asource);
return source->priv->view;
}
static void
rb_missing_files_source_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
/*RBMissingFilesSource *source = RB_MISSING_FILES_SOURCE (object);*/
switch (prop_id)
{
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
rb_missing_files_source_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
/*RBMissingFilesSource *source = RB_MISSING_FILES_SOURCE (object);*/
switch (prop_id)
{
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
/**
* rb_missing_files_source_new:
* @shell: the #RBShell instance
* @library: the #RBLibrarySource instance
*
* Creates the missing files source. It extracts the
* entry type from the library source instance, so it
* currently only works for files in the library, but
* it would be trivial to make it use any source type
* that did file access checks for its contents.
*
* Return value: the #RBMissingFilesSource
*/
RBSource *
rb_missing_files_source_new (RBShell *shell,
RBLibrarySource *library)
{
RBSource *source;
RhythmDBEntryType *entry_type;
g_object_get (library, "entry-type", &entry_type, NULL);
source = RB_SOURCE (g_object_new (RB_TYPE_MISSING_FILES_SOURCE,
"name", _("Missing Files"),
"entry-type", entry_type,
"shell", shell,
"visibility", FALSE,
"hidden-when-empty", TRUE,
NULL));
g_object_unref (entry_type);
return source;
}
static void
rb_missing_files_source_songs_show_popup_cb (RBEntryView *view,
gboolean over_entry,
RBMissingFilesSource *source)
{
if (over_entry)
_rb_display_page_show_popup (RB_DISPLAY_PAGE (source), MISSING_FILES_SOURCE_SONGS_POPUP_PATH);
}
static void
impl_song_properties (RBSource *asource)
{
RBMissingFilesSource *source = RB_MISSING_FILES_SOURCE (asource);
GtkWidget *song_info = NULL;
g_return_if_fail (source->priv->view != NULL);
song_info = rb_song_info_new (asource, NULL);
if (song_info)
gtk_widget_show_all (song_info);
else
rb_debug ("failed to create dialog, or no selection!");
}
static void
impl_delete (RBSource *asource)
{
RBMissingFilesSource *source = RB_MISSING_FILES_SOURCE (asource);
GList *sel, *tem;
sel = rb_entry_view_get_selected_entries (source->priv->view);
for (tem = sel; tem != NULL; tem = tem->next) {
rhythmdb_entry_delete (source->priv->db, tem->data);
rhythmdb_commit (source->priv->db);
}
g_list_foreach (sel, (GFunc)rhythmdb_entry_unref, NULL);
g_list_free (sel);
}
static void
rb_missing_files_source_songs_sort_order_changed_cb (GObject *object,
GParamSpec *pspec,
RBMissingFilesSource *source)
{
rb_entry_view_resort_model (RB_ENTRY_VIEW (object));
}
static void
impl_get_status (RBDisplayPage *page, char **text, char **progress_text, float *progress)
{
RhythmDBQueryModel *model;
gint count;
g_object_get (page, "query-model", &model, NULL);
count = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (model), NULL);
g_object_unref (model);
*text = g_strdup_printf (ngettext ("%d missing file", "%d missing files", count),
count);
}
|