summaryrefslogtreecommitdiff
path: root/src/lib/obex_agent.h
blob: 981dc46e88f332577c5e92d9a228fa328adc4695 (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
82
83
84
85
86
87
88
89
90
91
92
/*
 *
 *  bluez-tools - a set of tools to manage bluetooth devices for linux
 *
 *  Copyright (C) 2010  Alexander Orlenko <zxteam@gmail.com>
 *
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program 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 General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#ifndef __OBEX_AGENT_H
#define __OBEX_AGENT_H

#ifdef	__cplusplus
extern "C" {
#endif

#include <glib-object.h>

#define OBEX_AGENT_DBUS_SERVICE "org.blueztools"
#define OBEX_AGENT_DBUS_INTERFACE "org.bluez.obex.Agent1"
#define OBEX_AGENT_DBUS_PATH "/org/blueztools/obex"

/*
 * Type macros
 */
#define OBEX_AGENT_TYPE				(obex_agent_get_type())
#define OBEX_AGENT(obj)				(G_TYPE_CHECK_INSTANCE_CAST((obj), OBEX_AGENT_TYPE, ObexAgent))
#define OBEX_AGENT_IS(obj)				(G_TYPE_CHECK_INSTANCE_TYPE((obj), OBEX_AGENT_TYPE))
#define OBEX_AGENT_CLASS(klass)		(G_TYPE_CHECK_CLASS_CAST((klass), OBEX_AGENT_TYPE, ObexAgentClass))
#define OBEX_AGENT_IS_CLASS(klass)		(G_TYPE_CHECK_CLASS_TYPE((klass), OBEX_AGENT_TYPE))
#define OBEX_AGENT_GET_CLASS(obj)		(G_TYPE_INSTANCE_GET_CLASS((obj), OBEX_AGENT_TYPE, ObexAgentClass))

typedef struct _ObexAgent ObexAgent;
typedef struct _ObexAgentClass ObexAgentClass;
typedef struct _ObexAgentPrivate ObexAgentPrivate;

struct _ObexAgent {
	GObject parent_instance;

	/*< private >*/
	ObexAgentPrivate *priv;
};

struct _ObexAgentClass {
	GObjectClass parent_class;
};

/* used by OBEX_AGENT_TYPE */
GType obex_agent_get_type(void) G_GNUC_CONST;

// agent released callback pointer function
typedef void (*ObexAgentReleasedCallback)(ObexAgent *obex_agent, gpointer user_data);

// agent approved callback pointer function
typedef void (*ObexAgentApprovedCallback)(ObexAgent *obex_agent, const gchar* obex_transfer_path, const gchar *name, const guint64 size, gpointer user_data);

/*
 * Constructor
 */
ObexAgent *obex_agent_new(const gchar *root_folder);

/*
 * Method definitions
 */
void obex_agent_progress(ObexAgent *self, const gchar *transfer, guint64 transferred, GError **error);

void obex_agent_set_release_callback(ObexAgent *self, ObexAgentReleasedCallback callback_function, gpointer user_data);
void obex_agent_clear_release_callback(ObexAgent *self);

void obex_agent_set_approved_callback(ObexAgent *self, ObexAgentApprovedCallback callback_function, gpointer user_data);
void obex_agent_clear_approved_callback(ObexAgent *self);

#ifdef	__cplusplus
}
#endif

#endif /* __OBEX_AGENT_H */