DetachedSong.cxx 1.79 KB
Newer Older
1
/*
2
 * Copyright (C) 2003-2014 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 * 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.
 */

20 21
#include "config.h"
#include "DetachedSong.hxx"
Max Kellermann's avatar
Max Kellermann committed
22
#include "db/LightSong.hxx"
23 24 25
#include "util/UriUtil.hxx"
#include "fs/Traits.hxx"

26
DetachedSong::DetachedSong(const LightSong &other)
27
	:uri(other.GetURI().c_str()),
28
	 real_uri(other.real_uri != nullptr ? other.real_uri : ""),
29
	 tag(*other.tag),
30 31 32
	 mtime(other.mtime),
	 start_ms(other.start_ms), end_ms(other.end_ms) {}

33 34 35 36 37
DetachedSong::~DetachedSong()
{
	/* this destructor exists here just so it won't get inlined */
}

38 39 40
bool
DetachedSong::IsRemote() const
{
41
	return uri_has_scheme(GetRealURI());
42 43 44 45 46
}

bool
DetachedSong::IsAbsoluteFile() const
{
47 48 49 50 51 52 53 54 55 56 57
	return PathTraitsUTF8::IsAbsolute(GetRealURI());
}

bool
DetachedSong::IsInDatabase() const
{
	/* here, we use GetURI() and not GetRealURI() because
	   GetRealURI() is never relative */

	const char *_uri = GetURI();
	return !uri_has_scheme(_uri) && !PathTraitsUTF8::IsAbsolute(_uri);
58 59 60 61 62 63 64 65 66 67
}

double
DetachedSong::GetDuration() const
{
	if (end_ms > 0)
		return (end_ms - start_ms) / 1000.0;

	return tag.time - start_ms / 1000.0;
}