2009-03-13 18:43:16 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2009 The Music Player Daemon Project
|
|
|
|
* http://www.musicpd.org
|
2004-05-04 21:08:46 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2004-05-04 21:08:46 +02:00
|
|
|
*/
|
|
|
|
|
2008-10-31 09:19:53 +01:00
|
|
|
#ifndef MPD_INPUT_STREAM_H
|
|
|
|
#define MPD_INPUT_STREAM_H
|
2004-05-04 21:08:46 +02:00
|
|
|
|
2009-10-11 23:32:22 +02:00
|
|
|
#include <glib.h>
|
2009-10-08 16:57:55 +02:00
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <stddef.h>
|
2008-10-26 20:38:44 +01:00
|
|
|
#include <stdbool.h>
|
2008-10-28 20:39:09 +01:00
|
|
|
#include <sys/types.h>
|
2008-10-26 20:38:44 +01:00
|
|
|
|
2009-11-10 21:14:22 +01:00
|
|
|
#if !GLIB_CHECK_VERSION(2,14,0)
|
|
|
|
typedef gint64 goffset;
|
|
|
|
#endif
|
|
|
|
|
2008-10-17 17:53:48 +02:00
|
|
|
struct input_stream {
|
2009-01-30 00:07:53 +01:00
|
|
|
/**
|
|
|
|
* the plugin which implements this input stream
|
|
|
|
*/
|
2008-10-26 20:38:44 +01:00
|
|
|
const struct input_plugin *plugin;
|
|
|
|
|
2009-01-30 00:07:53 +01:00
|
|
|
/**
|
|
|
|
* an opaque pointer managed by the plugin
|
|
|
|
*/
|
|
|
|
void *data;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* indicates whether the stream is ready for reading and
|
|
|
|
* whether the other attributes in this struct are valid
|
|
|
|
*/
|
2008-10-26 20:56:46 +01:00
|
|
|
bool ready;
|
2008-08-26 08:27:10 +02:00
|
|
|
|
2009-01-30 00:07:53 +01:00
|
|
|
/**
|
|
|
|
* if true, then the stream is fully seekable
|
|
|
|
*/
|
|
|
|
bool seekable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* an optional errno error code, set to non-zero after an error occured
|
|
|
|
*/
|
2004-05-04 21:08:46 +02:00
|
|
|
int error;
|
2004-05-18 04:46:13 +02:00
|
|
|
|
2009-01-30 00:07:53 +01:00
|
|
|
/**
|
|
|
|
* the size of the resource, or -1 if unknown
|
|
|
|
*/
|
2009-10-11 23:32:22 +02:00
|
|
|
goffset size;
|
2009-01-30 00:07:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* the current offset within the stream
|
|
|
|
*/
|
2009-10-11 23:32:22 +02:00
|
|
|
goffset offset;
|
2009-01-30 00:07:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* the MIME content type of the resource, or NULL if unknown
|
|
|
|
*/
|
|
|
|
char *mime;
|
2004-05-18 04:46:13 +02:00
|
|
|
};
|
2004-05-04 21:08:46 +02:00
|
|
|
|
2009-01-30 00:07:53 +01:00
|
|
|
/**
|
|
|
|
* Initializes this library and all input_stream implementations.
|
|
|
|
*/
|
2008-10-26 20:34:47 +01:00
|
|
|
void input_stream_global_init(void);
|
2004-06-20 22:15:05 +02:00
|
|
|
|
2009-01-30 00:07:53 +01:00
|
|
|
/**
|
|
|
|
* Deinitializes this library and all input_stream implementations.
|
|
|
|
*/
|
2008-10-26 19:30:13 +01:00
|
|
|
void input_stream_global_finish(void);
|
|
|
|
|
2009-01-30 00:07:53 +01:00
|
|
|
/**
|
|
|
|
* Opens a new input stream. You may not access it until the "ready"
|
|
|
|
* flag is set.
|
|
|
|
*
|
|
|
|
* @param is the input_stream object allocated by the caller
|
|
|
|
* @return true on success
|
|
|
|
*/
|
2008-10-26 20:56:46 +01:00
|
|
|
bool
|
2008-10-31 15:50:59 +01:00
|
|
|
input_stream_open(struct input_stream *is, const char *url);
|
2008-10-26 20:56:46 +01:00
|
|
|
|
2009-01-30 00:07:53 +01:00
|
|
|
/**
|
|
|
|
* Closes the input stream and free resources. This does not free the
|
|
|
|
* input_stream pointer itself, because it is assumed to be allocated
|
|
|
|
* by the caller.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
input_stream_close(struct input_stream *is);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Seeks to the specified position in the stream. This will most
|
|
|
|
* likely fail if the "seekable" flag is false.
|
|
|
|
*
|
|
|
|
* @param is the input_stream object
|
|
|
|
* @param offset the relative offset
|
|
|
|
* @param whence the base of the seek, one of SEEK_SET, SEEK_CUR, SEEK_END
|
|
|
|
*/
|
2008-10-26 20:56:46 +01:00
|
|
|
bool
|
2009-10-11 23:32:22 +02:00
|
|
|
input_stream_seek(struct input_stream *is, goffset offset, int whence);
|
2008-10-26 20:56:46 +01:00
|
|
|
|
2009-01-30 00:07:53 +01:00
|
|
|
/**
|
|
|
|
* Returns true if the stream has reached end-of-file.
|
|
|
|
*/
|
2008-10-26 20:56:46 +01:00
|
|
|
bool input_stream_eof(struct input_stream *is);
|
2004-05-22 00:31:07 +02:00
|
|
|
|
2009-01-03 23:29:45 +01:00
|
|
|
/**
|
|
|
|
* Reads the tag from the stream.
|
|
|
|
*
|
|
|
|
* @return a tag object which must be freed with tag_free(), or NULL
|
|
|
|
* if the tag has not changed since the last call
|
|
|
|
*/
|
|
|
|
struct tag *
|
|
|
|
input_stream_tag(struct input_stream *is);
|
|
|
|
|
2009-01-30 00:07:53 +01:00
|
|
|
/**
|
|
|
|
* Reads some of the stream into its buffer. The following return
|
|
|
|
* codes are defined: -1 = error, 1 = something was buffered, 0 =
|
|
|
|
* nothing was buffered.
|
|
|
|
*
|
|
|
|
* The semantics of this function are not well-defined, and it will
|
|
|
|
* eventually be removed.
|
|
|
|
*/
|
2008-10-26 20:34:47 +01:00
|
|
|
int input_stream_buffer(struct input_stream *is);
|
2004-05-04 21:08:46 +02:00
|
|
|
|
2009-01-30 00:07:53 +01:00
|
|
|
/**
|
|
|
|
* Reads data from the stream into the caller-supplied buffer.
|
|
|
|
* Returns 0 on error or eof (check with input_stream_eof()).
|
|
|
|
*
|
|
|
|
* @param is the input_stream object
|
|
|
|
* @param ptr the buffer to read into
|
|
|
|
* @param size the maximum number of bytes to read
|
|
|
|
* @return the number of bytes read
|
|
|
|
*/
|
2008-10-26 20:34:47 +01:00
|
|
|
size_t
|
|
|
|
input_stream_read(struct input_stream *is, void *ptr, size_t size);
|
2004-05-04 21:08:46 +02:00
|
|
|
|
|
|
|
#endif
|