summaryrefslogtreecommitdiff
path: root/src/lib/obex_agent.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/obex_agent.h')
-rw-r--r--src/lib/obex_agent.h92
1 files changed, 92 insertions, 0 deletions
diff --git a/src/lib/obex_agent.h b/src/lib/obex_agent.h
new file mode 100644
index 0000000..981dc46
--- /dev/null
+++ b/src/lib/obex_agent.h
@@ -0,0 +1,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 */
+