2009-10-12 22:34:04 +02:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 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.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-02 19:52:57 +01:00
|
|
|
#include "TagSave.hxx"
|
2014-01-07 21:39:47 +01:00
|
|
|
#include "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"
|
2014-01-24 00:20:01 +01:00
|
|
|
#include "config/ConfigGlobal.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"
|
2013-01-10 10:33:20 +01:00
|
|
|
#include "IOThread.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"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-10-17 10:06:31 +02:00
|
|
|
#include "thread/Cond.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2013-01-02 19:52:57 +01:00
|
|
|
|
2014-02-17 23:48:22 +01:00
|
|
|
#ifdef HAVE_GLIB
|
2009-10-12 22:34:04 +02:00
|
|
|
#include <glib.h>
|
2014-02-17 23:48:22 +01:00
|
|
|
#endif
|
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
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
const char *uri;
|
2013-10-23 22:08:59 +02:00
|
|
|
InputStream *is = NULL;
|
2009-10-12 22:34:04 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2013-01-29 17:23:35 +01:00
|
|
|
const Path config_path = Path::FromFS(argv[1]);
|
2009-10-13 16:20:21 +02:00
|
|
|
uri = argv[2];
|
2009-10-12 22:34:04 +02:00
|
|
|
|
|
|
|
/* initialize GLib */
|
|
|
|
|
2014-02-17 23:48:22 +01:00
|
|
|
#ifdef HAVE_GLIB
|
2013-04-17 01:53:10 +02:00
|
|
|
#if !GLIB_CHECK_VERSION(2,32,0)
|
2009-10-12 22:34:04 +02:00
|
|
|
g_thread_init(NULL);
|
2014-02-17 23:48:22 +01:00
|
|
|
#endif
|
2013-04-17 01:53:10 +02:00
|
|
|
#endif
|
|
|
|
|
2009-10-12 22:34:04 +02:00
|
|
|
/* initialize MPD */
|
|
|
|
|
|
|
|
config_global_init();
|
2013-08-10 18:02:44 +02:00
|
|
|
|
|
|
|
Error error;
|
|
|
|
if (!ReadConfigFile(config_path, error)) {
|
2013-12-24 14:44:08 +01:00
|
|
|
LogError(error);
|
|
|
|
return EXIT_FAILURE;
|
2009-10-13 16:20:21 +02:00
|
|
|
}
|
|
|
|
|
2011-08-24 03:23:12 +02:00
|
|
|
io_thread_init();
|
2013-09-03 11:28:47 +02:00
|
|
|
io_thread_start();
|
2011-08-24 03:23:12 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!input_stream_global_init(error)) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(error);
|
2013-12-24 14:44:08 +01:00
|
|
|
return EXIT_FAILURE;
|
2009-12-14 22:29:46 +01:00
|
|
|
}
|
|
|
|
|
2009-10-12 22:34:04 +02:00
|
|
|
playlist_list_global_init();
|
2012-02-12 15:20:38 +01:00
|
|
|
decoder_plugin_init_all();
|
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;
|
|
|
|
Cond cond;
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
auto playlist = playlist_list_open_uri(uri, mutex, cond);
|
2009-10-13 16:25:37 +02:00
|
|
|
if (playlist == NULL) {
|
|
|
|
/* open the stream and wait until it becomes ready */
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2013-12-29 18:08:49 +01:00
|
|
|
is = InputStream::OpenReady(uri, mutex, cond, error);
|
2009-12-30 23:27:37 +01:00
|
|
|
if (is == NULL) {
|
2013-08-10 18:02:44 +02:00
|
|
|
if (error.IsDefined())
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(error);
|
2013-08-10 18:02:44 +02:00
|
|
|
else
|
2013-12-24 14:44:08 +01:00
|
|
|
fprintf(stderr,
|
2014-03-16 09:40:59 +01:00
|
|
|
"InputStream::Open() failed\n");
|
2009-10-12 22:34:04 +02:00
|
|
|
return 2;
|
2009-10-13 16:25:37 +02:00
|
|
|
}
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2009-10-13 16:25:37 +02:00
|
|
|
/* open the playlist */
|
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
playlist = playlist_list_open_stream(*is, uri);
|
2009-10-13 16:25:37 +02:00
|
|
|
if (playlist == NULL) {
|
2014-05-11 16:59:19 +02:00
|
|
|
delete is;
|
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 */
|
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
DetachedSong *song;
|
2013-09-05 09:37:54 +02:00
|
|
|
while ((song = playlist->NextSong()) != NULL) {
|
2014-01-07 21:39:47 +01:00
|
|
|
printf("%s\n", song->GetURI());
|
|
|
|
|
|
|
|
const unsigned start_ms = song->GetStartMS();
|
|
|
|
const unsigned end_ms = song->GetEndMS();
|
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
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
delete song;
|
2009-10-12 22:34:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* deinitialize everything */
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
delete playlist;
|
2014-05-11 16:59:19 +02:00
|
|
|
delete is;
|
2011-09-14 21:46:41 +02:00
|
|
|
|
2012-02-12 15:20:38 +01:00
|
|
|
decoder_plugin_deinit_all();
|
2009-10-12 22:34:04 +02:00
|
|
|
playlist_list_global_finish();
|
|
|
|
input_stream_global_finish();
|
2011-08-24 03:23:12 +02:00
|
|
|
io_thread_deinit();
|
2009-10-12 22:34:04 +02:00
|
|
|
config_global_finish();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|