gstrtspconnection.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. /* GStreamer
  2. * Copyright (C) <2005,2009> Wim Taymans <wim.taymans@gmail.com>
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Library General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Library General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Library General Public
  15. * License along with this library; if not, write to the
  16. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  17. * Boston, MA 02110-1301, USA.
  18. */
  19. /*
  20. * Unless otherwise indicated, Source Code is licensed under MIT license.
  21. * See further explanation attached in License Statement (distributed in the file
  22. * LICENSE).
  23. *
  24. * Permission is hereby granted, free of charge, to any person obtaining a copy of
  25. * this software and associated documentation files (the "Software"), to deal in
  26. * the Software without restriction, including without limitation the rights to
  27. * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  28. * of the Software, and to permit persons to whom the Software is furnished to do
  29. * so, subject to the following conditions:
  30. *
  31. * The above copyright notice and this permission notice shall be included in all
  32. * copies or substantial portions of the Software.
  33. *
  34. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  35. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  36. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  37. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  38. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  39. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  40. * SOFTWARE.
  41. */
  42. #ifndef __GST_RTSP_CONNECTION_H__
  43. #define __GST_RTSP_CONNECTION_H__
  44. #include <glib.h>
  45. #include <gst/gstconfig.h>
  46. #include <gst/rtsp/gstrtspdefs.h>
  47. #include <gst/rtsp/gstrtspurl.h>
  48. #include <gst/rtsp/gstrtspmessage.h>
  49. #include <gio/gio.h>
  50. G_BEGIN_DECLS
  51. /**
  52. * GstRTSPConnection:
  53. *
  54. * Opaque RTSP connection object.
  55. */
  56. typedef struct _GstRTSPConnection GstRTSPConnection;
  57. /* opening/closing a connection */
  58. GstRTSPResult gst_rtsp_connection_create (const GstRTSPUrl *url, GstRTSPConnection **conn);
  59. GstRTSPResult gst_rtsp_connection_create_from_socket (GSocket * socket,
  60. const gchar * ip,
  61. guint16 port,
  62. const gchar * initial_buffer,
  63. GstRTSPConnection ** conn);
  64. GstRTSPResult gst_rtsp_connection_accept (GSocket * socket, GstRTSPConnection ** conn, GCancellable * cancellable);
  65. GstRTSPResult gst_rtsp_connection_connect (GstRTSPConnection * conn, GTimeVal * timeout);
  66. GstRTSPResult gst_rtsp_connection_connect_with_response (GstRTSPConnection * conn, GTimeVal * timeout, GstRTSPMessage * response);
  67. GstRTSPResult gst_rtsp_connection_close (GstRTSPConnection *conn);
  68. GstRTSPResult gst_rtsp_connection_free (GstRTSPConnection *conn);
  69. /* TLS connections */
  70. GTlsConnection * gst_rtsp_connection_get_tls (GstRTSPConnection * conn, GError ** error);
  71. gboolean gst_rtsp_connection_set_tls_validation_flags (GstRTSPConnection * conn, GTlsCertificateFlags flags);
  72. GTlsCertificateFlags gst_rtsp_connection_get_tls_validation_flags (GstRTSPConnection * conn);
  73. void gst_rtsp_connection_set_tls_database (GstRTSPConnection * conn, GTlsDatabase * database);
  74. GTlsDatabase * gst_rtsp_connection_get_tls_database (GstRTSPConnection * conn);
  75. void gst_rtsp_connection_set_tls_interaction (GstRTSPConnection * conn, GTlsInteraction * interaction);
  76. GTlsInteraction * gst_rtsp_connection_get_tls_interaction (GstRTSPConnection * conn);
  77. /* sending/receiving raw bytes */
  78. GstRTSPResult gst_rtsp_connection_read (GstRTSPConnection * conn, guint8 * data,
  79. guint size, GTimeVal * timeout);
  80. GstRTSPResult gst_rtsp_connection_write (GstRTSPConnection * conn, const guint8 * data,
  81. guint size, GTimeVal * timeout);
  82. /* sending/receiving messages */
  83. GstRTSPResult gst_rtsp_connection_send (GstRTSPConnection *conn, GstRTSPMessage *message,
  84. GTimeVal *timeout);
  85. GstRTSPResult gst_rtsp_connection_receive (GstRTSPConnection *conn, GstRTSPMessage *message,
  86. GTimeVal *timeout);
  87. /* status management */
  88. GstRTSPResult gst_rtsp_connection_poll (GstRTSPConnection *conn, GstRTSPEvent events,
  89. GstRTSPEvent *revents, GTimeVal *timeout);
  90. /* reset the timeout */
  91. GstRTSPResult gst_rtsp_connection_next_timeout (GstRTSPConnection *conn, GTimeVal *timeout);
  92. GstRTSPResult gst_rtsp_connection_reset_timeout (GstRTSPConnection *conn);
  93. /* flushing state */
  94. GstRTSPResult gst_rtsp_connection_flush (GstRTSPConnection *conn, gboolean flush);
  95. /* HTTP proxy support */
  96. GstRTSPResult gst_rtsp_connection_set_proxy (GstRTSPConnection *conn,
  97. const gchar *host, guint port);
  98. /* configure authentication data */
  99. GstRTSPResult gst_rtsp_connection_set_auth (GstRTSPConnection *conn, GstRTSPAuthMethod method,
  100. const gchar *user, const gchar *pass);
  101. void gst_rtsp_connection_set_auth_param (GstRTSPConnection *conn,
  102. const gchar * param,
  103. const gchar *value);
  104. void gst_rtsp_connection_clear_auth_params (GstRTSPConnection *conn);
  105. /* configure DSCP */
  106. GstRTSPResult gst_rtsp_connection_set_qos_dscp (GstRTSPConnection *conn,
  107. guint qos_dscp);
  108. /* accessors */
  109. GstRTSPUrl * gst_rtsp_connection_get_url (const GstRTSPConnection *conn);
  110. const gchar * gst_rtsp_connection_get_ip (const GstRTSPConnection *conn);
  111. void gst_rtsp_connection_set_ip (GstRTSPConnection *conn, const gchar *ip);
  112. GSocket * gst_rtsp_connection_get_read_socket (const GstRTSPConnection *conn);
  113. GSocket * gst_rtsp_connection_get_write_socket (const GstRTSPConnection *conn);
  114. void gst_rtsp_connection_set_http_mode (GstRTSPConnection *conn,
  115. gboolean enable);
  116. /* tunneling */
  117. void gst_rtsp_connection_set_tunneled (GstRTSPConnection *conn, gboolean tunneled);
  118. gboolean gst_rtsp_connection_is_tunneled (const GstRTSPConnection *conn);
  119. const gchar * gst_rtsp_connection_get_tunnelid (const GstRTSPConnection *conn);
  120. GstRTSPResult gst_rtsp_connection_do_tunnel (GstRTSPConnection *conn, GstRTSPConnection *conn2);
  121. void gst_rtsp_connection_set_remember_session_id (GstRTSPConnection *conn, gboolean remember);
  122. gboolean gst_rtsp_connection_get_remember_session_id (GstRTSPConnection *conn);
  123. /* async IO */
  124. /**
  125. * GstRTSPWatch:
  126. *
  127. * Opaque RTSP watch object that can be used for asynchronous RTSP
  128. * operations.
  129. */
  130. typedef struct _GstRTSPWatch GstRTSPWatch;
  131. /**
  132. * GstRTSPWatchFuncs:
  133. * @message_received: callback when a message was received
  134. * @message_sent: callback when a message was sent
  135. * @closed: callback when the connection is closed
  136. * @error: callback when an error occured
  137. * @tunnel_start: a client started a tunneled connection. The tunnelid of the
  138. * connection must be saved.
  139. * @tunnel_complete: a client finished a tunneled connection. In this callback
  140. * you usually pair the tunnelid of this connection with the saved one using
  141. * gst_rtsp_connection_do_tunnel().
  142. * @error_full: callback when an error occured with more information than
  143. * the @error callback.
  144. * @tunnel_lost: callback when the post connection of a tunnel is closed.
  145. * @tunnel_http_response: callback when an HTTP response to the GET request
  146. * is about to be sent for a tunneled connection. The response can be
  147. * modified in the callback. Since 1.4.
  148. *
  149. * Callback functions from a #GstRTSPWatch.
  150. */
  151. typedef struct {
  152. GstRTSPResult (*message_received) (GstRTSPWatch *watch, GstRTSPMessage *message,
  153. gpointer user_data);
  154. GstRTSPResult (*message_sent) (GstRTSPWatch *watch, guint id,
  155. gpointer user_data);
  156. GstRTSPResult (*closed) (GstRTSPWatch *watch, gpointer user_data);
  157. GstRTSPResult (*error) (GstRTSPWatch *watch, GstRTSPResult result,
  158. gpointer user_data);
  159. GstRTSPStatusCode (*tunnel_start) (GstRTSPWatch *watch, gpointer user_data);
  160. GstRTSPResult (*tunnel_complete) (GstRTSPWatch *watch, gpointer user_data);
  161. GstRTSPResult (*error_full) (GstRTSPWatch *watch, GstRTSPResult result,
  162. GstRTSPMessage *message, guint id,
  163. gpointer user_data);
  164. GstRTSPResult (*tunnel_lost) (GstRTSPWatch *watch, gpointer user_data);
  165. GstRTSPResult (*tunnel_http_response) (GstRTSPWatch *watch,
  166. GstRTSPMessage *request,
  167. GstRTSPMessage *response,
  168. gpointer user_data);
  169. /*< private >*/
  170. gpointer _gst_reserved[GST_PADDING-1];
  171. } GstRTSPWatchFuncs;
  172. GstRTSPWatch * gst_rtsp_watch_new (GstRTSPConnection *conn,
  173. GstRTSPWatchFuncs *funcs,
  174. gpointer user_data,
  175. GDestroyNotify notify);
  176. void gst_rtsp_watch_reset (GstRTSPWatch *watch);
  177. void gst_rtsp_watch_unref (GstRTSPWatch *watch);
  178. guint gst_rtsp_watch_attach (GstRTSPWatch *watch,
  179. GMainContext *context);
  180. void gst_rtsp_watch_set_send_backlog (GstRTSPWatch *watch,
  181. gsize bytes, guint messages);
  182. void gst_rtsp_watch_get_send_backlog (GstRTSPWatch *watch,
  183. gsize *bytes, guint *messages);
  184. GstRTSPResult gst_rtsp_watch_write_data (GstRTSPWatch *watch,
  185. const guint8 *data,
  186. guint size, guint *id);
  187. GstRTSPResult gst_rtsp_watch_send_message (GstRTSPWatch *watch,
  188. GstRTSPMessage *message,
  189. guint *id);
  190. GstRTSPResult gst_rtsp_watch_wait_backlog (GstRTSPWatch * watch,
  191. GTimeVal *timeout);
  192. void gst_rtsp_watch_set_flushing (GstRTSPWatch * watch,
  193. gboolean flushing);
  194. G_END_DECLS
  195. #endif /* __GST_RTSP_CONNECTION_H__ */