summaryrefslogtreecommitdiff
path: root/telepathy-logger/log-manager-internal.h
blob: 56650deb3bfb84c043c28b9a47fca85c867133a1 (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
/*
 * Copyright (C) 2003-2007 Imendio AB
 * Copyright (C) 2007-2011 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: Xavier Claessens <xclaesse@gmail.com>
 */

#ifndef __TPL_LOG_MANAGER_PRIV_H__
#define __TPL_LOG_MANAGER_PRIV_H__

#include <telepathy-logger/log-manager.h>
#include <telepathy-logger/log-store-factory-internal.h>
#include <telepathy-logger/log-store-internal.h>

#define TPL_TYPE_LOG_SEARCH_HIT (_tpl_log_manager_search_hit_get_type ())

gboolean _tpl_log_manager_add_event (TplLogManager *manager,
    TplEvent *event,
    GError **error);

gboolean _tpl_log_manager_register_log_store (TplLogManager *self,
    TplLogStore *logstore);

GList * _tpl_log_manager_get_dates (TplLogManager *manager,
    TpAccount *account,
    TplEntity *target,
    gint type_mask);

GList * _tpl_log_manager_get_events_for_date (TplLogManager *manager,
    TpAccount *account,
    TplEntity *target,
    gint type_mask,
    const GDate *date);

GList * _tpl_log_manager_get_filtered_events (TplLogManager *manager,
    TpAccount *account,
    TplEntity *target,
    gint type_mask,
    guint num_events,
    TplLogEventFilter filter,
    gpointer user_data);

GList * _tpl_log_manager_get_entities (TplLogManager *manager,
    TpAccount *account);

GList * _tpl_log_manager_search (TplLogManager *manager,
    const gchar *text,
    gint type_mask);

void _tpl_log_manager_clear (TplLogManager *self);

void _tpl_log_manager_clear_account (TplLogManager *self, TpAccount *account);

void _tpl_log_manager_clear_entity (TplLogManager *self, TpAccount *account,
    TplEntity *entity);

GType _tpl_log_manager_search_hit_get_type (void);

TplLogSearchHit * _tpl_log_manager_search_hit_new (TpAccount *account,
    TplEntity *target,
    GDate *date);

void _tpl_log_manager_search_hit_free (TplLogSearchHit *hit);

TplLogSearchHit * _tpl_log_manager_search_hit_copy (TplLogSearchHit *hit);

#endif /* __TPL_LOG_MANAGER_PRIV_H__ */