PlaylistUpdate.cxx 1.89 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 * http://www.musicpd.org
 *
 * 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, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "config.h"
#include "Playlist.hxx"
22
#include "db/Interface.hxx"
Max Kellermann's avatar
Max Kellermann committed
23
#include "db/LightSong.hxx"
24
#include "DetachedSong.hxx"
25

26
static bool
27
UpdatePlaylistSong(const Database &db, DetachedSong &song)
28
{
29
	if (!song.IsInDatabase() || !song.IsFile())
30 31 32 33
		/* only update Songs instances that are "detached"
		   from the Database */
		return false;

34 35
	const LightSong *original;
	try {
36
		original = db.GetSong(song.GetURI());
37
	} catch (...) {
38 39 40 41
		/* not found - shouldn't happen, because the update
		   thread should ensure that all stale Song instances
		   have been purged */
		return false;
42 43 44
	}

	assert(original != nullptr);
45

46
	if (original->mtime == song.GetLastModified()) {
47 48 49 50 51
		/* not modified */
		db.ReturnSong(original);
		return false;
	}

52
	song.SetLastModified(original->mtime);
53
	song.SetTag(*original->tag);
54 55 56 57 58 59

	db.ReturnSong(original);
	return true;
}

void
60
playlist::DatabaseModified(const Database &db)
61 62 63 64
{
	bool modified = false;

	for (unsigned i = 0, n = queue.GetLength(); i != n; ++i) {
65
		if (UpdatePlaylistSong(db, queue.Get(i))) {
66 67 68 69 70
			queue.ModifyAtPosition(i);
			modified = true;
		}
	}

71 72
	if (modified)
		OnModified();
73
}