Commit 530e4807 authored by Max Kellermann's avatar Max Kellermann

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
parents 95c3f283 9179f108
...@@ -79,6 +79,12 @@ ver 0.16 (20??/??/??) ...@@ -79,6 +79,12 @@ ver 0.16 (20??/??/??)
ver 0.15.7 (2009/??/??) ver 0.15.7 (2009/??/??)
* archive:
- close archive when stream is closed
- iso, zip: fixed memory leak in destructor
* input:
- file: don't fall back to parent directory
- archive: fixed memory leak in error handler
* tags: * tags:
- id3: fix ID3v1 charset conversion - id3: fix ID3v1 charset conversion
* decoders: * decoders:
......
...@@ -144,8 +144,7 @@ bz2_close(struct archive_file *file) ...@@ -144,8 +144,7 @@ bz2_close(struct archive_file *file)
{ {
bz2_context *context = (bz2_context *) file; bz2_context *context = (bz2_context *) file;
if (context->name) g_free(context->name);
g_free(context->name);
input_stream_close(&context->istream); input_stream_close(&context->istream);
g_free(context); g_free(context);
...@@ -179,6 +178,8 @@ bz2_is_close(struct input_stream *is) ...@@ -179,6 +178,8 @@ bz2_is_close(struct input_stream *is)
bz2_context *context = (bz2_context *) is->data; bz2_context *context = (bz2_context *) is->data;
bz2_destroy(context); bz2_destroy(context);
is->data = NULL; is->data = NULL;
bz2_close((struct archive_file *)context);
} }
static bool static bool
......
...@@ -133,7 +133,8 @@ iso_close(struct archive_file *file) ...@@ -133,7 +133,8 @@ iso_close(struct archive_file *file)
} }
//close archive //close archive
iso9660_close(context->iso); iso9660_close(context->iso);
context->iso = NULL;
g_free(context);
} }
/* single archive handling */ /* single archive handling */
...@@ -166,6 +167,8 @@ iso_is_close(struct input_stream *is) ...@@ -166,6 +167,8 @@ iso_is_close(struct input_stream *is)
{ {
iso_context *context = (iso_context *) is->data; iso_context *context = (iso_context *) is->data;
g_free(context->statbuf); g_free(context->statbuf);
iso_close((struct archive_file *)context);
} }
......
...@@ -100,7 +100,8 @@ zip_close(struct archive_file *file) ...@@ -100,7 +100,8 @@ zip_close(struct archive_file *file)
} }
//close archive //close archive
zzip_dir_close (context->dir); zzip_dir_close (context->dir);
context->dir = NULL;
g_free(context);
} }
/* single archive handling */ /* single archive handling */
...@@ -134,6 +135,8 @@ zip_is_close(struct input_stream *is) ...@@ -134,6 +135,8 @@ zip_is_close(struct input_stream *is)
{ {
zip_context *context = (zip_context *) is->data; zip_context *context = (zip_context *) is->data;
zzip_file_close (context->file); zzip_file_close (context->file);
zip_close((struct archive_file *)context);
} }
static size_t static size_t
......
...@@ -65,6 +65,9 @@ struct archive_plugin { ...@@ -65,6 +65,9 @@ struct archive_plugin {
/** /**
* Opens an input_stream of a file within the archive. * Opens an input_stream of a file within the archive.
* *
* If this function succeeds, then the #input_stream "owns"
* the archive file and will automatically close it.
*
* @param path the path within the archive * @param path the path within the archive
*/ */
bool (*open_stream)(struct archive_file *, struct input_stream *is, bool (*open_stream)(struct archive_file *, struct input_stream *is,
......
...@@ -67,6 +67,7 @@ input_archive_open(struct input_stream *is, const char *pathname) ...@@ -67,6 +67,7 @@ input_archive_open(struct input_stream *is, const char *pathname)
if (!opened) { if (!opened) {
g_warning("open inarchive file %s failed\n\n",filename); g_warning("open inarchive file %s failed\n\n",filename);
arplug->close(file);
} else { } else {
is->ready = true; is->ready = true;
} }
......
...@@ -24,6 +24,10 @@ ...@@ -24,6 +24,10 @@
#include "tag_save.h" #include "tag_save.h"
#include "conf.h" #include "conf.h"
#ifdef ENABLE_ARCHIVE
#include "archive_list.h"
#endif
#include <glib.h> #include <glib.h>
#include <unistd.h> #include <unistd.h>
...@@ -38,46 +42,17 @@ my_log_func(const gchar *log_domain, G_GNUC_UNUSED GLogLevelFlags log_level, ...@@ -38,46 +42,17 @@ my_log_func(const gchar *log_domain, G_GNUC_UNUSED GLogLevelFlags log_level,
g_printerr("%s\n", message); 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]; char buffer[4096];
size_t num_read; size_t num_read;
ssize_t num_written; ssize_t num_written;
if (argc != 2) { /* wait until the stream becomes ready */
g_printerr("Usage: run_input URI\n");
return 1;
}
/* initialize GLib */ while (!is->ready) {
int ret = input_stream_buffer(is);
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);
if (ret < 0) if (ret < 0)
/* error */ /* error */
return 2; return 2;
...@@ -89,20 +64,20 @@ int main(int argc, char **argv) ...@@ -89,20 +64,20 @@ int main(int argc, char **argv)
/* print meta data */ /* print meta data */
if (is.mime != NULL) if (is->mime != NULL)
g_printerr("MIME type: %s\n", is.mime); g_printerr("MIME type: %s\n", is->mime);
/* read data and tags from the stream */ /* read data and tags from the stream */
while (!input_stream_eof(&is)) { while (!input_stream_eof(is)) {
struct tag *tag = input_stream_tag(&is); struct tag *tag = input_stream_tag(is);
if (tag != NULL) { if (tag != NULL) {
g_printerr("Received a tag:\n"); g_printerr("Received a tag:\n");
tag_save(stderr, tag); tag_save(stderr, tag);
tag_free(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) if (num_read == 0)
break; break;
...@@ -111,12 +86,60 @@ int main(int argc, char **argv) ...@@ -111,12 +86,60 @@ int main(int argc, char **argv)
break; 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 */ /* deinitialize everything */
input_stream_close(&is);
input_stream_global_finish(); input_stream_global_finish();
#ifdef ENABLE_ARCHIVE
archive_plugin_deinit_all();
#endif
config_global_finish(); config_global_finish();
tag_pool_deinit(); tag_pool_deinit();
return 0; return ret;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment