Beginnings of GSocket API, small fixes for InetAddress
[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
27 #include "ginetsocketaddress.h"
28
29 G_DEFINE_TYPE (GInetSocketAddress, g_inet_socket_address, G_TYPE_SOCKET_ADDRESS);
30
31 enum {
32   PROP_0,
33   PROP_ADDRESS,
34   PROP_PORT
35 };
36
37 struct _GInetSocketAddressPrivate
38 {
39   GInetAddress *address;
40   guint16       port;
41 };
42
43 static void
44 g_inet_socket_address_finalize (GObject *object)
45 {
46   GInetSocketAddress *address G_GNUC_UNUSED = G_INET_SOCKET_ADDRESS (object);
47
48   if (G_OBJECT_CLASS (g_inet_socket_address_parent_class)->finalize)
49     (*G_OBJECT_CLASS (g_inet_socket_address_parent_class)->finalize) (object);
50 }
51
52 static void
53 g_inet_socket_address_dispose (GObject *object)
54 {
55   GInetSocketAddress *address G_GNUC_UNUSED = G_INET_SOCKET_ADDRESS (object);
56
57   if (G_OBJECT_CLASS (g_inet_socket_address_parent_class)->dispose)
58     (*G_OBJECT_CLASS (g_inet_socket_address_parent_class)->dispose) (object);
59 }
60
61 static void
62 g_inet_socket_address_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
63 {
64   GInetSocketAddress *address = G_INET_SOCKET_ADDRESS (object);
65
66   switch (prop_id)
67     {
68       case PROP_ADDRESS:
69         g_value_set_object (value, address->priv->address);
70         break;
71
72       case PROP_PORT:
73         g_value_set_uint (value, address->priv->port);
74         break;
75
76       default:
77         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
78     }
79 }
80
81 static void
82 g_inet_socket_address_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
83 {
84   GInetSocketAddress *address = G_INET_SOCKET_ADDRESS (object);
85
86   switch (prop_id)
87     {
88       case PROP_ADDRESS:
89         address->priv->address = G_INET_ADDRESS (g_value_get_object (value));
90         break;
91
92       case PROP_PORT:
93         address->priv->port = (guint16) g_value_get_uint (value);
94     }
95 }
96
97 static void
98 g_inet_socket_address_class_init (GInetSocketAddressClass *klass)
99 {
100   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
101
102   g_type_class_add_private (klass, sizeof (GInetSocketAddressPrivate));
103
104   gobject_class->finalize = g_inet_socket_address_finalize;
105   gobject_class->dispose = g_inet_socket_address_dispose;
106   gobject_class->set_property = g_inet_socket_address_set_property;
107   gobject_class->get_property = g_inet_socket_address_get_property;
108
109   g_object_class_install_property (gobject_class, PROP_ADDRESS,
110                                    g_param_spec_object ("address",
111                                                         "address",
112                                                         "address",
113                                                         G_TYPE_INET_ADDRESS,
114                                                         G_PARAM_CONSTRUCT_ONLY | G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK));
115
116   g_object_class_install_property (gobject_class, PROP_PORT,
117                                    g_param_spec_uint ("port",
118                                                       "port",
119                                                       "port",
120                                                       0,
121                                                       65535,
122                                                       0,
123                                                       G_PARAM_CONSTRUCT_ONLY | G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK));
124 }
125
126 static void
127 g_inet_socket_address_init (GInetSocketAddress *address)
128 {
129   address->priv = G_TYPE_INSTANCE_GET_PRIVATE (address,
130                                                G_TYPE_INET_SOCKET_ADDRESS,
131                                                GInetSocketAddressPrivate);
132 }
133
134
135 GInetSocketAddress *
136 g_inet_socket_address_new (GInetAddress *address, guint16 port)
137 {
138   return NULL;
139 }
140
141
142 GInetAddress *
143 g_inet_socket_address_get_address (GInetSocketAddress *sockaddr)
144 {
145   g_return_val_if_fail (G_IS_INET_SOCKET_ADDRESS (sockaddr), NULL);
146
147   return sockaddr->priv->address;
148 }
149
150 guint16 
151 g_inet_socket_address_get_port (GInetSocketAddress *sockaddr)
152 {
153   g_return_val_if_fail (G_IS_INET_SOCKET_ADDRESS (sockaddr), 0);
154
155   return sockaddr->priv->port;
156 }
157