mpd/test/dump_playlist.cxx

125 lines
3.2 KiB
C++
Raw Normal View History

/*
2020-01-18 19:22:19 +01:00
* Copyright 2003-2020 The Music Player Daemon Project
* 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.
*/
2013-01-02 19:52:57 +01:00
#include "TagSave.hxx"
#include "song/DetachedSong.hxx"
2014-01-23 23:30:12 +01:00
#include "playlist/SongEnumerator.hxx"
2014-01-24 16:18:21 +01:00
#include "input/InputStream.hxx"
#include "ConfigGlue.hxx"
2014-01-24 00:02:24 +01:00
#include "decoder/DecoderList.hxx"
2014-01-24 16:18:21 +01:00
#include "input/Init.hxx"
#include "event/Thread.hxx"
2014-01-23 23:30:12 +01:00
#include "playlist/PlaylistRegistry.hxx"
#include "playlist/PlaylistPlugin.hxx"
#include "fs/Path.hxx"
#include "fs/NarrowPath.hxx"
2014-08-07 18:35:57 +02:00
#include "fs/io/BufferedOutputStream.hxx"
#include "fs/io/StdioOutputStream.hxx"
#include "thread/Cond.hxx"
2018-07-17 21:56:43 +02:00
#include "util/PrintException.hxx"
2013-01-02 19:52:57 +01:00
#include <unistd.h>
#include <stdlib.h>
static void
tag_save(FILE *file, const Tag &tag)
{
StdioOutputStream sos(file);
BufferedOutputStream bos(sos);
tag_save(bos, tag);
bos.Flush();
}
int main(int argc, char **argv)
try {
const char *uri;
if (argc != 3) {
fprintf(stderr, "Usage: dump_playlist CONFIG URI\n");
return EXIT_FAILURE;
}
const FromNarrowPath config_path = argv[1];
uri = argv[2];
/* initialize MPD */
const auto config = AutoLoadConfigFile(config_path);
EventThread io_thread;
io_thread.Start();
2019-02-05 21:50:31 +01:00
const ScopeInputPluginsInit input_plugins_init(config, io_thread.GetEventLoop());
2019-02-05 23:03:29 +01:00
const ScopePlaylistPluginsInit playlist_plugins_init(config);
2019-02-05 22:11:45 +01:00
const ScopeDecoderPluginsInit decoder_plugins_init(config);
/* open the playlist */
Mutex mutex;
InputStreamPtr is;
auto playlist = playlist_list_open_uri(uri, mutex);
2020-02-01 13:49:19 +01:00
if (playlist == nullptr) {
/* open the stream and wait until it becomes ready */
is = InputStream::OpenReady(uri, mutex);
/* open the playlist */
playlist = playlist_list_open_stream(std::move(is), uri);
2020-02-01 13:49:19 +01:00
if (playlist == nullptr) {
fprintf(stderr, "Failed to open playlist\n");
return 2;
}
}
/* dump the playlist */
std::unique_ptr<DetachedSong> song;
2020-02-01 13:49:19 +01:00
while ((song = playlist->NextSong()) != nullptr) {
printf("%s\n", song->GetURI());
const unsigned start_ms = song->GetStartTime().ToMS();
const unsigned end_ms = song->GetEndTime().ToMS();
if (end_ms > 0)
printf("range: %u:%02u..%u:%02u\n",
start_ms / 60000,
(start_ms / 1000) % 60,
end_ms / 60000,
(end_ms / 1000) % 60);
else if (start_ms > 0)
printf("range: %u:%02u..\n",
start_ms / 60000,
(start_ms / 1000) % 60);
tag_save(stdout, song->GetTag());
}
/* deinitialize everything */
playlist.reset();
is.reset();
return EXIT_SUCCESS;
2018-07-17 21:56:43 +02:00
} catch (...) {
PrintException(std::current_exception());
return EXIT_FAILURE;
2018-07-17 21:56:43 +02:00
}