summaryrefslogtreecommitdiff
path: root/src/bonjour-discovery-client.c
blob: 66a69669039985ba80e0f313a2bc8aa613d53e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
/*
 * bonjour-discovery-client.c - Source for SalutBonjourDiscoveryClient
 * Copyright (C) 2012 Collabora Ltd.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include "config.h"
#include "bonjour-discovery-client.h"

#include <stdlib.h>
#include <string.h>
#include <time.h>

#include <glib.h>

#define DEBUG_FLAG DEBUG_DISCOVERY
#include "debug.h"

#include "presence.h"
#include "bonjour-contact-manager.h"
#include "bonjour-self.h"

static void
discovery_client_init (gpointer g_iface, gpointer iface_data);

G_DEFINE_TYPE_WITH_CODE (SalutBonjourDiscoveryClient, salut_bonjour_discovery_client,
    G_TYPE_OBJECT,
    G_IMPLEMENT_INTERFACE (SALUT_TYPE_DISCOVERY_CLIENT,
      discovery_client_init));

/* signals */
enum
{
  STATE_CHANGED,
  LAST_SIGNAL
};

static guint signals[LAST_SIGNAL] = {0};

/* properties */
enum
{
  PROP_STATE = 1,
  PROP_DNSSD_NAME,
  LAST_PROPERTY
};

typedef struct _SalutBonjourDiscoveryClientPrivate \
          SalutBonjourDiscoveryClientPrivate;
struct _SalutBonjourDiscoveryClientPrivate
{
  SalutDiscoveryClientState state;

  gchar *dnssd_name;

  GHashTable *svc_ref_table;
  GHashTable *svc_source_table;

  gboolean dispose_has_run;
};

#define SALUT_BONJOUR_DISCOVERY_CLIENT_GET_PRIVATE(obj) \
    ((SalutBonjourDiscoveryClientPrivate *) \
      ((SalutBonjourDiscoveryClient *) obj)->priv)

static void _destroy_source_id (gpointer ptr);
static void _destroy_channel (gpointer ptr);
static void _destroy_service (gpointer ptr);

static void
salut_bonjour_discovery_client_init (SalutBonjourDiscoveryClient *self)
{
  SalutBonjourDiscoveryClientPrivate *priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
      SALUT_TYPE_BONJOUR_DISCOVERY_CLIENT, SalutBonjourDiscoveryClientPrivate);

  self->priv = priv;
  priv->dispose_has_run = FALSE;
  priv->svc_ref_table = g_hash_table_new_full (g_direct_hash,
      g_direct_equal, _destroy_service, _destroy_channel);

  priv->svc_source_table = g_hash_table_new_full (g_direct_hash,
      g_direct_equal, NULL, _destroy_source_id);

  priv->state = SALUT_DISCOVERY_CLIENT_STATE_DISCONNECTED;
}

static void
change_state (SalutBonjourDiscoveryClient *self,
              SalutDiscoveryClientState state)
{
  SalutBonjourDiscoveryClientPrivate *priv =
    SALUT_BONJOUR_DISCOVERY_CLIENT_GET_PRIVATE (self);

  if (priv->state == state)
    return;

  priv->state = state;
  g_signal_emit (G_OBJECT (self), signals[STATE_CHANGED], 0, state);
}

static void
salut_bonjour_discovery_client_dispose (GObject *object)
{
  SalutBonjourDiscoveryClient *self = SALUT_BONJOUR_DISCOVERY_CLIENT (object);
  SalutBonjourDiscoveryClientPrivate *priv =
    SALUT_BONJOUR_DISCOVERY_CLIENT_GET_PRIVATE (self);

  if (priv->dispose_has_run)
    return;

  g_hash_table_remove_all (priv->svc_source_table);
  g_hash_table_remove_all (priv->svc_ref_table);

  g_hash_table_unref (priv->svc_source_table);
  g_hash_table_unref (priv->svc_ref_table);

  priv->dispose_has_run = TRUE;

  tp_clear_pointer (&priv->dnssd_name, g_free);

  G_OBJECT_CLASS (salut_bonjour_discovery_client_parent_class)->dispose (object);
}

