2009-10-12 22:34:04 +02:00
|
|
|
/*
|
2011-01-29 10:13:54 +01:00
|
|
|
* Copyright (C) 2003-2011 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"
|
|
|
|
#include "song.h"
|
2013-01-03 01:36:28 +01:00
|
|
|
#include "Directory.hxx"
|
2013-01-07 09:38:02 +01:00
|
|
|
#include "input_stream.h"
|
|
|
|
#include "conf.h"
|
|
|
|
#include "decoder_api.h"
|
2013-01-10 10:15:09 +01:00
|
|
|
#include "InputInit.hxx"
|
2013-01-10 10:33:20 +01:00
|
|
|
#include "IOThread.hxx"
|
2013-01-26 01:04:02 +01:00
|
|
|
#include "PlaylistRegistry.hxx"
|
2013-01-27 17:38:09 +01:00
|
|
|
#include "PlaylistPlugin.hxx"
|
2013-01-02 19:52:57 +01:00
|
|
|
|
|
|
|
extern "C" {
|
2012-02-12 15:20:38 +01:00
|
|
|
#include "decoder_list.h"
|
2013-01-02 19:52:57 +01:00
|
|
|
}
|
2009-10-12 22:34:04 +02:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
2011-08-24 03:23:12 +02:00
|
|
|
#include <stdlib.h>
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2013-01-03 02:12:34 +01:00
|
|
|
Directory::Directory() {}
|
2013-01-03 01:36:28 +01:00
|
|
|
Directory::~Directory() {}
|
|
|
|
|
2009-10-12 22:34:04 +02:00
|
|
|
static void
|
|
|
|
my_log_func(const gchar *log_domain, G_GNUC_UNUSED GLogLevelFlags log_level,
|
|
|
|
const gchar *message, G_GNUC_UNUSED gpointer user_data)
|
|
|
|
{
|
|
|
|
if (log_domain != NULL)
|
|
|
|
g_printerr("%s: %s\n", log_domain, message);
|
|
|
|
else
|
|
|
|
g_printerr("%s\n", message);
|
|
|
|
}
|
|
|
|
|
2012-02-12 15:20:38 +01:00
|
|
|
void
|
|
|
|
decoder_initialized(G_GNUC_UNUSED struct decoder *decoder,
|
|
|
|
G_GNUC_UNUSED const struct audio_format *audio_format,
|
|
|
|
G_GNUC_UNUSED bool seekable,
|
|
|
|
G_GNUC_UNUSED float total_time)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
enum decoder_command
|
|
|
|
decoder_get_command(G_GNUC_UNUSED struct decoder *decoder)
|
|
|
|
{
|
|
|
|
return DECODE_COMMAND_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
decoder_command_finished(G_GNUC_UNUSED struct decoder *decoder)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
double
|
|
|
|
decoder_seek_where(G_GNUC_UNUSED struct decoder *decoder)
|
|
|
|
{
|
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
decoder_seek_error(G_GNUC_UNUSED struct decoder *decoder)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
decoder_read(G_GNUC_UNUSED struct decoder *decoder,
|
|
|
|
struct input_stream *is,
|
|
|
|
void *buffer, size_t length)
|
|
|
|
{
|
|
|
|
return input_stream_lock_read(is, buffer, length, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
decoder_timestamp(G_GNUC_UNUSED struct decoder *decoder,
|
|
|
|
G_GNUC_UNUSED double t)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
enum decoder_command
|
|
|
|
decoder_data(G_GNUC_UNUSED struct decoder *decoder,
|
|
|
|
G_GNUC_UNUSED struct input_stream *is,
|
|
|
|
const void *data, size_t datalen,
|
|
|
|
G_GNUC_UNUSED uint16_t kbit_rate)
|
|
|
|
{
|
2012-03-19 20:37:17 +01:00
|
|
|
G_GNUC_UNUSED ssize_t nbytes = write(1, data, datalen);
|
2012-02-12 15:20:38 +01:00
|
|
|
return DECODE_COMMAND_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum decoder_command
|
|
|
|
decoder_tag(G_GNUC_UNUSED struct decoder *decoder,
|
|
|
|
G_GNUC_UNUSED struct input_stream *is,
|
|
|
|
G_GNUC_UNUSED const struct tag *tag)
|
|
|
|
{
|
|
|
|
return DECODE_COMMAND_NONE;
|
|
|
|
}
|
|
|
|
|
2013-01-05 02:05:50 +01:00
|
|
|
void
|
2012-02-12 15:20:38 +01:00
|
|
|
decoder_replay_gain(G_GNUC_UNUSED struct decoder *decoder,
|
|
|
|
const struct replay_gain_info *replay_gain_info)
|
|
|
|
{
|
|
|
|
const struct replay_gain_tuple *tuple =
|
|
|
|
&replay_gain_info->tuples[REPLAY_GAIN_ALBUM];
|
|
|
|
if (replay_gain_tuple_defined(tuple))
|
|
|
|
g_printerr("replay_gain[album]: gain=%f peak=%f\n",
|
|
|
|
tuple->gain, tuple->peak);
|
|
|
|
|
|
|
|
tuple = &replay_gain_info->tuples[REPLAY_GAIN_TRACK];
|
|
|
|
if (replay_gain_tuple_defined(tuple))
|
|
|
|
g_printerr("replay_gain[track]: gain=%f peak=%f\n",
|
|
|
|
tuple->gain, tuple->peak);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
decoder_mixramp(G_GNUC_UNUSED struct decoder *decoder,
|
|
|
|
char *mixramp_start, char *mixramp_end)
|
|
|
|
{
|
|
|
|
g_free(mixramp_start);
|
|
|
|
g_free(mixramp_end);
|
|
|
|
}
|
|
|
|
|
2009-10-12 22:34:04 +02:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
const char *uri;
|
2009-12-30 23:27:37 +01:00
|
|
|
struct input_stream *is = NULL;
|
2009-10-12 22:34:04 +02:00
|
|
|
bool success;
|
2009-10-13 16:20:21 +02:00
|
|
|
GError *error = NULL;
|
2009-10-12 22:34:04 +02:00
|
|
|
struct playlist_provider *playlist;
|
|
|
|
struct song *song;
|
|
|
|
|
2009-10-13 16:20:21 +02:00
|
|
|
if (argc != 3) {
|
|
|
|
g_printerr("Usage: dump_playlist CONFIG URI\n");
|
2009-10-12 22:34:04 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-10-13 16:20:21 +02:00
|
|
|
uri = argv[2];
|
2009-10-12 22:34:04 +02:00
|
|
|
|
|
|
|
/* initialize GLib */
|
|
|
|
|
|
|
|
g_thread_init(NULL);
|
|
|
|
g_log_set_default_handler(my_log_func, NULL);
|
|
|
|
|
|
|
|
/* initialize MPD */
|
|
|
|
|
|
|
|
config_global_init();
|
2009-10-13 16:20:21 +02:00
|
|
|
success = config_read_file(argv[1], &error);
|
|
|
|
if (!success) {
|
2012-10-02 17:27:47 +02:00
|
|
|
g_printerr("%s\n", error->message);
|
2009-10-13 16:20:21 +02:00
|
|
|
g_error_free(error);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-08-24 03:23:12 +02:00
|
|
|
io_thread_init();
|
|
|
|
if (!io_thread_start(&error)) {
|
|
|
|
g_warning("%s", error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2009-12-14 22:29:46 +01:00
|
|
|
if (!input_stream_global_init(&error)) {
|
|
|
|
g_warning("%s", error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2011-09-14 21:46:41 +02:00
|
|
|
GMutex *mutex = g_mutex_new();
|
|
|
|
GCond *cond = g_cond_new();
|
|
|
|
|
|
|
|
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
|
|
|
|
2011-09-14 21:46:41 +02:00
|
|
|
is = input_stream_open(uri, mutex, cond, &error);
|
2009-12-30 23:27:37 +01:00
|
|
|
if (is == NULL) {
|
2009-11-14 23:53:04 +01:00
|
|
|
if (error != NULL) {
|
|
|
|
g_warning("%s", error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
} else
|
|
|
|
g_printerr("input_stream_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
|
|
|
|
2011-09-14 21:46:41 +02:00
|
|
|
input_stream_lock_wait_ready(is);
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2009-10-13 16:25:37 +02:00
|
|
|
/* open the playlist */
|
|
|
|
|
2009-12-30 23:27:37 +01:00
|
|
|
playlist = playlist_list_open_stream(is, uri);
|
2009-10-13 16:25:37 +02:00
|
|
|
if (playlist == NULL) {
|
2009-12-30 23:27:37 +01:00
|
|
|
input_stream_close(is);
|
2009-10-13 16:25:37 +02:00
|
|
|
g_printerr("Failed to open playlist\n");
|
|
|
|
return 2;
|
|
|
|
}
|
2009-10-12 22:34:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* dump the playlist */
|
|
|
|
|
|
|
|
while ((song = playlist_plugin_read(playlist)) != NULL) {
|
2009-10-13 18:01:06 +02:00
|
|
|
g_print("%s\n", song->uri);
|
2009-12-25 22:59:13 +01:00
|
|
|
|
2010-06-25 20:02:24 +02:00
|
|
|
if (song->end_ms > 0)
|
2009-12-25 22:59:13 +01:00
|
|
|
g_print("range: %u:%02u..%u:%02u\n",
|
|
|
|
song->start_ms / 60000,
|
|
|
|
(song->start_ms / 1000) % 60,
|
|
|
|
song->end_ms / 60000,
|
|
|
|
(song->end_ms / 1000) % 60);
|
2010-06-25 20:02:24 +02:00
|
|
|
else if (song->start_ms > 0)
|
|
|
|
g_print("range: %u:%02u..\n",
|
|
|
|
song->start_ms / 60000,
|
|
|
|
(song->start_ms / 1000) % 60);
|
2009-12-25 22:59:13 +01:00
|
|
|
|
2009-10-12 22:34:04 +02:00
|
|
|
if (song->tag != NULL)
|
|
|
|
tag_save(stdout, song->tag);
|
|
|
|
|
|
|
|
song_free(song);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* deinitialize everything */
|
|
|
|
|
|
|
|
playlist_plugin_close(playlist);
|
2009-12-30 23:27:37 +01:00
|
|
|
if (is != NULL)
|
|
|
|
input_stream_close(is);
|
2011-09-14 21:46:41 +02:00
|
|
|
|
|
|
|
g_cond_free(cond);
|
|
|
|
g_mutex_free(mutex);
|
|
|
|
|
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;
|
|
|
|
}
|