]> git.0d.be Git - empathy.git/blob - libempathy/empathy-utils.h
W.I.P. for hash on receiver side.
[empathy.git] / libempathy / empathy-utils.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2003-2007 Imendio AB
4  * Copyright (C) 2007-2008 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA  02110-1301  USA
20  *
21  * Authors: Richard Hult <richard@imendio.com>
22  *          Martyn Russell <martyn@imendio.com>
23  *          Xavier Claessens <xclaesse@gmail.com>
24  */
25
26 #ifndef __EMPATHY_UTILS_H__
27 #define __EMPATHY_UTILS_H__
28
29 #include <glib.h>
30 #include <glib-object.h>
31
32 #include <libxml/parser.h>
33 #include <libxml/tree.h>
34
35 #include <libmissioncontrol/mc-account.h>
36 #include <libmissioncontrol/mission-control.h>
37
38 #include "empathy-contact.h"
39
40 #define EMPATHY_GET_PRIV(obj,type) ((type##Priv *) ((type *) obj)->priv)
41 #define EMP_STR_EMPTY(x) ((x) == NULL || (x)[0] == '\0')
42
43 #define EMPATHY_FT_ERROR_QUARK g_quark_from_static_string ("EmpathyFTError")
44
45 G_BEGIN_DECLS
46
47 typedef enum {
48         EMPATHY_FT_ERROR_FAILED,
49         EMPATHY_FT_ERROR_HASH_MISMATCH,
50         EMPATHY_FT_ERROR_TP_ERROR,
51         EMPATHY_FT_ERROR_SOCKET,
52         EMPATHY_FT_ERROR_NOT_SUPPORTED
53 } EmpathyFTErrorEnum;
54
55 void         empathy_init                           (void);
56 /* Strings */
57 gchar *      empathy_substring                      (const gchar     *str,
58                                                     gint             start,
59                                                     gint             end);
60 gint         empathy_strcasecmp                     (const gchar     *s1,
61                                                     const gchar     *s2);
62 gint         empathy_strncasecmp                    (const gchar     *s1,
63                                                     const gchar     *s2,
64                                                     gsize            n);
65
66 /* XML */
67 gboolean     empathy_xml_validate                   (xmlDoc          *doc,
68                                                     const gchar     *dtd_filename);
69 xmlNodePtr   empathy_xml_node_get_child             (xmlNodePtr       node,
70                                                     const gchar     *child_name);
71 xmlChar *    empathy_xml_node_get_child_content     (xmlNodePtr       node,
72                                                     const gchar     *child_name);
73 xmlNodePtr   empathy_xml_node_find_child_prop_value (xmlNodePtr       node,
74                                                     const gchar     *prop_name,
75                                                     const gchar     *prop_value);
76
77 /* Others */
78 guint        empathy_account_hash                   (gconstpointer    key);
79 gboolean     empathy_account_equal                  (gconstpointer    a,
80                                                     gconstpointer    b);
81 MissionControl *empathy_mission_control_dup_singleton (void);
82 const gchar * empathy_presence_get_default_message  (TpConnectionPresenceType presence);
83 const gchar * empathy_presence_to_str               (TpConnectionPresenceType presence);
84 TpConnectionPresenceType empathy_presence_from_str  (const gchar     *str);
85 gchar *       empathy_file_lookup                   (const gchar     *filename,
86                                                      const gchar     *subdir);
87 gboolean     empathy_proxy_equal                    (gconstpointer    a,
88                                                      gconstpointer    b);
89 guint        empathy_proxy_hash                     (gconstpointer    key);
90 gboolean     empathy_check_available_state          (void);
91
92 G_END_DECLS
93
94 #endif /*  __EMPATHY_UTILS_H__ */