1 /*
2  * This file is part of gtkD.
3  *
4  * gtkD is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License
6  * as published by the Free Software Foundation; either version 3
7  * of the License, or (at your option) any later version, with
8  * some exceptions, please read the COPYING file.
9  *
10  * gtkD is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with gtkD; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
18  */
19 
20 // generated automatically - do not change
21 // find conversion definition on APILookup.txt
22 // implement new conversion functionalities on the wrap.utils pakage
23 
24 
25 module gstreamer.BufferList;
26 
27 private import glib.ConstructionException;
28 private import gobject.ObjectG;
29 private import gstreamer.Buffer;
30 private import gstreamerc.gstreamer;
31 public  import gstreamerc.gstreamertypes;
32 
33 
34 /**
35  * Buffer lists are an object containing a list of buffers.
36  * 
37  * Buffer lists are created with gst_buffer_list_new() and filled with data
38  * using a gst_buffer_list_insert().
39  * 
40  * Buffer lists can be pushed on a srcpad with gst_pad_push_list(). This is
41  * interesting when multiple buffers need to be pushed in one go because it
42  * can reduce the amount of overhead for pushing each buffer individually.
43  */
44 public class BufferList
45 {
46 	/** the main Gtk struct */
47 	protected GstBufferList* gstBufferList;
48 
49 	/** Get the main Gtk struct */
50 	public GstBufferList* getBufferListStruct()
51 	{
52 		return gstBufferList;
53 	}
54 
55 	/** the main Gtk struct as a void* */
56 	protected void* getStruct()
57 	{
58 		return cast(void*)gstBufferList;
59 	}
60 
61 	/**
62 	 * Sets our main struct and passes it to the parent class.
63 	 */
64 	public this (GstBufferList* gstBufferList)
65 	{
66 		this.gstBufferList = gstBufferList;
67 	}
68 
69 
70 	/** */
71 	public static GType getType()
72 	{
73 		return gst_buffer_list_get_type();
74 	}
75 
76 	/**
77 	 * Creates a new, empty #GstBufferList. The caller is responsible for unreffing
78 	 * the returned #GstBufferList.
79 	 *
80 	 * Free-function: gst_buffer_list_unref
81 	 *
82 	 * Return: the new #GstBufferList. gst_buffer_list_unref()
83 	 *     after usage.
84 	 *
85 	 * Throws: ConstructionException GTK+ fails to create the object.
86 	 */
87 	public this()
88 	{
89 		auto p = gst_buffer_list_new();
90 		
91 		if(p is null)
92 		{
93 			throw new ConstructionException("null returned by new");
94 		}
95 		
96 		this(cast(GstBufferList*) p);
97 	}
98 
99 	/**
100 	 * Creates a new, empty #GstBufferList. The caller is responsible for unreffing
101 	 * the returned #GstBufferList. The list will have @size space preallocated so
102 	 * that memory reallocations can be avoided.
103 	 *
104 	 * Free-function: gst_buffer_list_unref
105 	 *
106 	 * Params:
107 	 *     size = an initial reserved size
108 	 *
109 	 * Return: the new #GstBufferList. gst_buffer_list_unref()
110 	 *     after usage.
111 	 *
112 	 * Throws: ConstructionException GTK+ fails to create the object.
113 	 */
114 	public this(uint size)
115 	{
116 		auto p = gst_buffer_list_new_sized(size);
117 		
118 		if(p is null)
119 		{
120 			throw new ConstructionException("null returned by new_sized");
121 		}
122 		
123 		this(cast(GstBufferList*) p);
124 	}
125 
126 	/**
127 	 * Create a copy of the given buffer list. This will make a newly allocated
128 	 * copy of the buffer that the source buffer list contains.
129 	 *
130 	 * Return: a new copy of @list.
131 	 *
132 	 * Since: 1.6
133 	 */
134 	public BufferList copyDeep()
135 	{
136 		auto p = gst_buffer_list_copy_deep(gstBufferList);
137 		
138 		if(p is null)
139 		{
140 			return null;
141 		}
142 		
143 		return ObjectG.getDObject!(BufferList)(cast(GstBufferList*) p);
144 	}
145 
146 	/**
147 	 * Call @func with @data for each buffer in @list.
148 	 *
149 	 * @func can modify the passed buffer pointer or its contents. The return value
150 	 * of @func define if this function returns or if the remaining buffers in
151 	 * the list should be skipped.
152 	 *
153 	 * Params:
154 	 *     func = a #GstBufferListFunc to call
155 	 *     userData = user data passed to @func
156 	 *
157 	 * Return: %TRUE when @func returned %TRUE for each buffer in @list or when
158 	 *     @list is empty.
159 	 */
160 	public bool foreac(GstBufferListFunc func, void* userData)
161 	{
162 		return gst_buffer_list_foreach(gstBufferList, func, userData) != 0;
163 	}
164 
165 	/**
166 	 * Get the buffer at @idx.
167 	 *
168 	 * Params:
169 	 *     idx = the index
170 	 *
171 	 * Return: the buffer at @idx in @group
172 	 *     or %NULL when there is no buffer. The buffer remains valid as
173 	 *     long as @list is valid and buffer is not removed from the list.
174 	 */
175 	public Buffer get(uint idx)
176 	{
177 		auto p = gst_buffer_list_get(gstBufferList, idx);
178 		
179 		if(p is null)
180 		{
181 			return null;
182 		}
183 		
184 		return ObjectG.getDObject!(Buffer)(cast(GstBuffer*) p);
185 	}
186 
187 	/**
188 	 * Insert @buffer at @idx in @list. Other buffers are moved to make room for
189 	 * this new buffer.
190 	 *
191 	 * A -1 value for @idx will append the buffer at the end.
192 	 *
193 	 * Params:
194 	 *     idx = the index
195 	 *     buffer = a #GstBuffer
196 	 */
197 	public void insert(int idx, Buffer buffer)
198 	{
199 		gst_buffer_list_insert(gstBufferList, idx, (buffer is null) ? null : buffer.getBufferStruct());
200 	}
201 
202 	/**
203 	 * Returns the number of buffers in @list.
204 	 *
205 	 * Return: the number of buffers in the buffer list
206 	 */
207 	public uint length()
208 	{
209 		return gst_buffer_list_length(gstBufferList);
210 	}
211 
212 	/**
213 	 * Remove @length buffers starting from @idx in @list. The following buffers
214 	 * are moved to close the gap.
215 	 *
216 	 * Params:
217 	 *     idx = the index
218 	 *     length = the amount to remove
219 	 */
220 	public void remove(uint idx, uint length)
221 	{
222 		gst_buffer_list_remove(gstBufferList, idx, length);
223 	}
224 }