2009-03-13 18:43:16 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2009 The Music Player Daemon Project
|
|
|
|
* http://www.musicpd.org
|
2008-10-08 10:48:48 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2008-10-08 10:48:48 +02:00
|
|
|
*/
|
|
|
|
|
2009-09-24 21:39:46 +02:00
|
|
|
#include "update_internal.h"
|
2008-10-08 10:48:48 +02:00
|
|
|
#include "update.h"
|
2008-10-08 11:07:35 +02:00
|
|
|
#include "database.h"
|
2008-10-14 11:10:49 +02:00
|
|
|
#include "mapper.h"
|
2009-01-08 21:20:41 +01:00
|
|
|
#include "archive_list.h"
|
2008-10-08 10:48:48 +02:00
|
|
|
#include "playlist.h"
|
2009-01-01 18:12:00 +01:00
|
|
|
#include "event_pipe.h"
|
2009-01-04 20:42:43 +01:00
|
|
|
#include "notify.h"
|
2008-10-08 10:48:48 +02:00
|
|
|
#include "update.h"
|
2008-10-14 22:38:14 +02:00
|
|
|
#include "idle.h"
|
2009-01-04 20:30:27 +01:00
|
|
|
#include "stats.h"
|
2009-01-03 13:19:01 +01:00
|
|
|
#include "main.h"
|
2009-01-08 21:20:41 +01:00
|
|
|
#include "config.h"
|
2008-10-08 10:48:48 +02:00
|
|
|
|
2008-10-20 22:18:12 +02:00
|
|
|
#include <glib.h>
|
|
|
|
|
2008-12-29 17:28:32 +01:00
|
|
|
#include <assert.h>
|
2008-12-29 17:29:49 +01:00
|
|
|
|
2008-10-09 19:31:31 +02:00
|
|
|
static enum update_progress {
|
2008-10-08 10:48:48 +02:00
|
|
|
UPDATE_PROGRESS_IDLE = 0,
|
|
|
|
UPDATE_PROGRESS_RUNNING = 1,
|
|
|
|
UPDATE_PROGRESS_DONE = 2
|
|
|
|
} progress;
|
|
|
|
|
2008-10-09 19:41:58 +02:00
|
|
|
static bool modified;
|
|
|
|
|
2008-12-28 22:09:42 +01:00
|
|
|
static GThread *update_thr;
|
2008-10-08 10:48:48 +02:00
|
|
|
|
2008-10-09 19:20:05 +02:00
|
|
|
static const unsigned update_task_id_max = 1 << 15;
|
2008-10-08 10:48:48 +02:00
|
|
|
|
2008-10-09 19:20:05 +02:00
|
|
|
static unsigned update_task_id;
|
2008-10-08 10:48:48 +02:00
|
|
|
|
2009-01-04 20:42:43 +01:00
|
|
|
/** used by the main thread to notify the update thread */
|
2009-09-24 21:39:46 +02:00
|
|
|
struct notify update_notify;
|
2009-01-03 13:19:58 +01:00
|
|
|
|
2008-10-09 19:20:05 +02:00
|
|
|
unsigned
|
|
|
|
isUpdatingDB(void)
|
2008-10-08 10:48:48 +02:00
|
|
|
{
|
|
|
|
return (progress != UPDATE_PROGRESS_IDLE) ? update_task_id : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void * update_task(void *_path)
|
|
|
|
{
|
2009-09-24 21:39:46 +02:00
|
|
|
const char *path = _path;
|
2008-10-08 10:48:48 +02:00
|
|
|
|
2009-09-24 21:39:46 +02:00
|
|
|
modified = update_walk(path);
|
2009-08-14 11:51:35 +02:00
|
|
|
g_free(_path);
|
|
|
|
|
2009-01-08 07:36:40 +01:00
|
|
|
if (modified || !db_exists())
|
2008-10-09 19:41:58 +02:00
|
|
|
db_save();
|
2009-01-08 07:36:40 +01:00
|
|
|
|
2008-10-08 10:48:48 +02:00
|
|
|
progress = UPDATE_PROGRESS_DONE;
|
2009-01-01 18:22:11 +01:00
|
|
|
event_pipe_emit(PIPE_EVENT_UPDATE);
|
2008-10-09 19:41:58 +02:00
|
|
|
return NULL;
|
2008-10-08 10:48:48 +02:00
|
|
|
}
|
|
|
|
|
2009-09-24 21:39:43 +02:00
|
|
|
static void
|
|
|
|
spawn_update_task(const char *path)
|
2008-10-08 10:48:48 +02:00
|
|
|
{
|
2009-01-04 19:51:54 +01:00
|
|
|
GError *e = NULL;
|
2008-10-08 10:48:48 +02:00
|
|
|
|
2008-12-28 22:09:42 +01:00
|
|
|
assert(g_thread_self() == main_task);
|
2008-10-08 10:48:48 +02:00
|
|
|
|
|
|
|
progress = UPDATE_PROGRESS_RUNNING;
|
2008-10-09 19:41:58 +02:00
|
|
|
modified = false;
|
2009-09-24 21:39:43 +02:00
|
|
|
|
|
|
|
update_thr = g_thread_create(update_task, g_strdup(path), TRUE, &e);
|
|
|
|
if (update_thr == NULL)
|
2008-12-29 17:29:49 +01:00
|
|
|
g_error("Failed to spawn update task: %s", e->message);
|
2009-09-24 21:39:43 +02:00
|
|
|
|
2008-10-08 10:48:48 +02:00
|
|
|
if (++update_task_id > update_task_id_max)
|
|
|
|
update_task_id = 1;
|
2008-12-29 17:29:49 +01:00
|
|
|
g_debug("spawned thread for update job id %i", update_task_id);
|
2008-10-08 10:48:48 +02:00
|
|
|
}
|
|
|
|
|
2008-10-09 19:20:05 +02:00
|
|
|
unsigned
|
2009-09-24 21:39:43 +02:00
|
|
|
update_enqueue(const char *path)
|
2008-10-08 10:48:48 +02:00
|
|
|
{
|
2008-12-28 22:09:42 +01:00
|
|
|
assert(g_thread_self() == main_task);
|
2008-10-08 10:48:48 +02:00
|
|
|
|
2009-01-18 16:56:07 +01:00
|
|
|
if (!mapper_has_music_directory())
|
|
|
|
return 0;
|
|
|
|
|
2008-10-08 10:48:48 +02:00
|
|
|
if (progress != UPDATE_PROGRESS_IDLE) {
|
2009-09-24 21:39:46 +02:00
|
|
|
unsigned next_task_id =
|
|
|
|
update_queue_push(path, update_task_id);
|
|
|
|
if (next_task_id == 0)
|
2008-10-09 19:17:44 +02:00
|
|
|
return 0;
|
2008-10-09 19:20:54 +02:00
|
|
|
|
2008-10-08 10:48:48 +02:00
|
|
|
return next_task_id > update_task_id_max ? 1 : next_task_id;
|
|
|
|
}
|
2009-09-24 21:39:43 +02:00
|
|
|
|
2008-10-08 10:48:48 +02:00
|
|
|
spawn_update_task(path);
|
2009-07-05 08:46:53 +02:00
|
|
|
|
|
|
|
idle_add(IDLE_UPDATE);
|
|
|
|
|
2008-10-08 10:48:48 +02:00
|
|
|
return update_task_id;
|
|
|
|
}
|
|
|
|
|
2009-01-04 20:30:23 +01:00
|
|
|
/**
|
|
|
|
* Called in the main thread after the database update is finished.
|
|
|
|
*/
|
|
|
|
static void update_finished_event(void)
|
|
|
|
{
|
2009-09-24 21:39:46 +02:00
|
|
|
char *path;
|
|
|
|
|
2009-01-04 20:30:23 +01:00
|
|
|
assert(progress == UPDATE_PROGRESS_DONE);
|
2008-10-08 10:48:48 +02:00
|
|
|
|
2008-12-28 22:09:42 +01:00
|
|
|
g_thread_join(update_thr);
|
2008-10-09 19:41:58 +02:00
|
|
|
|
2009-07-05 08:46:53 +02:00
|
|
|
idle_add(IDLE_UPDATE);
|
|
|
|
|
2008-10-14 22:38:14 +02:00
|
|
|
if (modified) {
|
2009-01-04 20:30:23 +01:00
|
|
|
/* send "idle" events */
|
2009-07-29 00:07:01 +02:00
|
|
|
playlist_increment_version_all(&g_playlist);
|
2008-10-14 22:38:14 +02:00
|
|
|
idle_add(IDLE_DATABASE);
|
|
|
|
}
|
2008-10-08 10:48:48 +02:00
|
|
|
|
2009-09-24 21:39:46 +02:00
|
|
|
path = update_queue_shift();
|
|
|
|
if (path != NULL) {
|
2009-01-04 20:30:23 +01:00
|
|
|
/* schedule the next path */
|
2008-10-08 10:48:48 +02:00
|
|
|
spawn_update_task(path);
|
2009-09-24 21:39:43 +02:00
|
|
|
g_free(path);
|
2008-10-08 10:48:48 +02:00
|
|
|
} else {
|
|
|
|
progress = UPDATE_PROGRESS_IDLE;
|
2009-01-04 20:30:27 +01:00
|
|
|
|
2009-01-04 20:57:06 +01:00
|
|
|
stats_update();
|
2008-10-08 10:48:48 +02:00
|
|
|
}
|
|
|
|
}
|
2008-11-27 19:34:54 +01:00
|
|
|
|
|
|
|
void update_global_init(void)
|
|
|
|
{
|
2009-01-04 20:42:43 +01:00
|
|
|
notify_init(&update_notify);
|
2009-01-01 18:22:11 +01:00
|
|
|
|
2009-01-04 20:30:23 +01:00
|
|
|
event_pipe_register(PIPE_EVENT_UPDATE, update_finished_event);
|
2009-09-24 21:39:46 +02:00
|
|
|
|
|
|
|
update_remove_global_init();
|
|
|
|
update_walk_global_init();
|
2008-11-27 19:34:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void update_global_finish(void)
|
|
|
|
{
|
2009-09-24 21:39:46 +02:00
|
|
|
update_walk_global_finish();
|
|
|
|
update_remove_global_finish();
|
|
|
|
|
2009-01-04 20:42:43 +01:00
|
|
|
notify_deinit(&update_notify);
|
2008-11-27 19:34:54 +01:00
|
|
|
}
|