2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-09-07 13:35:01 +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-09-07 13:35:01 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-02 20:29:24 +01:00
|
|
|
#include "SongPrint.hxx"
|
2014-01-24 16:18:50 +01:00
|
|
|
#include "db/LightSong.hxx"
|
2014-01-07 21:39:47 +01:00
|
|
|
#include "DetachedSong.hxx"
|
2013-01-02 20:29:24 +01:00
|
|
|
#include "TimePrint.hxx"
|
|
|
|
#include "TagPrint.hxx"
|
2013-01-02 22:43:56 +01:00
|
|
|
#include "Mapper.hxx"
|
2014-01-24 00:26:53 +01:00
|
|
|
#include "client/Client.hxx"
|
2013-04-08 23:30:21 +02:00
|
|
|
#include "util/UriUtil.hxx"
|
2008-09-07 13:35:01 +02:00
|
|
|
|
2014-01-19 10:51:34 +01:00
|
|
|
#define SONG_FILE "file: "
|
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
static void
|
|
|
|
song_print_uri(Client &client, const char *uri)
|
|
|
|
{
|
|
|
|
const std::string allocated = uri_remove_auth(uri);
|
|
|
|
if (!allocated.empty())
|
|
|
|
uri = allocated.c_str();
|
|
|
|
|
|
|
|
client_printf(client, "%s%s\n", SONG_FILE,
|
|
|
|
map_to_relative_path(uri));
|
|
|
|
}
|
|
|
|
|
2008-10-08 10:49:11 +02:00
|
|
|
void
|
2014-01-19 10:51:34 +01:00
|
|
|
song_print_uri(Client &client, const LightSong &song)
|
2008-09-07 13:35:01 +02:00
|
|
|
{
|
2014-01-19 10:51:34 +01:00
|
|
|
if (song.directory != nullptr) {
|
2008-09-07 13:53:55 +02:00
|
|
|
client_printf(client, "%s%s/%s\n", SONG_FILE,
|
2014-01-19 10:51:34 +01:00
|
|
|
song.directory, song.uri);
|
2014-01-07 21:39:47 +01:00
|
|
|
} else
|
|
|
|
song_print_uri(client, song.uri);
|
|
|
|
}
|
2009-02-27 19:20:11 +01:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
void
|
|
|
|
song_print_uri(Client &client, const DetachedSong &song)
|
|
|
|
{
|
|
|
|
song_print_uri(client, song.GetURI());
|
2008-09-07 13:35:01 +02:00
|
|
|
}
|
|
|
|
|
2010-02-08 10:21:15 +01:00
|
|
|
void
|
2014-01-19 10:51:34 +01:00
|
|
|
song_print_info(Client &client, const LightSong &song)
|
2008-09-07 13:35:01 +02:00
|
|
|
{
|
2009-10-13 18:01:06 +02:00
|
|
|
song_print_uri(client, song);
|
2008-09-07 13:35:01 +02:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
if (song.end_ms > 0)
|
2010-06-25 20:02:53 +02:00
|
|
|
client_printf(client, "Range: %u.%03u-%u.%03u\n",
|
2013-10-19 18:48:38 +02:00
|
|
|
song.start_ms / 1000,
|
|
|
|
song.start_ms % 1000,
|
|
|
|
song.end_ms / 1000,
|
|
|
|
song.end_ms % 1000);
|
|
|
|
else if (song.start_ms > 0)
|
2010-06-25 20:02:53 +02:00
|
|
|
client_printf(client, "Range: %u.%03u-\n",
|
2013-10-19 18:48:38 +02:00
|
|
|
song.start_ms / 1000,
|
|
|
|
song.start_ms % 1000);
|
2009-12-25 22:59:13 +01:00
|
|
|
|
2013-10-19 18:48:38 +02:00
|
|
|
if (song.mtime > 0)
|
|
|
|
time_print(client, "Last-Modified", song.mtime);
|
2009-07-05 08:40:29 +02:00
|
|
|
|
2014-01-19 10:51:34 +01:00
|
|
|
tag_print(client, *song.tag);
|
2008-09-07 13:35:01 +02:00
|
|
|
}
|
2014-01-07 21:39:47 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
song_print_info(Client &client, const DetachedSong &song)
|
|
|
|
{
|
|
|
|
song_print_uri(client, song);
|
|
|
|
|
|
|
|
const unsigned start_ms = song.GetStartMS();
|
|
|
|
const unsigned end_ms = song.GetEndMS();
|
|
|
|
|
|
|
|
if (end_ms > 0)
|
|
|
|
client_printf(client, "Range: %u.%03u-%u.%03u\n",
|
|
|
|
start_ms / 1000,
|
|
|
|
start_ms % 1000,
|
|
|
|
end_ms / 1000,
|
|
|
|
end_ms % 1000);
|
|
|
|
else if (start_ms > 0)
|
|
|
|
client_printf(client, "Range: %u.%03u-\n",
|
|
|
|
start_ms / 1000,
|
|
|
|
start_ms % 1000);
|
|
|
|
|
|
|
|
if (song.GetLastModified() > 0)
|
|
|
|
time_print(client, "Last-Modified", song.GetLastModified());
|
|
|
|
|
|
|
|
tag_print(client, song.GetTag());
|
|
|
|
}
|