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.TcpWrapperConnection;
26 
27 private import gio.IOStream;
28 private import gio.Socket;
29 private import gio.SocketConnection;
30 private import gio.TcpConnection;
31 private import glib.ConstructionException;
32 private import gobject.ObjectG;
33 private import gtkc.gio;
34 public  import gtkc.giotypes;
35 
36 
37 /**
38  * A #GTcpWrapperConnection can be used to wrap a #GIOStream that is
39  * based on a #GSocket, but which is not actually a
40  * #GSocketConnection. This is used by #GSocketClient so that it can
41  * always return a #GSocketConnection, even when the connection it has
42  * actually created is not directly a #GSocketConnection.
43  */
44 public class TcpWrapperConnection : TcpConnection
45 {
46 	/** the main Gtk struct */
47 	protected GTcpWrapperConnection* gTcpWrapperConnection;
48 
49 	/** Get the main Gtk struct */
50 	public GTcpWrapperConnection* getTcpWrapperConnectionStruct()
51 	{
52 		return gTcpWrapperConnection;
53 	}
54 
55 	/** the main Gtk struct as a void* */
56 	protected override void* getStruct()
57 	{
58 		return cast(void*)gTcpWrapperConnection;
59 	}
60 
61 	protected override void setStruct(GObject* obj)
62 	{
63 		gTcpWrapperConnection = cast(GTcpWrapperConnection*)obj;
64 		super.setStruct(obj);
65 	}
66 
67 	/**
68 	 * Sets our main struct and passes it to the parent class.
69 	 */
70 	public this (GTcpWrapperConnection* gTcpWrapperConnection, bool ownedRef = false)
71 	{
72 		this.gTcpWrapperConnection = gTcpWrapperConnection;
73 		super(cast(GTcpConnection*)gTcpWrapperConnection, ownedRef);
74 	}
75 
76 	/**
77 	 */
78 
79 	public static GType getType()
80 	{
81 		return g_tcp_wrapper_connection_get_type();
82 	}
83 
84 	/**
85 	 * Wraps @base_io_stream and @socket together as a #GSocketConnection.
86 	 *
87 	 * Params:
88 	 *     baseIoStream = the #GIOStream to wrap
89 	 *     socket = the #GSocket associated with @base_io_stream
90 	 *
91 	 * Return: the new #GSocketConnection.
92 	 *
93 	 * Since: 2.28
94 	 *
95 	 * Throws: ConstructionException GTK+ fails to create the object.
96 	 */
97 	public this(IOStream baseIoStream, Socket socket)
98 	{
99 		auto p = g_tcp_wrapper_connection_new((baseIoStream is null) ? null : baseIoStream.getIOStreamStruct(), (socket is null) ? null : socket.getSocketStruct());
100 		
101 		if(p is null)
102 		{
103 			throw new ConstructionException("null returned by new");
104 		}
105 		
106 		this(cast(GTcpWrapperConnection*) p, true);
107 	}
108 
109 	/**
110 	 * Get's @conn's base #GIOStream
111 	 *
112 	 * Return: @conn's base #GIOStream
113 	 */
114 	public IOStream getBaseIoStream()
115 	{
116 		auto p = g_tcp_wrapper_connection_get_base_io_stream(gTcpWrapperConnection);
117 		
118 		if(p is null)
119 		{
120 			return null;
121 		}
122 		
123 		return ObjectG.getDObject!(IOStream)(cast(GIOStream*) p);
124 	}
125 }