summaryrefslogtreecommitdiff
path: root/telepathy-logger/entry-internal.h
blob: e98af6ef3308ee1ea51dd85eb436901e4c5b6ec8 (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
/* -*- 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>
 */

#ifndef __TPL_ENTRY_INTERNAL_H__
#define __TPL_ENTRY_INTERNAL_H__

#include <telepathy-logger/entry.h>

G_BEGIN_DECLS

#define TPL_ENTRY_MSG_ID_IS_VALID(msg) (msg >= 0)

#define TPL_ENTRY_MSG_ID_UNKNOWN -2
#define TPL_ENTRY_MSG_ID_ACKNOWLEDGED -1

typedef enum
{
  TPL_ENTRY_SIGNAL_NONE = 0,

  TPL_ENTRY_CHANNEL_TEXT_SIGNAL_SENT,
  TPL_ENTRY_CHANNEL_TEXT_SIGNAL_RECEIVED,
  TPL_ENTRY_CHANNEL_TEXT_SIGNAL_SEND_ERROR,
  TPL_ENTRY_CHANNEL_TEXT_SIGNAL_LOST_MESSAGE,
  TPL_ENTRY_CHANNEL_TEXT_SIGNAL_CHAT_STATUS_CHANGED,

  TPL_ENTRY_CHANNEL_SIGNAL_CHANNEL_CLOSED

} TplEntrySignalType;

typedef enum
{
  TPL_ENTRY_ERROR,
  TPL_ENTRY_TEXT
} TplEntryType;


struct _TplEntry
{
  GObject parent;

  /* Private */
  TplEntryPriv *priv;
};

struct _TplEntryClass {
  GObjectClass parent_class;

  /* to be implemented only by subclasses */
  gboolean (*equal) (TplEntry *entry1, TplEntry *entry2);
};


void _tpl_entry_set_timestamp (TplEntry *self,
    gint64 data);

void _tpl_entry_set_signal_type (TplEntry *self,
    TplEntrySignalType data);

void _tpl_entry_set_direction (TplEntry *self,
    TplEntryDirection data);

void _tpl_entry_set_chat_id (TplEntry *self,
    const gchar *data);

void _tpl_entry_set_channel_path (TplEntry *self,
    const gchar *data);

void _tpl_entry_set_sender (TplEntry *self,
    TplEntity *data);

void _tpl_entry_set_receiver (TplEntry *self,
    TplEntity *data);

TplEntrySignalType _tpl_entry_get_signal_type (TplEntry *self);
const gchar * _tpl_entry_get_chat_id (TplEntry * self);
const gchar * _tpl_entry_get_channel_path (TplEntry *self);

TplEntryDirection _tpl_entry_get_direction (TplEntry *self);

gboolean _tpl_entry_equal (TplEntry *self,
    TplEntry *data);

const gchar * _tpl_entry_get_log_id (TplEntry *self);

G_END_DECLS
#endif // __TPL_ENTRY_INTERNAL_H__