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.SocketService; 26 27 private import gio.SocketConnection; 28 private import gio.SocketListener; 29 private import glib.ConstructionException; 30 private import gobject.ObjectG; 31 private import gobject.Signals; 32 public import gtkc.gdktypes; 33 private import gtkc.gio; 34 public import gtkc.giotypes; 35 36 37 /** 38 * A #GSocketService is an object that represents a service that 39 * is provided to the network or over local sockets. When a new 40 * connection is made to the service the #GSocketService::incoming 41 * signal is emitted. 42 * 43 * A #GSocketService is a subclass of #GSocketListener and you need 44 * to add the addresses you want to accept connections on with the 45 * #GSocketListener APIs. 46 * 47 * There are two options for implementing a network service based on 48 * #GSocketService. The first is to create the service using 49 * g_socket_service_new() and to connect to the #GSocketService::incoming 50 * signal. The second is to subclass #GSocketService and override the 51 * default signal handler implementation. 52 * 53 * In either case, the handler must immediately return, or else it 54 * will block additional incoming connections from being serviced. 55 * If you are interested in writing connection handlers that contain 56 * blocking code then see #GThreadedSocketService. 57 * 58 * The socket service runs on the main loop of the 59 * [thread-default context][g-main-context-push-thread-default-context] 60 * of the thread it is created in, and is not 61 * threadsafe in general. However, the calls to start and stop the 62 * service are thread-safe so these can be used from threads that 63 * handle incoming clients. 64 * 65 * Since: 2.22 66 */ 67 public class SocketService : SocketListener 68 { 69 /** the main Gtk struct */ 70 protected GSocketService* gSocketService; 71 72 /** Get the main Gtk struct */ 73 public GSocketService* getSocketServiceStruct() 74 { 75 return gSocketService; 76 } 77 78 /** the main Gtk struct as a void* */ 79 protected override void* getStruct() 80 { 81 return cast(void*)gSocketService; 82 } 83 84 protected override void setStruct(GObject* obj) 85 { 86 gSocketService = cast(GSocketService*)obj; 87 super.setStruct(obj); 88 } 89 90 /** 91 * Sets our main struct and passes it to the parent class. 92 */ 93 public this (GSocketService* gSocketService, bool ownedRef = false) 94 { 95 this.gSocketService = gSocketService; 96 super(cast(GSocketListener*)gSocketService, ownedRef); 97 } 98 99 100 /** */ 101 public static GType getType() 102 { 103 return g_socket_service_get_type(); 104 } 105 106 /** 107 * Creates a new #GSocketService with no sockets to listen for. 108 * New listeners can be added with e.g. g_socket_listener_add_address() 109 * or g_socket_listener_add_inet_port(). 110 * 111 * Return: a new #GSocketService. 112 * 113 * Since: 2.22 114 * 115 * Throws: ConstructionException GTK+ fails to create the object. 116 */ 117 public this() 118 { 119 auto p = g_socket_service_new(); 120 121 if(p is null) 122 { 123 throw new ConstructionException("null returned by new"); 124 } 125 126 this(cast(GSocketService*) p, true); 127 } 128 129 /** 130 * Check whether the service is active or not. An active 131 * service will accept new clients that connect, while 132 * a non-active service will let connecting clients queue 133 * up until the service is started. 134 * 135 * Return: %TRUE if the service is active, %FALSE otherwise 136 * 137 * Since: 2.22 138 */ 139 public bool isActive() 140 { 141 return g_socket_service_is_active(gSocketService) != 0; 142 } 143 144 /** 145 * Starts the service, i.e. start accepting connections 146 * from the added sockets when the mainloop runs. 147 * 148 * This call is thread-safe, so it may be called from a thread 149 * handling an incoming client request. 150 * 151 * Since: 2.22 152 */ 153 public void start() 154 { 155 g_socket_service_start(gSocketService); 156 } 157 158 /** 159 * Stops the service, i.e. stops accepting connections 160 * from the added sockets when the mainloop runs. 161 * 162 * This call is thread-safe, so it may be called from a thread 163 * handling an incoming client request. 164 * 165 * Note that this only stops accepting new connections; it does not 166 * close the listening sockets, and you can call 167 * g_socket_service_start() again later to begin listening again. To 168 * close the listening sockets, call g_socket_listener_close(). (This 169 * will happen automatically when the #GSocketService is finalized.) 170 * 171 * Since: 2.22 172 */ 173 public void stop() 174 { 175 g_socket_service_stop(gSocketService); 176 } 177 178 int[string] connectedSignals; 179 180 bool delegate(SocketConnection, ObjectG, SocketService)[] onIncomingListeners; 181 /** 182 * The ::incoming signal is emitted when a new incoming connection 183 * to @service needs to be handled. The handler must initiate the 184 * handling of @connection, but may not block; in essence, 185 * asynchronous operations must be used. 186 * 187 * @connection will be unreffed once the signal handler returns, 188 * so you need to ref it yourself if you are planning to use it. 189 * 190 * Params: 191 * connection = a new #GSocketConnection object 192 * sourceObject = the source_object passed to 193 * g_socket_listener_add_address() 194 * 195 * Return: %TRUE to stop other handlers from being called 196 * 197 * Since: 2.22 198 */ 199 void addOnIncoming(bool delegate(SocketConnection, ObjectG, SocketService) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0) 200 { 201 if ( "incoming" !in connectedSignals ) 202 { 203 Signals.connectData( 204 this, 205 "incoming", 206 cast(GCallback)&callBackIncoming, 207 cast(void*)this, 208 null, 209 connectFlags); 210 connectedSignals["incoming"] = 1; 211 } 212 onIncomingListeners ~= dlg; 213 } 214 extern(C) static int callBackIncoming(GSocketService* socketserviceStruct, GSocketConnection* connection, GObject* sourceObject, SocketService _socketservice) 215 { 216 foreach ( bool delegate(SocketConnection, ObjectG, SocketService) dlg; _socketservice.onIncomingListeners ) 217 { 218 if ( dlg(ObjectG.getDObject!(SocketConnection)(connection), ObjectG.getDObject!(ObjectG)(sourceObject), _socketservice) ) 219 { 220 return 1; 221 } 222 } 223 224 return 0; 225 } 226 }