aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/gossip-presence.c
blob: e41ae5548da077b52f7c6be204bc593f5abfa38c (plain) (blame)
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Copyright (C) 2004-2007 Imendio AB
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Authors: Mikael Hallendal <micke@imendio.com>
 */

#include "config.h"

#include <string.h>

#include <glib/gi18n.h>

#include "gossip-presence.h"
#include "gossip-time.h"

#define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GOSSIP_TYPE_PRESENCE, GossipPresencePriv))

typedef struct _GossipPresencePriv GossipPresencePriv;

struct _GossipPresencePriv {
    GossipPresenceState  state;

    gchar               *status;
    gchar               *resource;

    gint                 priority;
    GossipTime           timestamp;
};

static void         presence_finalize           (GObject             *object);
static void         presence_get_property       (GObject             *object,
                         guint                param_id,
                         GValue              *value,
                         GParamSpec          *pspec);
static void         presence_set_property       (GObject             *object,
                         guint                param_id,
                         const GValue        *value,
                         GParamSpec          *pspec);

enum {
    PROP_0,
    PROP_STATE,
    PROP_STATUS,
    PROP_RESOURCE,
    PROP_PRIORITY
};

G_DEFINE_TYPE (GossipPresence, gossip_presence, G_TYPE_OBJECT);

static void
gossip_presence_class_init (GossipPresenceClass *class)
{
    GObjectClass *object_class;

    object_class = G_OBJECT_CLASS (class);

    object_class->finalize     = presence_finalize;
    object_class->get_property = presence_get_property;
    object_class->set_property = presence_set_property;

    g_object_class_install_property (object_class,
                     PROP_STATE,
                     g_param_spec_int ("state",
                               "Presence State",
                               "The current state of the presence",
                               GOSSIP_PRESENCE_STATE_AVAILABLE,
                               GOSSIP_PRESENCE_STATE_EXT_AWAY,
                               GOSSIP_PRESENCE_STATE_AVAILABLE,
                               G_PARAM_READWRITE));
    g_object_class_install_property (object_class,
                     PROP_STATUS,
                     g_param_spec_string ("status",
                                  "Presence Status",
                                  "Status string set on presence",
                                  NULL,
                                  G_PARAM_READWRITE));
    g_object_class_install_property (object_class,
                     PROP_RESOURCE,
                     g_param_spec_string ("resource",
                                  "Presence Resource",
                                  "Resource that this presence is for",
                                  NULL,
                                  G_PARAM_READWRITE));
    g_object_class_install_property (object_class,
                     PROP_PRIORITY,
                     g_param_spec_int ("priority",
                               "Presence Priority",
                               "Priority value of presence",
                               G_MININT,
                               G_MAXINT,
                               0,
                               G_PARAM_READWRITE));

    g_type_class_add_private (object_class, sizeof (GossipPresencePriv));
}

static void
gossip_presence_init (GossipPresence *presence)
{
    GossipPresencePriv *priv;

    priv = GET_PRIV (presence);

    priv->state = GOSSIP_PRESENCE_STATE_AVAILABLE;

    priv->status = NULL;
    priv->resource = NULL;

    priv->priority = 0;

    priv->timestamp = gossip_time_get_current ();
}

static void
presence_finalize (GObject *object)
{
    GossipPresencePriv *priv;

    priv = GET_PRIV (object);

    g_free (priv->status);
    g_free (priv->resource);

    (G_OBJECT_CLASS (gossip_presence_parent_class)->finalize) (object);
}

static void
presence_get_property (GObject    *object,
               guint       param_id,
               GValue     *value,
               GParamSpec *pspec)
{
    GossipPresencePriv *priv;

    priv = GET_PRIV (object);

    switch (param_id) {
    case PROP_STATE:
        g_value_set_int (value, priv->state);
        break;
    case PROP_STATUS:
        g_value_set_string (value,
                    gossip_presence_get_status (GOSSIP_PRESENCE (object)));
        break;
    case PROP_RESOURCE:
        g_value_set_string (value,
                    gossip_presence_get_resource (GOSSIP_PRESENCE (object)));
        break;
    case PROP_PRIORITY:
        g_value_set_int (value, priv->priority);
        break;
    default:
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
        break;
    }
}
static void
presence_set_property (GObject      *object,
               guint         param_id,
               const GValue *value,
               GParamSpec   *pspec)
{
    GossipPresencePriv *priv;

    priv = GET_PRIV (object);

    switch (param_id) {
    case PROP_STATE:
        priv->state = g_value_get_int (value);
        break;
    case PROP_STATUS:
        gossip_presence_set_status (GOSSIP_PRESENCE (object),
                        g_value_get_string (value));
        break;
    case PROP_RESOURCE:
        gossip_presence_set_resource (GOSSIP_PRESENCE (object),
                          g_value_get_string (value));
        break;
    case PROP_PRIORITY:
        priv->priority = g_value_get_int (value);
        break;
    default:
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
        break;
    }
}

GossipPresence *
gossip_presence_new (void)
{
    return g_object_new (GOSSIP_TYPE_PRESENCE, NULL);
}

GossipPresence *
gossip_presence_new_full (GossipPresenceState  state,
              const gchar         *status)
{
    return g_object_new (GOSSIP_TYPE_PRESENCE,
                 "state", state,
                 "status", status,
                 NULL);
}