static void
salut_bonjour_discovery_client_get_property (GObject *object,
                                             guint property_id,
                                             GValue *value,
                                             GParamSpec *pspec)
{
  SalutBonjourDiscoveryClient *self = SALUT_BONJOUR_DISCOVERY_CLIENT (object);
  SalutBonjourDiscoveryClientPrivate *priv =
    SALUT_BONJOUR_DISCOVERY_CLIENT_GET_PRIVATE (self);

  switch (property_id)
    {
      case PROP_STATE:
        g_value_set_uint (value, priv->state);
        break;
      case PROP_DNSSD_NAME:
        g_value_set_string (value, priv->dnssd_name);
        break;
      default:
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
        break;
    }
}

static void
salut_bonjour_discovery_client_set_property (GObject *object,
                                             guint property_id,
                                             const GValue *value,
                                             GParamSpec *pspec)
{
  SalutBonjourDiscoveryClient *self = SALUT_BONJOUR_DISCOVERY_CLIENT (object);
  SalutBonjourDiscoveryClientPrivate *priv =
    SALUT_BONJOUR_DISCOVERY_CLIENT_GET_PRIVATE (self);

  switch (property_id)
    {
      case PROP_DNSSD_NAME:
        priv->dnssd_name = g_value_dup_string (value);
        break;
      default:
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
        break;
    }
}

static void
salut_bonjour_discovery_client_class_init (
    SalutBonjourDiscoveryClientClass *salut_bonjour_discovery_client_class)
{
  GObjectClass *object_class = G_OBJECT_CLASS (
      salut_bonjour_discovery_client_class);

  g_type_class_add_private (salut_bonjour_discovery_client_class,
      sizeof (SalutBonjourDiscoveryClientPrivate));

  object_class->dispose = salut_bonjour_discovery_client_dispose;

  object_class->get_property = salut_bonjour_discovery_client_get_property;
  object_class->set_property = salut_bonjour_discovery_client_set_property;

  g_object_class_override_property (object_class, PROP_STATE,
      "state");
  g_object_class_override_property (object_class, PROP_DNSSD_NAME,
      "dnssd-name");

  signals[STATE_CHANGED] =
    g_signal_new ("state-changed",
                  G_OBJECT_CLASS_TYPE (salut_bonjour_discovery_client_class),
                  G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
                  0,
                  NULL, NULL, NULL,
                  G_TYPE_NONE, 1, G_TYPE_UINT);
}

/*
 * salut_bonjour_discovery_client_start
 *
 * Implements salut_discovery_client_start on SalutDiscoveryClient
 */
static gboolean
salut_bonjour_discovery_client_start (SalutDiscoveryClient *client,
                                      GError **error)
{
  SalutBonjourDiscoveryClient *self = SALUT_BONJOUR_DISCOVERY_CLIENT (client);

  /*TODO: Ensure we connect to the daemon before signaling we are connected*/
  change_state (self, SALUT_DISCOVERY_CLIENT_STATE_CONNECTED);

  return TRUE;
}

/*
 * salut_bonjour_discovery_client_create_contact_manager
 *
 * Implements salut_discovery_client_create_contact_manager on
 * SalutDiscoveryClient
 */
static SalutContactManager *
salut_bonjour_discovery_client_create_contact_manager (
    SalutDiscoveryClient *client,
    SalutConnection *connection)
{
  SalutBonjourDiscoveryClient *self = SALUT_BONJOUR_DISCOVERY_CLIENT (client);
  return SALUT_CONTACT_MANAGER (
      salut_bonjour_contact_manager_new (connection, self));
}

/*
 * salut_bonjour_discovery_client_create_self
 *
 * Implements salut_discovery_client_create_self on SalutDiscoveryClient
 */
