From 9cb7760c5eb63cb6b7034ec9d2cdf9af2f198652 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 18 Jan 2010 09:26:10 +0100 Subject: input_stream: added attribute "uri" --- src/input_stream.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/input_stream.h') diff --git a/src/input_stream.h b/src/input_stream.h index 05ef257f..056d008a 100644 --- a/src/input_stream.h +++ b/src/input_stream.h @@ -38,6 +38,12 @@ struct input_stream { */ const struct input_plugin *plugin; + /** + * The absolute URI which was used to open this stream. May + * be NULL if this is unknown. + */ + char *uri; + /** * indicates whether the stream is ready for reading and * whether the other attributes in this struct are valid @@ -66,9 +72,11 @@ struct input_stream { }; static inline void -input_stream_init(struct input_stream *is, const struct input_plugin *plugin) +input_stream_init(struct input_stream *is, const struct input_plugin *plugin, + const char *uri) { is->plugin = plugin; + is->uri = g_strdup(uri); is->ready = false; is->seekable = false; is->size = -1; @@ -79,6 +87,7 @@ input_stream_init(struct input_stream *is, const struct input_plugin *plugin) static inline void input_stream_deinit(struct input_stream *is) { + g_free(is->uri); g_free(is->mime); } -- cgit v1.2.3