const gchar *
gossip_presence_get_resource (GossipPresence *presence)
{
    GossipPresencePriv *priv;

    g_return_val_if_fail (GOSSIP_IS_PRESENCE (presence), NULL);

    priv = GET_PRIV (presence);

    if (priv->resource) {
        return priv->resource;
    }

    return NULL;
}

const gchar *
gossip_presence_get_status (GossipPresence *presence)
{
    GossipPresencePriv *priv;

    g_return_val_if_fail (GOSSIP_IS_PRESENCE (presence),
                  _("Offline"));

    priv = GET_PRIV (presence);

    return priv->status;
}

gint
gossip_presence_get_priority (GossipPresence *presence)
{
    GossipPresencePriv *priv;

    priv = GET_PRIV (presence);
    g_return_val_if_fail (GOSSIP_IS_PRESENCE (presence), 0);

    return priv->priority;
}

void
gossip_presence_set_resource (GossipPresence *presence,
                  const gchar    *resource)
{
    GossipPresencePriv *priv;

    g_return_if_fail (GOSSIP_IS_PRESENCE (presence));
    g_return_if_fail (resource != NULL);

    priv = GET_PRIV (presence);

    g_free (priv->resource);
    priv->resource = g_strdup (resource);

    g_object_notify (G_OBJECT (presence), "resource");
}

GossipPresenceState
gossip_presence_get_state (GossipPresence *presence)
{
    GossipPresencePriv *priv;

    g_return_val_if_fail (GOSSIP_IS_PRESENCE (presence),
                  GOSSIP_PRESENCE_STATE_AVAILABLE);

    priv = GET_PRIV (presence);

    return priv->state;
}

void
gossip_presence_set_state (GossipPresence      *presence,
               GossipPresenceState  state)
{
    GossipPresencePriv *priv;

    g_return_if_fail (GOSSIP_IS_PRESENCE (presence));

    priv = GET_PRIV (presence);

    priv->state = state;

    g_object_notify (G_OBJECT (presence), "state");
}

void
gossip_presence_set_status (GossipPresence *presence,
                const gchar    *status)
{
    GossipPresencePriv *priv;

    priv = GET_PRIV (presence);
    g_return_if_fail (GOSSIP_IS_PRESENCE (presence));

    g_free (priv->status);

    if (status) {
        priv->status = g_strdup (status);
    } else {
        priv->status = NULL;
    }

    g_object_notify (G_OBJECT (presence), "status");
}

void
gossip_presence_set_priority (GossipPresence *presence,
                  gint            priority)
{
    GossipPresencePriv *priv;

    g_return_if_fail (GOSSIP_IS_PRESENCE (presence));

    priv = GET_PRIV (presence);

    priv->priority = priority;

    g_object_notify (G_OBJECT (presence), "priority");
}

gboolean
gossip_presence_resource_equal (gconstpointer a,
                gconstpointer b)
{
    GossipPresencePriv *priv1;
    GossipPresencePriv *priv2;

    g_return_val_if_fail (GOSSIP_IS_PRESENCE (a), FALSE);
    g_return_val_if_fail (GOSSIP_IS_PRESENCE (b), FALSE);

    priv1 = GET_PRIV (a);
    priv2 = GET_PRIV (b);

    if (!priv1->resource) {
        if (!priv2->resource) {
            return TRUE;
        }

        return FALSE;
    }

    if (!priv2->resource) {
        return FALSE;
    }

    if (strcmp (priv1->resource, priv2->resource) == 0) {
        return TRUE;
    }

    return FALSE;
}

gint
gossip_presence_sort_func (gconstpointer a,
               gconstpointer b)
{
    GossipPresencePriv *priv_a;
    GossipPresencePriv *priv_b;
    gint                diff;

    g_return_val_if_fail (GOSSIP_IS_PRESENCE (a), 0);
    g_return_val_if_fail (GOSSIP_IS_PRESENCE (b), 0);

    /* We sort here by priority AND status, in theory, the
     * priority would be enough for JUST Jabber contacts which
     * actually abide to the protocol, but for other protocols and
     * dodgy clients, we will sort by:
     *   
     *    1. State
     *    2. Priority
     *    3. Time it was set (most recent first).
     */
     
    priv_a = GET_PRIV (a);
    priv_b = GET_PRIV (b);

    /* 1. State */
    diff = priv_a->state - priv_b->state;
    if (diff != 0) {
        return diff < 1 ? -1 : +1;
    }

    /* 2. Priority */
    diff = priv_a->priority - priv_b->priority;
    if (diff != 0) {
        return diff < 1 ? -1 : +1;
    }

    /* 3. Time (newest first) */
    diff = priv_b->timestamp - priv_a->timestamp;
    if (diff != 0) {
        return diff < 1 ? -1 : +1;
    }
        
    /* No real difference, except maybe resource */
    return 0;
}

const gchar *
gossip_presence_state_get_default_status (GossipPresenceState state)
{
    switch (state) {
    case GOSSIP_PRESENCE_STATE_AVAILABLE:
        return _("Available");
        break;

    case GOSSIP_PRESENCE_STATE_BUSY:
        return _("Busy");
        break;

    case GOSSIP_PRESENCE_STATE_AWAY:
    case GOSSIP_PRESENCE_STATE_EXT_AWAY:
        return _("Away");
        break;

    case GOSSIP_PRESENCE_STATE_HIDDEN:
    case GOSSIP_PRESENCE_STATE_UNAVAILABLE:
        return _("Unavailable");
    }

    return _("Available");
}