static SalutSelf *
salut_bonjour_discovery_client_create_self (SalutDiscoveryClient *client,
                                            SalutConnection *connection,
                                            const gchar *nickname,
                                            const gchar *first_name,
                                            const gchar *last_name,
                                            const gchar *jid,
                                            const gchar *email,
                                            const gchar *published_name,
                                            const GArray *olpc_key,
                                            const gchar *olpc_color)
{
  SalutBonjourDiscoveryClient *self = SALUT_BONJOUR_DISCOVERY_CLIENT (client);

  return SALUT_SELF (salut_bonjour_self_new (connection, self, nickname,
      first_name, last_name, jid, email, published_name, olpc_key, olpc_color));
}

static const gchar *
salut_bonjour_discovery_client_get_host_name_fqdn (SalutDiscoveryClient *clt)
{
  g_warning ("FQDN not supported by Bonjour discovery client");
  return NULL;
}

static gboolean
_bonjour_socket_process_cb (GIOChannel *source,
                            GIOCondition condition,
                            gpointer data)
{
  DNSServiceRef service_ref = data;
  DNSServiceErrorType error_type = kDNSServiceErr_NoError;

  error_type = DNSServiceProcessResult (service_ref);

  if (error_type != kDNSServiceErr_NoError)
    {
      g_warning ("Socket Processing Failed with : (%d)", error_type);
      return FALSE;
    }

  return TRUE;
}

static void
_destroy_service (gpointer service_ptr)
{
  DNSServiceRef service = service_ptr;

  DNSServiceRefDeallocate (service);
}

static void
_destroy_channel (gpointer channel_ptr)
{
  g_io_channel_unref (channel_ptr);
}

static void
_destroy_source_id (gpointer source_id)
{
  if (!g_source_remove (GPOINTER_TO_UINT (source_id)))
    {
      g_warning ("Error removing source");
    }
}

void
salut_bonjour_discovery_client_watch_svc_ref (SalutBonjourDiscoveryClient *self,
                                              DNSServiceRef service)
{
  SalutBonjourDiscoveryClientPrivate *priv =
    SALUT_BONJOUR_DISCOVERY_CLIENT_GET_PRIVATE (self);
  GIOChannel *channel = NULL;
  guint source_id;


  channel = g_io_channel_win32_new_socket (
      DNSServiceRefSockFD ((service)));

  source_id = g_io_add_watch (channel, G_IO_IN,
      _bonjour_socket_process_cb, service);

  g_hash_table_insert (priv->svc_ref_table, service, channel);
  g_hash_table_insert (priv->svc_source_table, channel,
      GUINT_TO_POINTER (source_id));
}

void
salut_bonjour_discovery_client_drop_svc_ref (SalutBonjourDiscoveryClient *self,
                                             DNSServiceRef service)
{
  SalutBonjourDiscoveryClientPrivate *priv =
    SALUT_BONJOUR_DISCOVERY_CLIENT_GET_PRIVATE (self);
  gpointer channel = NULL;

  if (!g_hash_table_lookup_extended (
      priv->svc_ref_table, service, NULL, &channel))
    return;

  if (!channel)
    return;

  g_hash_table_remove (priv->svc_source_table, channel);
  g_hash_table_remove (priv->svc_ref_table, service);
}

const gchar *
salut_bonjour_discovery_client_get_dnssd_name (SalutBonjourDiscoveryClient *clt)
{
  SalutBonjourDiscoveryClientPrivate *priv =
    SALUT_BONJOUR_DISCOVERY_CLIENT_GET_PRIVATE (clt);

  if (priv->dnssd_name != NULL)
    return priv->dnssd_name;
  else
    return SALUT_DNSSD_PRESENCE;
}

static void
discovery_client_init (gpointer g_iface,
                       gpointer iface_data)
{
  SalutDiscoveryClientClass *klass = (SalutDiscoveryClientClass *) g_iface;

  klass->start = salut_bonjour_discovery_client_start;
  klass->create_muc_manager = NULL;
  klass->create_roomlist_manager = NULL;
  klass->create_contact_manager =
    salut_bonjour_discovery_client_create_contact_manager;
  klass->create_self = salut_bonjour_discovery_client_create_self;
  klass->get_host_name_fqdn = salut_bonjour_discovery_client_get_host_name_fqdn;
}