aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-12-15 20:26:38 +0100
committerMax Kellermann <max@duempel.org>2009-12-15 20:26:38 +0100
commit530e480748854f43819c3dd1dbe6418c343b4f64 (patch)
tree488824927e465de0e55b8d10f6c03389f7deeeab /test
parent95c3f283ea5a50a344b63af82718ac765229e8da (diff)
parent9179f108a540dcd27dafeb015778cc4dd873dfe5 (diff)
Merge branch 'v0.15.x'
Conflicts: src/archive/bz2_plugin.c src/archive_api.h src/input/file_input_plugin.c test/run_input.c
Diffstat (limited to 'test')
-rw-r--r--test/run_input.c105
1 files changed, 64 insertions, 41 deletions
diff --git a/test/run_input.c b/test/run_input.c
index 88202063..bd66a1b1 100644
--- a/test/run_input.c
+++ b/test/run_input.c
@@ -24,6 +24,10 @@
#include "tag_save.h"
#include "conf.h"
+#ifdef ENABLE_ARCHIVE
+#include "archive_list.h"
+#endif
+
#include <glib.h>
#include <unistd.h>
@@ -38,46 +42,17 @@ my_log_func(const gchar *log_domain, G_GNUC_UNUSED GLogLevelFlags log_level,
g_printerr("%s\n", message);
}
-int main(int argc, char **argv)
+static int
+dump_input_stream(struct input_stream *is)
{
- struct input_stream is;
- GError *error = NULL;
- bool success;
char buffer[4096];
size_t num_read;
ssize_t num_written;
- if (argc != 2) {
- g_printerr("Usage: run_input URI\n");
- return 1;
- }
+ /* wait until the stream becomes ready */
- /* initialize GLib */
-
- g_thread_init(NULL);
- g_log_set_default_handler(my_log_func, NULL);
-
- /* initialize MPD */
-
- tag_pool_init();
- config_global_init();
-
- if (!input_stream_global_init(&error)) {
- g_warning("%s", error->message);
- g_error_free(error);
- return 2;
- }
-
- /* open the stream and wait until it becomes ready */
-
- success = input_stream_open(&is, argv[1]);
- if (!success) {
- g_printerr("input_stream_open() failed\n");
- return 2;
- }
-
- while (!is.ready) {
- int ret = input_stream_buffer(&is);
+ while (!is->ready) {
+ int ret = input_stream_buffer(is);
if (ret < 0)
/* error */
return 2;
@@ -89,20 +64,20 @@ int main(int argc, char **argv)
/* print meta data */
- if (is.mime != NULL)
- g_printerr("MIME type: %s\n", is.mime);
+ if (is->mime != NULL)
+ g_printerr("MIME type: %s\n", is->mime);
/* read data and tags from the stream */
- while (!input_stream_eof(&is)) {
- struct tag *tag = input_stream_tag(&is);
+ while (!input_stream_eof(is)) {
+ struct tag *tag = input_stream_tag(is);
if (tag != NULL) {
g_printerr("Received a tag:\n");
tag_save(stderr, tag);
tag_free(tag);
}
- num_read = input_stream_read(&is, buffer, sizeof(buffer));
+ num_read = input_stream_read(is, buffer, sizeof(buffer));
if (num_read == 0)
break;
@@ -111,12 +86,60 @@ int main(int argc, char **argv)
break;
}
+ return 0;
+}
+
+int main(int argc, char **argv)
+{
+ GError *error = NULL;
+ struct input_stream is;
+ int ret;
+
+ if (argc != 2) {
+ g_printerr("Usage: run_input URI\n");
+ return 1;
+ }
+
+ /* initialize GLib */
+
+ g_thread_init(NULL);
+ g_log_set_default_handler(my_log_func, NULL);
+
+ /* initialize MPD */
+
+ tag_pool_init();
+ config_global_init();
+
+#ifdef ENABLE_ARCHIVE
+ archive_plugin_init_all();
+#endif
+
+ if (!input_stream_global_init(&error)) {
+ g_warning("%s", error->message);
+ g_error_free(error);
+ return 2;
+ }
+
+ /* open the stream and dump it */
+
+ if (input_stream_open(&is, argv[1])) {
+ ret = dump_input_stream(&is);
+ input_stream_close(&is);
+ } else {
+ g_printerr("input_stream_open() failed\n");
+ ret = 2;
+ }
+
/* deinitialize everything */
- input_stream_close(&is);
input_stream_global_finish();
+
+#ifdef ENABLE_ARCHIVE
+ archive_plugin_deinit_all();
+#endif
+
config_global_finish();
tag_pool_deinit();
- return 0;
+ return ret;
}