summaryrefslogtreecommitdiff
path: root/telepathy-logger/log-entry-text.c
blob: 1cb249755428b6a984b1fe87071dea1e4e06ea01 (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
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Copyright (C) 2009 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
 *
 * Authors: Cosimo Alfarano <cosimo.alfarano@collabora.co.uk>
 */

#include "config.h"
#include "log-entry-text.h"

#include <glib-object.h>
#include <telepathy-glib/util.h>

#include <telepathy-logger/util.h>
#include <telepathy-logger/log-entry.h>

#define DEBUG_FLAG TPL_DEBUG_LOG_STORE
#include <telepathy-logger/debug.h>

G_DEFINE_TYPE (TplLogEntryText, tpl_log_entry_text, TPL_TYPE_LOG_ENTRY)

#define GET_PRIV(obj) TPL_GET_PRIV (obj, TplLogEntryText)
struct _TplLogEntryTextPriv
{
  TplChannelText *tpl_text;
  TpChannelTextMessageType message_type;
  gchar *message;
  gboolean chatroom;
};

enum
{
  PROP_MESSAGE_TYPE = 1,
  PROP_MESSAGE,
  PROP_TPL_CHANNEL_TEXT
};


static void
tpl_log_entry_text_dispose (GObject * obj)
{
  TplLogEntryText *self = TPL_LOG_ENTRY_TEXT (obj);
  TplLogEntryTextPriv *priv = GET_PRIV (self);

  tpl_object_unref_if_not_null (priv->tpl_text);
  priv->tpl_text = NULL;

  G_OBJECT_CLASS (tpl_log_entry_text_parent_class)->dispose (obj);
}


static void
tpl_log_entry_text_finalize (GObject * obj)
{
  TplLogEntryText *self = TPL_LOG_ENTRY_TEXT (obj);
  TplLogEntryTextPriv *priv = GET_PRIV (self);

  g_free (priv->message);
  priv->message = NULL;

  G_OBJECT_CLASS (tpl_log_entry_text_parent_class)->finalize (obj);
}


static void
tpl_log_entry_text_get_prop (GObject *object,
    guint param_id,
    GValue *value,
    GParamSpec *pspec)
{
  TplLogEntryTextPriv *priv = GET_PRIV (object);

  switch (param_id)
    {
      case PROP_MESSAGE_TYPE:
        g_value_set_uint (value, priv->message_type);
        break;
      case PROP_MESSAGE:
        g_value_set_string (value, priv->message);
        break;
      case PROP_TPL_CHANNEL_TEXT:
        g_value_set_object (value, priv->tpl_text);
        break;
      default:
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
        break;
    }
}


static void
tpl_log_entry_text_set_prop (GObject *object,
    guint param_id,
    const GValue *value,
    GParamSpec *pspec)
{
  TplLogEntryText *self = TPL_LOG_ENTRY_TEXT (object);

  switch (param_id) {
      case PROP_MESSAGE_TYPE:
        tpl_log_entry_text_set_message_type (self, g_value_get_uint (value));
        break;
      case PROP_MESSAGE:
        tpl_log_entry_text_set_message (self, g_value_get_string (value));
        break;
      case PROP_TPL_CHANNEL_TEXT:
        tpl_log_entry_text_set_tpl_channel_text (self,
            g_value_get_object (value));
        break;
      default:
        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
        break;
  }
}


static void tpl_log_entry_text_class_init (TplLogEntryTextClass *klass)
{
  GObjectClass *object_class = G_OBJECT_CLASS (klass);
  TplLogEntryClass *log_entry_class = TPL_LOG_ENTRY_CLASS (klass);
  GParamSpec *param_spec;

  object_class->finalize = tpl_log_entry_text_finalize;
  object_class->dispose = tpl_log_entry_text_dispose;
  object_class->get_property = tpl_log_entry_text_get_prop;
  object_class->set_property = tpl_log_entry_text_set_prop;
  log_entry_class->equal = tpl_log_entry_text_equal;

  param_spec = g_param_spec_uint ("message-type",
      "MessageType",
      "The message type for a Text log entry",
      0, G_MAXUINT32, TP_CHANNEL_TEXT_MESSAGE_TYPE_NORMAL, G_PARAM_READWRITE |
      G_PARAM_STATIC_STRINGS);
  g_object_class_install_property (object_class, PROP_MESSAGE_TYPE, param_spec);

  param_spec = g_param_spec_string ("message",
      "Message",
      "The text message of the log entry",
      NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
  g_object_class_install_property (object_class, PROP_MESSAGE, param_spec);

  param_spec = g_param_spec_object ("tpl-channel-text",
      "TplChannelText",
      "The TplChannelText instance associated with the log entry, if any",
      TPL_TYPE_CHANNEL_TEXT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
  g_object_class_install_property (object_class, PROP_TPL_CHANNEL_TEXT, param_spec);

  g_type_class_add_private (object_class, sizeof (TplLogEntryTextPriv));

}


static void
tpl_log_entry_text_init (TplLogEntryText * self)
{
  TplLogEntryTextPriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
      TPL_TYPE_LOG_ENTRY_TEXT, TplLogEntryTextPriv);
  self->priv = priv;
}


TplLogEntryText *
tpl_log_entry_text_new (guint log_id, const gchar *chat_id,
    TplLogEntryDirection direction)
{
  return g_object_new (TPL_TYPE_LOG_ENTRY_TEXT,
      "log-id", log_id,
      "chat-id", chat_id,
      "direction", direction,
      NULL);
}

static gchar *message_types[] = {
    "normal",
    "action",
    "notice",
    "auto-reply",
    "delivery-report",
    NULL };


/**
 * tpl_log_entry_text_message_type_to_str
 * @type_str: string to transform into a #TpChannelTextMessageType
 *
 * Maps strings into enum #TpChannelTextMessageType values.
 *
 * Returns: the relative value from enum #TpChannelTextMessageType if a
 * mapping is found, or defaults to %TP_CHANNEL_TEXT_MESSAGE_TYPE_NORMAL if not.
 */
TpChannelTextMessageType
tpl_log_entry_text_message_type_from_str (const gchar *type_str)
{
  guint i;
  for (i = 0; i < G_N_ELEMENTS (message_types); ++i)
    if (!tp_strdiff (type_str, message_types[i]))
      return (TpChannelTextMessageType) i;

  /* default case */
  return TP_CHANNEL_TEXT_MESSAGE_TYPE_NORMAL;
}


/**
 * tpl_log_entry_text_message_type_to_str
 * @msg_type: message type to transform into a string
 *
 * Maps enum #TpChannelTextMessageType values into strings
 *
 * Returns: a string representation for @msg_type or NULL if @msg_type is not
 * a legal value for %TpChannelTextMessageType.
 */
const gchar *
tpl_log_entry_text_message_type_to_str (TpChannelTextMessageType msg_type)
{
  g_return_val_if_fail (G_N_ELEMENTS (message_types) >= msg_type, NULL);

  return message_types[msg_type];
}


gboolean
tpl_log_entry_text_is_chatroom (TplLogEntryText * self)
{
  TplLogEntryTextPriv *priv;

  g_return_val_if_fail (TPL_IS_LOG_ENTRY_TEXT (self), FALSE);

  priv = GET_PRIV (self);
  return priv->chatroom;
}


TplChannelText *
tpl_log_entry_text_get_tpl_channel_text (TplLogEntryText * self)
{
  TplLogEntryTextPriv *priv;

  g_return_val_if_fail (TPL_IS_LOG_ENTRY_TEXT (self), NULL);

  priv = GET_PRIV (self);
  return priv->tpl_text;
}


const gchar *
tpl_log_entry_text_get_message (TplLogEntryText * self)
{
  TplLogEntryTextPriv *priv;

  g_return_val_if_fail (TPL_IS_LOG_ENTRY_TEXT (self), NULL);

  priv = GET_PRIV (self);
  return priv->message;
}


TpChannelTextMessageType
tpl_log_entry_text_get_message_type (TplLogEntryText * self)
{
  TplLogEntryTextPriv *priv;

  /* TODO is TYPE_NORMAL the right value to return in case of error? I doubt
   * :) */
  g_return_val_if_fail (TPL_IS_LOG_ENTRY_TEXT (self),
      TP_CHANNEL_TEXT_MESSAGE_TYPE_NORMAL);

  priv = GET_PRIV (self);
  return priv->message_type;
}


void
tpl_log_entry_text_set_tpl_channel_text (TplLogEntryText * self,
    TplChannelText *data)
{
  TplLogEntryTextPriv *priv;

  g_return_if_fail (TPL_IS_LOG_ENTRY_TEXT (self));
  g_return_if_fail (TPL_IS_CHANNEL_TEXT (data) || data == NULL);

  priv = GET_PRIV (self);
  tpl_object_unref_if_not_null (priv->tpl_text);
  priv->tpl_text = data;
  tpl_object_ref_if_not_null (data);
}


void
tpl_log_entry_text_set_message (TplLogEntryText *self, const gchar *data)
{
  TplLogEntryTextPriv *priv;

  g_return_if_fail (TPL_IS_LOG_ENTRY_TEXT (self));

  priv = GET_PRIV (self);

  g_free (priv->message);
  priv->message = g_strdup (data);
}


void
tpl_log_entry_text_set_message_type (TplLogEntryText *self,
    TpChannelTextMessageType data)
{
  TplLogEntryTextPriv *priv;

  g_return_if_fail (TPL_IS_LOG_ENTRY_TEXT (self));

  priv = GET_PRIV (self);

  priv->message_type = data;
}


void
tpl_log_entry_text_set_chatroom (TplLogEntryText *self,
    gboolean data)
{
  TplLogEntryTextPriv *priv;

  g_return_if_fail (TPL_IS_LOG_ENTRY_TEXT (self));

  priv = GET_PRIV (self);

  priv->chatroom = data;
}

/* Methods inherited by TplLogEntry */

time_t
tpl_log_entry_text_get_timestamp (TplLogEntryText *self)
{
  TplLogEntry *logentry = TPL_LOG_ENTRY (self);
  return TPL_LOG_ENTRY_GET_CLASS (self)->get_timestamp (logentry);
}


TplLogEntrySignalType
tpl_log_entry_text_get_signal_type (TplLogEntryText *self)
{
  TplLogEntry *logentry = TPL_LOG_ENTRY (self);
  return TPL_LOG_ENTRY_GET_CLASS (self)->get_signal_type (logentry);
}


guint
tpl_log_entry_text_get_log_id (TplLogEntryText *self)
{
  TplLogEntry *logentry = TPL_LOG_ENTRY (self);
  return TPL_LOG_ENTRY_GET_CLASS (self)->get_log_id (logentry);
}


const gchar *
tpl_log_entry_text_get_chat_id (TplLogEntryText *self)
{
  TplLogEntry *logentry = TPL_LOG_ENTRY (self);
  return TPL_LOG_ENTRY_GET_CLASS (self)->get_chat_id (logentry);
}


TplLogEntryDirection
tpl_log_entry_text_get_direction (TplLogEntryText *self)
{
  TplLogEntry *logentry = TPL_LOG_ENTRY (self);
  return TPL_LOG_ENTRY_GET_CLASS (self)->get_direction (logentry);
}


TplContact *
tpl_log_entry_text_get_sender (TplLogEntryText *self)
{
  TplLogEntry *logentry = TPL_LOG_ENTRY (self);
  return TPL_LOG_ENTRY_GET_CLASS (self)->get_sender (logentry);
}


TplContact *
tpl_log_entry_text_get_receiver (TplLogEntryText *self)
{
  TplLogEntry *logentry = TPL_LOG_ENTRY (self);
  return TPL_LOG_ENTRY_GET_CLASS (self)->get_receiver (logentry);
}


void
tpl_log_entry_text_set_timestamp (TplLogEntryText *self, time_t data)
{
  TplLogEntry *logentry = TPL_LOG_ENTRY (self);
  TPL_LOG_ENTRY_GET_CLASS (self)->set_timestamp (logentry, data);
}


void
tpl_log_entry_text_set_signal_type (TplLogEntryText *self,
  TplLogEntrySignalType data)
{
  TplLogEntry *logentry = TPL_LOG_ENTRY (self);
  TPL_LOG_ENTRY_GET_CLASS (self)->set_signal_type (logentry, data);
}

void
tpl_log_entry_text_set_direction (TplLogEntryText *self,
    TplLogEntryDirection data)
{
  TplLogEntry *logentry = TPL_LOG_ENTRY (self);
  TPL_LOG_ENTRY_GET_CLASS (self)->set_direction (logentry, data);
}


void
tpl_log_entry_text_set_chat_id (TplLogEntryText *self, const gchar *data)
{
  TplLogEntry *logentry = TPL_LOG_ENTRY (self);
  TPL_LOG_ENTRY_GET_CLASS (self)->set_chat_id (logentry, data);
}


void
tpl_log_entry_text_set_sender (TplLogEntryText *self, TplContact *data)
{
  TplLogEntry *logentry = TPL_LOG_ENTRY (self);
  TPL_LOG_ENTRY_GET_CLASS (self)->set_sender (logentry, data);
}


void
tpl_log_entry_text_set_receiver (TplLogEntryText *self, TplContact *data)
{
  TplLogEntry *logentry = TPL_LOG_ENTRY (self);
  TPL_LOG_ENTRY_GET_CLASS (self)->set_receiver (logentry, data);
}


gboolean
tpl_log_entry_text_equal (TplLogEntry *message1,
    TplLogEntry *message2)
{
  g_return_val_if_fail (TPL_IS_LOG_ENTRY_TEXT (message1), FALSE);
  g_return_val_if_fail (TPL_IS_LOG_ENTRY_TEXT (message2), FALSE);

  /*
  if (priv1->id == priv2->id && !tp_strdiff (priv1->body, priv2->body)) {
  if (priv1->type == priv2->type)
    if (!tp_strdiff (priv1->entry.text->message, priv2->entry.text->message)) {
    }
  */
  DEBUG ("TODO: do a tpl_log_entry_equal rewrite!");
  return tpl_log_entry_text_get_log_id (TPL_LOG_ENTRY_TEXT (message1)) ==
      tpl_log_entry_text_get_log_id ( TPL_LOG_ENTRY_TEXT (message2));
}