upload tizen1.0 source
[profile/ivi/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_params {
25         guint8 *data;
26         size_t size;
27 };
28
29 struct obc_transfer;
30
31 typedef void (*transfer_callback_t) (struct obc_transfer *transfer,
32                                         gint64 transferred, GError *err,
33                                         void *user_data);
34
35 struct obc_transfer *obc_transfer_register(DBusConnection *conn,
36                                                 const char *filename,
37                                                 const char *name,
38                                                 const char *type,
39                                                 struct obc_transfer_params *params,
40                                                 void *user_data);
41
42 void obc_transfer_unregister(struct obc_transfer *transfer);
43
44 int obc_transfer_get(struct obc_transfer *transfer, transfer_callback_t func,
45                         void *user_data);
46 int obc_transfer_put(struct obc_transfer *transfer, transfer_callback_t func,
47                         void *user_data);
48
49 int obc_transfer_get_params(struct obc_transfer *transfer,
50                                         struct obc_transfer_params *params);
51 const char *obc_transfer_get_buffer(struct obc_transfer *transfer, int *size);
52 void obc_transfer_set_buffer(struct obc_transfer *transfer, char *buffer);
53 void obc_transfer_clear_buffer(struct obc_transfer *transfer);
54
55 void obc_transfer_set_name(struct obc_transfer *transfer, const char *name);
56 const char *obc_transfer_get_path(struct obc_transfer *transfer);
57 gint64 obc_transfer_get_size(struct obc_transfer *transfer);
58 int obc_transfer_set_file(struct obc_transfer *transfer);