Make things inherit from GInitiallyUnowned, some more socket changes
[cascardo/gnio.git] / gnio / ginetsocketaddress.c
1 /* GNIO - GLib Network Layer of GIO
2  *
3  * Copyright (C) 2008 Christian Kellner, Samuel Cormier-Iijima
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library 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 GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Authors: Christian Kellner <gicmo@gnome.org>
21  *          Samuel Cormier-Iijima <sciyoshi@gmail.com>
22  */
23
24 #include <config.h>
25 #include <glib.h>
26 #include <string.h>
27 #include <sys/socket.h>
28 #include <netinet/in.h>
29
30 #include "ginetsocketaddress.h"
31 #include "ginetaddress.h"
32 #include "ginet4address.h"
33 #include "ginet6address.h"
34
35 G_DEFINE_TYPE (GInetSocketAddress, g_inet_socket_address, G_TYPE_SOCKET_ADDRESS);
36
37 enum {
38   PROP_0,
39   PROP_ADDRESS,
40   PROP_PORT
41 };
42
43 struct _GInetSocketAddressPrivate
44 {
45   GInetAddress *address;
46   guint16       port;
47 };
48
49 static void
50 g_inet_socket_address_finalize (GObject *object)
51 {
52   GInetSocketAddress *address G_GNUC_UNUSED = G_INET_SOCKET_ADDRESS (object);
53
54   if (G_OBJECT_CLASS (g_inet_socket_address_parent_class)->finalize)
55     (*G_OBJECT_CLASS (g_inet_socket_address_parent_class)->finalize) (object);
56 }
57
58 static void
59 g_inet_socket_address_dispose (GObject *object)
60 {
61   GInetSocketAddress *address G_GNUC_UNUSED = G_INET_SOCKET_ADDRESS (object);
62
63   g_object_unref (address->priv->address);
64
65   if (G_OBJECT_CLASS (g_inet_socket_address_parent_class)->dispose)
66     (*G_OBJECT_CLASS (g_inet_socket_address_parent_class)->dispose) (object);
67 }
68
69 static void
70 g_inet_socket_address_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
71 {
72   GInetSocketAddress *address = G_INET_SOCKET_ADDRESS (object);
73
74   switch (prop_id)
75     {
76       case PROP_ADDRESS:
77         g_value_set_object (value, address->priv->address);
78         break;
79
80       case PROP_PORT:
81         g_value_set_uint (value, address->priv->port);
82         break;
83
84       default:
85         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
86     }
87 }
88
89 static void
90 g_inet_socket_address_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
91 {
92   GInetSocketAddress *address = G_INET_SOCKET_ADDRESS (object);
93
94   switch (prop_id)
95     {
96       case PROP_ADDRESS:
97         address->priv->address = G_INET_ADDRESS (g_object_ref_sink (g_value_get_object (value)));
98         break;
99
100       case PROP_PORT:
101         address->priv->port = (guint16) g_value_get_uint (value);
102     }
103 }
104
105 static gssize
106 g_inet_socket_address_native_size (GSocketAddress *address)
107 {
108   GInetSocketAddress *addr;
109
110   g_return_val_if_fail (G_IS_INET_SOCKET_ADDRESS (address), 0);
111
112   addr = G_INET_SOCKET_ADDRESS (address);
113
114   if (G_IS_INET4_ADDRESS (addr->priv->address))
115     return sizeof (struct sockaddr_in);
116   else if (G_IS_INET6_ADDRESS (addr->priv->address))
117     return sizeof (struct sockaddr_in6);
118   else
119     return -1;
120 }
121
122 static gboolean
123 g_inet_socket_address_to_native (GSocketAddress *address, gpointer dest)
124 {
125   GInetSocketAddress *addr;
126
127   g_return_val_if_fail (G_IS_INET_SOCKET_ADDRESS (address), 0);
128
129   addr = G_INET_SOCKET_ADDRESS (address);
130
131   if (G_IS_INET4_ADDRESS (addr->priv->address))
132     {
133       struct sockaddr_in *sock = (struct sockaddr_in *) dest;
134
135       sock->sin_family = AF_INET;
136       sock->sin_port = addr->priv->port;
137       memcpy (&(sock->sin_addr.s_addr), g_inet4_address_to_bytes (G_INET4_ADDRESS (addr->priv->address)), sizeof (sock->sin_addr));
138       memset (sock->sin_zero, 0, sizeof (sock->sin_zero));
139       return TRUE;
140     }
141   else if (G_IS_INET6_ADDRESS (addr->priv->address))
142     {
143       return FALSE;
144     }
145   else
146     return FALSE;
147 }
148
149 static void
150 g_inet_socket_address_class_init (GInetSocketAddressClass *klass)
151 {
152   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
153   GSocketAddressClass *gsocketaddress_class = G_SOCKET_ADDRESS_CLASS (klass);
154
155   g_type_class_add_private (klass, sizeof (GInetSocketAddressPrivate));
156
157   gobject_class->finalize = g_inet_socket_address_finalize;
158   gobject_class->dispose = g_inet_socket_address_dispose;
159   gobject_class->set_property = g_inet_socket_address_set_property;
160   gobject_class->get_property = g_inet_socket_address_get_property;
161
162   gsocketaddress_class->to_native = g_inet_socket_address_to_native;
163   gsocketaddress_class->native_size = g_inet_socket_address_native_size;
164
165   g_object_class_install_property (gobject_class, PROP_ADDRESS,
166                                    g_param_spec_object ("address",
167                                                         "address",
168                                                         "address",
169                                                         G_TYPE_INET_ADDRESS,
170                                                         G_PARAM_CONSTRUCT_ONLY | G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK));
171
172   g_object_class_install_property (gobject_class, PROP_PORT,
173                                    g_param_spec_uint ("port",
174                                                       "port",
175                                                       "port",
176                                                       0,
177                                                       65535,
178                                                       0,
179                                                       G_PARAM_CONSTRUCT_ONLY | G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK));
180 }
181
182 static void
183 g_inet_socket_address_init (GInetSocketAddress *address)
184 {
185   address->priv = G_TYPE_INSTANCE_GET_PRIVATE (address,
186                                                G_TYPE_INET_SOCKET_ADDRESS,
187                                                GInetSocketAddressPrivate);
188
189   address->priv->address = NULL;
190   address->priv->port = 0;
191 }
192
193
194 GInetSocketAddress *
195 g_inet_socket_address_new (GInetAddress *address, guint16 port)
196 {
197   return G_INET_SOCKET_ADDRESS (g_object_new (G_TYPE_INET_SOCKET_ADDRESS, "address", address, "port", port, NULL));
198 }
199
200 GInetAddress *
201 g_inet_socket_address_get_address (GInetSocketAddress *sockaddr)
202 {
203   g_return_val_if_fail (G_IS_INET_SOCKET_ADDRESS (sockaddr), NULL);
204
205   return sockaddr->priv->address;
206 }
207
208 guint16 
209 g_inet_socket_address_get_port (GInetSocketAddress *sockaddr)
210 {
211   g_return_val_if_fail (G_IS_INET_SOCKET_ADDRESS (sockaddr), 0);
212
213   return sockaddr->priv->port;
214 }
215