]> git.0d.be Git - empathy.git/blob - libempathy/empathy-tp-file.h
Merge branch 'ft_rework'
[empathy.git] / libempathy / empathy-tp-file.h
1 /*
2  * Copyright (C) 2007-2009 Collabora Ltd.
3  * Copyright (C) 2007 Marco Barisione <marco@barisione.org>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  * Authors: Marco Barisione <marco@barisione.org>
20  *          Jonny Lamb <jonny.lamb@collabora.co.uk>
21  *          Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
22  */
23
24 #ifndef __EMPATHY_TP_FILE_H__
25 #define __EMPATHY_TP_FILE_H__
26
27 #include <gio/gio.h>
28 #include <glib.h>
29
30 #include <telepathy-glib/channel.h>
31
32 G_BEGIN_DECLS
33
34 #define EMPATHY_TYPE_TP_FILE (empathy_tp_file_get_type ())
35 #define EMPATHY_TP_FILE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), \
36     EMPATHY_TYPE_TP_FILE, EmpathyTpFile))
37 #define EMPATHY_TP_FILE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), \
38     EMPATHY_TYPE_TP_FILE, EmpathyTpFileClass))
39 #define EMPATHY_IS_TP_FILE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), \
40     EMPATHY_TYPE_TP_FILE))
41 #define EMPATHY_IS_TP_FILE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), \
42     EMPATHY_TYPE_TP_FILE))
43 #define EMPATHY_TP_FILE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), \
44     EMPATHY_TYPE_TP_FILE, EmpathyTpFileClass))
45
46 #define EMPATHY_FT_ERROR_QUARK g_quark_from_static_string ("EmpathyFTError")
47
48 typedef enum {
49         EMPATHY_FT_ERROR_FAILED,
50         EMPATHY_FT_ERROR_HASH_MISMATCH,
51         EMPATHY_FT_ERROR_TP_ERROR,
52         EMPATHY_FT_ERROR_SOCKET,
53         EMPATHY_FT_ERROR_NOT_SUPPORTED
54 } EmpathyFTErrorEnum;
55
56 typedef struct _EmpathyTpFile EmpathyTpFile;
57 typedef struct _EmpathyTpFileClass EmpathyTpFileClass;
58
59 struct _EmpathyTpFile {
60   GObject  parent;
61   gpointer priv;
62 };
63
64 struct _EmpathyTpFileClass {
65   GObjectClass parent_class;
66 };
67
68 /* prototypes for operation callbacks */
69
70 /**
71  * EmpathyTpFileProgressCallback:
72  * @tp_file: the #EmpathyTpFile being transferred
73  * @current_bytes: the bytes currently transferred by the operation
74  * @user_data: user data passed to the callback
75  **/
76 typedef void (* EmpathyTpFileProgressCallback)
77     (EmpathyTpFile *tp_file,
78      guint64 current_bytes,
79      gpointer user_data);
80
81 /**
82  * EmpathyTpFileOperationCallback:
83  * @tp_file: the #EmpathyTpFile that has been transferred
84  * @error: a #GError if the operation didn't succeed, %NULL otherwise
85  * @user_data: user data passed to the callback
86  **/
87 typedef void (* EmpathyTpFileOperationCallback)
88     (EmpathyTpFile *tp_file,
89      const GError *error,
90      gpointer user_data);
91
92 GType empathy_tp_file_get_type (void) G_GNUC_CONST;
93
94 /* public methods */
95
96 EmpathyTpFile * empathy_tp_file_new (TpChannel *channel,
97     gboolean incoming);
98
99 void empathy_tp_file_accept (EmpathyTpFile *tp_file,
100     guint64 offset,
101     GFile *gfile,
102     GCancellable *cancellable,
103     EmpathyTpFileProgressCallback progress_callback,
104     gpointer progress_user_data,
105     EmpathyTpFileOperationCallback op_callback,
106     gpointer op_user_data);
107
108 void empathy_tp_file_offer (EmpathyTpFile *tp_file,
109     GFile *gfile,
110     GCancellable *cancellable,
111     EmpathyTpFileProgressCallback progress_callback,
112     gpointer progress_user_data,
113     EmpathyTpFileOperationCallback op_callback,
114     gpointer op_user_data);
115
116 void empathy_tp_file_cancel (EmpathyTpFile *tp_file);
117 void empathy_tp_file_close (EmpathyTpFile *tp_file);
118
119 gboolean empathy_tp_file_is_incoming (EmpathyTpFile *tp_file);
120
121 G_END_DECLS
122
123 #endif /* __EMPATHY_TP_FILE_H__ */