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