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 gio.ConverterInputStream;
26 
27 private import gio.ConverterIF;
28 private import gio.FilterInputStream;
29 private import gio.InputStream;
30 private import gio.PollableInputStreamIF;
31 private import gio.PollableInputStreamT;
32 private import gio.c.functions;
33 public  import gio.c.types;
34 private import glib.ConstructionException;
35 private import gobject.ObjectG;
36 
37 
38 /**
39  * Converter input stream implements #GInputStream and allows
40  * conversion of data of various types during reading.
41  * 
42  * As of GLib 2.34, #GConverterInputStream implements
43  * #GPollableInputStream.
44  */
45 public class ConverterInputStream : FilterInputStream, PollableInputStreamIF
46 {
47 	/** the main Gtk struct */
48 	protected GConverterInputStream* gConverterInputStream;
49 
50 	/** Get the main Gtk struct */
51 	public GConverterInputStream* getConverterInputStreamStruct(bool transferOwnership = false)
52 	{
53 		if (transferOwnership)
54 			ownedRef = false;
55 		return gConverterInputStream;
56 	}
57 
58 	/** the main Gtk struct as a void* */
59 	protected override void* getStruct()
60 	{
61 		return cast(void*)gConverterInputStream;
62 	}
63 
64 	/**
65 	 * Sets our main struct and passes it to the parent class.
66 	 */
67 	public this (GConverterInputStream* gConverterInputStream, bool ownedRef = false)
68 	{
69 		this.gConverterInputStream = gConverterInputStream;
70 		super(cast(GFilterInputStream*)gConverterInputStream, ownedRef);
71 	}
72 
73 	// add the PollableInputStream capabilities
74 	mixin PollableInputStreamT!(GConverterInputStream);
75 
76 
77 	/** */
78 	public static GType getType()
79 	{
80 		return g_converter_input_stream_get_type();
81 	}
82 
83 	/**
84 	 * Creates a new converter input stream for the @base_stream.
85 	 *
86 	 * Params:
87 	 *     baseStream = a #GInputStream
88 	 *     converter = a #GConverter
89 	 *
90 	 * Returns: a new #GInputStream.
91 	 *
92 	 * Throws: ConstructionException GTK+ fails to create the object.
93 	 */
94 	public this(InputStream baseStream, ConverterIF converter)
95 	{
96 		auto __p = g_converter_input_stream_new((baseStream is null) ? null : baseStream.getInputStreamStruct(), (converter is null) ? null : converter.getConverterStruct());
97 
98 		if(__p is null)
99 		{
100 			throw new ConstructionException("null returned by new");
101 		}
102 
103 		this(cast(GConverterInputStream*) __p, true);
104 	}
105 
106 	/**
107 	 * Gets the #GConverter that is used by @converter_stream.
108 	 *
109 	 * Returns: the converter of the converter input stream
110 	 *
111 	 * Since: 2.24
112 	 */
113 	public ConverterIF getConverter()
114 	{
115 		auto __p = g_converter_input_stream_get_converter(gConverterInputStream);
116 
117 		if(__p is null)
118 		{
119 			return null;
120 		}
121 
122 		return ObjectG.getDObject!(ConverterIF)(cast(GConverter*) __p);
123 	}
124 }