Tizen 2.0 release
[framework/connectivity/obexd.git] / client / transfer.h
1 /*
2  *
3  *  OBEX Client
4  *
5  *  Copyright (C) 2007-2010  Marcel Holtmann <marcel@holtmann.org>
6  *
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23
24 struct obc_transfer;
25
26 typedef void (*transfer_callback_t) (struct obc_transfer *transfer,
27                                         gint64 transferred, GError *err,
28                                         void *user_data);
29
30 struct obc_transfer *obc_transfer_get(const char *type, const char *name,
31                                         const char *filename, GError **err);
32 struct obc_transfer *obc_transfer_put(const char *type, const char *name,
33                                         const char *filename,
34                                         const void *contents, size_t size,
35                                         GError **err);
36
37 gboolean obc_transfer_register(struct obc_transfer *transfer,
38                                         DBusConnection *conn,
39                                         const char *agent,
40                                         GError **err);
41
42 void obc_transfer_unregister(struct obc_transfer *transfer);
43
44 gboolean obc_transfer_set_callback(struct obc_transfer *transfer,
45                                         transfer_callback_t func,
46                                         void *user_data);
47
48 gboolean obc_transfer_start(struct obc_transfer *transfer, void *obex,
49                                                                 GError **err);
50 guint8 obc_transfer_get_operation(struct obc_transfer *transfer);
51
52 void obc_transfer_set_params(struct obc_transfer *transfer,
53                                                 const void *data, size_t size);
54 const void *obc_transfer_get_params(struct obc_transfer *transfer,
55                                                                 size_t *size);
56 int obc_transfer_get_contents(struct obc_transfer *transfer, char **contents,
57                                                                 size_t *size);
58
59 void obc_transfer_set_name(struct obc_transfer *transfer, const char *name);
60 int obc_transfer_set_filename(struct obc_transfer *transfer,
61                                         const char *filename);
62 const char *obc_transfer_get_path(struct obc_transfer *transfer);
63 gint64 obc_transfer_get_size(struct obc_transfer *transfer);