GStreamer 1.0 Core Reference Manual | ||||
---|---|---|---|---|
Top | Description | Object Hierarchy |
#include <gst/gst.h> GstURIHandler; struct GstURIHandlerInterface; enum GstURIType; enum GstURIError; GQuark gst_uri_error_quark (void
); #define GST_URI_TYPE_IS_VALID (type) gboolean gst_uri_protocol_is_valid (const gchar *protocol
); gboolean gst_uri_protocol_is_supported (const GstURIType type
,const gchar *protocol
); gboolean gst_uri_is_valid (const gchar *uri
); gboolean gst_uri_has_protocol (const gchar *uri
,const gchar *protocol
); gchar * gst_uri_get_protocol (const gchar *uri
); gchar * gst_uri_get_location (const gchar *uri
); gchar * gst_uri_construct (const gchar *protocol
,const gchar *location
); gchar * gst_filename_to_uri (const gchar *filename
,GError **error
); GstElement * gst_element_make_from_uri (const GstURIType type
,const gchar *uri
,const gchar *elementname
,GError **error
); GstURIType gst_uri_handler_get_uri_type (GstURIHandler *handler
); const gchar * const * gst_uri_handler_get_protocols (GstURIHandler *handler
); gchar * gst_uri_handler_get_uri (GstURIHandler *handler
); gboolean gst_uri_handler_set_uri (GstURIHandler *handler
,const gchar *uri
,GError **error
);
The URIHandler is an interface that is implemented by Source and Sink GstElement to simplify then handling of URI.
An application can use the following functions to quickly get an element
that handles the given URI for reading or writing
(gst_element_make_from_uri()
).
Source and Sink plugins should implement this interface when possible.
Last reviewed on 2005-11-09 (0.9.4)
struct GstURIHandlerInterface { GTypeInterface parent; /* vtable */ /* querying capabilities */ GstURIType (* get_type) (GType type); const gchar * const * (* get_protocols) (GType type); /* using the interface */ gchar * (* get_uri) (GstURIHandler * handler); gboolean (* set_uri) (GstURIHandler * handler, const gchar * uri, GError ** error); };
Any GstElement using this interface should implement these methods.
GTypeInterface |
The parent interface type |
Method to tell whether the element handles source or sink URI. | |
Method to return the list of protocols handled by the element. | |
Method to return the URI currently handled by the element. | |
Method to set a new URI. |
typedef enum { GST_URI_UNKNOWN, GST_URI_SINK, GST_URI_SRC } GstURIType;
The different types of URI direction.
typedef enum { GST_URI_ERROR_UNSUPPORTED_PROTOCOL, GST_URI_ERROR_BAD_URI, GST_URI_ERROR_BAD_STATE, GST_URI_ERROR_BAD_REFERENCE } GstURIError;
Different URI-related errors that can occur.
The protocol is not supported | |
There was a problem with the URI | |
Could not set or change the URI because the URI handler was in a state where that is not possible or not permitted | |
There was a problem with the entity that the URI references |
#define GST_URI_TYPE_IS_VALID(type) ((type) == GST_URI_SRC || (type) == GST_URI_SINK)
Tests if the type direction is valid.
|
A GstURIType |
gboolean gst_uri_protocol_is_valid (const gchar *protocol
);
Tests if the given string is a valid protocol identifier. Protocols must consist of alphanumeric characters, '+', '-' and '.' and must start with a alphabetic character. See RFC 3986 Section 3.1.
|
A string |
Returns : |
TRUE if the string is a valid protocol identifier, FALSE otherwise. |
gboolean gst_uri_protocol_is_supported (const GstURIType type
,const gchar *protocol
);
Checks if an element exists that supports the given URI protocol. Note
that a positive return value does not imply that a subsequent call to
gst_element_make_from_uri()
is guaranteed to work.
|
Whether to check for a source or a sink |
|
Protocol that should be checked for (e.g. "http" or "smb") |
Returns : |
TRUE |
gboolean gst_uri_is_valid (const gchar *uri
);
Tests if the given string is a valid URI identifier. URIs start with a valid scheme followed by ":" and maybe a string identifying the location.
|
A URI string |
Returns : |
TRUE if the string is a valid URI |
gboolean gst_uri_has_protocol (const gchar *uri
,const gchar *protocol
);
Checks if the protocol of a given valid URI matches protocol
.
|
a URI string |
|
a protocol string (e.g. "http") |
Returns : |
TRUE if the protocol matches. |
gchar * gst_uri_get_protocol (const gchar *uri
);
Extracts the protocol out of a given valid URI. The returned string must be
freed using g_free()
.
|
A URI string |
Returns : |
The protocol for this URI. |
gchar * gst_uri_get_location (const gchar *uri
);
Extracts the location out of a given valid URI, ie. the protocol and "://"
are stripped from the URI, which means that the location returned includes
the hostname if one is specified. The returned string must be freed using
g_free()
.
Free-function: g_free
|
A URI string |
Returns : |
the location for this URI. Returns NULL if the URI isn't valid. If the URI does not contain a location, an empty string is returned. [transfer full] |
gchar * gst_uri_construct (const gchar *protocol
,const gchar *location
);
Constructs a URI for a given valid protocol and location.
Free-function: g_free
|
Protocol for URI |
|
Location for URI. [transfer none] |
Returns : |
a new string for this URI. Returns NULL if the given URI protocol is not valid, or the given location is NULL. [transfer full] |
gchar * gst_filename_to_uri (const gchar *filename
,GError **error
);
Similar to g_filename_to_uri()
, but attempts to handle relative file paths
as well. Before converting filename
into an URI, it will be prefixed by
the current working directory if it is a relative path, and then the path
will be canonicalised so that it doesn't contain any './' or '../' segments.
On Windows filename should be in UTF-8 encoding.
|
absolute or relative file name path |
|
pointer to error, or NULL |
GstElement * gst_element_make_from_uri (const GstURIType type
,const gchar *uri
,const gchar *elementname
,GError **error
);
Creates an element for handling the given URI.
|
Whether to create a source or a sink |
|
URI to create an element for |
|
Name of created element, can be NULL. [allow-none] |
|
address where to store error information, or NULL. [allow-none] |
Returns : |
a new element or NULL if none could be created. [transfer floating] |
GstURIType gst_uri_handler_get_uri_type (GstURIHandler *handler
);
Gets the type of the given URI handler
|
A GstURIHandler. |
Returns : |
the GstURIType of the URI handler.
Returns GST_URI_UNKNOWN if the handler isn't implemented correctly. |
const gchar * const * gst_uri_handler_get_protocols (GstURIHandler *handler
);
Gets the list of protocols supported by handler
. This list may not be
modified.
|
A GstURIHandler. |
Returns : |
the supported protocols.
Returns NULL if the handler isn't implemented properly, or the handler
doesn't support any protocols. [transfer none][element-type utf8]
|
gchar * gst_uri_handler_get_uri (GstURIHandler *handler
);
Gets the currently handled URI.
|
A GstURIHandler |
Returns : |
the URI currently handled by the handler .
Returns NULL if there are no URI currently handled. The
returned string must be freed with g_free() when no longer needed. [transfer full]
|
gboolean gst_uri_handler_set_uri (GstURIHandler *handler
,const gchar *uri
,GError **error
);
Tries to set the URI of the given handler.
|
A GstURIHandler |
|
URI to set |
|
address where to store a GError in case of an error, or NULL. [allow-none] |
Returns : |
TRUE if the URI was set successfully, else FALSE. |