Tizen 2.0 Release
[framework/multimedia/gst-plugins-bad0.10.git] / ext / curl / gstcurlsink.h
1 /* GStreamer
2  * Copyright (C) 2011 Axis Communications <dev-gstreamer@axis.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., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __GST_CURL_SINK__
21 #define __GST_CURL_SINK__
22
23 #include <gst/gst.h>
24 #include <gst/base/gstbasesink.h>
25 #include <curl/curl.h>
26
27 G_BEGIN_DECLS
28
29 #define GST_TYPE_CURL_SINK \
30   (gst_curl_sink_get_type())
31 #define GST_CURL_SINK(obj) \
32   (G_TYPE_CHECK_INSTANCE_CAST((obj), GST_TYPE_CURL_SINK, GstCurlSink))
33 #define GST_CURL_SINK_CLASS(klass) \
34   (G_TYPE_CHECK_CLASS_CAST((klass), GST_TYPE_CURL_SINK, GstCurlSinkClass))
35 #define GST_IS_CURL_SINK(obj) \
36   (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_CURL_SINK))
37 #define GST_IS_CURL_SINK_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_CURL_SINK))
39
40 typedef struct _GstCurlSink GstCurlSink;
41 typedef struct _GstCurlSinkClass GstCurlSinkClass;
42
43 typedef struct _TransferBuffer TransferBuffer;
44 typedef struct _TransferCondition TransferCondition;
45
46 struct _TransferBuffer {
47   guint8 *ptr;
48   size_t len;
49   size_t offset;
50 };
51
52 struct _TransferCondition {
53   GCond *cond;
54   gboolean data_sent;
55   gboolean data_available;
56 };
57
58 struct _GstCurlSink
59 {
60   GstBaseSink parent;
61
62   /*< private >*/
63   CURLM *multi_handle;
64   CURL *curl;
65   struct curl_slist *header_list;
66   GstPollFD fd;
67   GstPoll *fdset;
68   GThread *transfer_thread;
69   GstFlowReturn flow_ret;
70   TransferBuffer *transfer_buf;
71   TransferCondition *transfer_cond;
72   gint num_buffers_per_packet;
73   gint timeout;
74   gchar *url;
75   gchar *user;
76   gchar *passwd;
77   gchar *proxy;
78   guint proxy_port;
79   gchar *proxy_user;
80   gchar *proxy_passwd;
81   gchar *file_name;
82   guint qos_dscp;
83   gboolean accept_self_signed;
84   gboolean use_content_length;
85   gboolean transfer_thread_close;
86   gboolean new_file;
87   gchar *content_type;
88   gboolean proxy_headers_set;
89 };
90
91 struct _GstCurlSinkClass
92 {
93   GstBaseSinkClass parent_class;
94 };
95
96 GType gst_curl_sink_get_type (void);
97
98 G_END_DECLS
99
100 #endif