ofono/src/manager.c

121 lines
3.1 KiB
C
Raw Permalink Normal View History

2009-05-06 04:13:14 +00:00
/*
*
* oFono - Open Source Telephony
*
2011-10-10 20:39:42 +00:00
* Copyright (C) 2008-2011 Intel Corporation. All rights reserved.
2009-05-06 04:13:14 +00:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string.h>
#include <glib.h>
#include <gdbus.h>
#include "ofono.h"
2010-09-09 19:03:43 +00:00
static void append_modem(struct ofono_modem *modem, void *userdata)
{
DBusMessageIter *array = userdata;
const char *path = ofono_modem_get_path(modem);
DBusMessageIter entry, dict;
if (ofono_modem_is_registered(modem) == FALSE)
return;
2010-09-09 19:03:43 +00:00
dbus_message_iter_open_container(array, DBUS_TYPE_STRUCT,
NULL, &entry);
dbus_message_iter_append_basic(&entry, DBUS_TYPE_OBJECT_PATH,
&path);
dbus_message_iter_open_container(&entry, DBUS_TYPE_ARRAY,
OFONO_PROPERTIES_ARRAY_SIGNATURE,
&dict);
__ofono_modem_append_properties(modem, &dict);
dbus_message_iter_close_container(&entry, &dict);
dbus_message_iter_close_container(array, &entry);
}
static DBusMessage *manager_get_modems(DBusConnection *conn,
DBusMessage *msg, void *data)
{
DBusMessage *reply;
DBusMessageIter iter;
DBusMessageIter array;
reply = dbus_message_new_method_return(msg);
if (reply == NULL)
return NULL;
dbus_message_iter_init_append(reply, &iter);
dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
DBUS_STRUCT_BEGIN_CHAR_AS_STRING
DBUS_TYPE_OBJECT_PATH_AS_STRING
DBUS_TYPE_ARRAY_AS_STRING
DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
DBUS_TYPE_STRING_AS_STRING
DBUS_TYPE_VARIANT_AS_STRING
DBUS_DICT_ENTRY_END_CHAR_AS_STRING
DBUS_STRUCT_END_CHAR_AS_STRING,
&array);
__ofono_modem_foreach(append_modem, &array);
dbus_message_iter_close_container(&iter, &array);
return reply;
}
static const GDBusMethodTable manager_methods[] = {
{ GDBUS_METHOD("GetModems",
NULL, GDBUS_ARGS({ "modems", "a(oa{sv})" }),
manager_get_modems) },
2009-05-06 04:13:14 +00:00
{ }
};
static const GDBusSignalTable manager_signals[] = {
{ GDBUS_SIGNAL("ModemAdded",
2012-07-04 13:14:24 +00:00
GDBUS_ARGS({ "path", "o" }, { "properties", "a{sv}" })) },
{ GDBUS_SIGNAL("ModemRemoved",
2012-07-04 13:14:24 +00:00
GDBUS_ARGS({ "path", "o" })) },
2009-05-06 04:13:14 +00:00
{ }
};
2011-01-12 10:52:04 +00:00
int __ofono_manager_init(void)
2009-05-06 04:13:14 +00:00
{
DBusConnection *conn = ofono_dbus_get_connection();
2009-05-06 04:13:14 +00:00
gboolean ret;
2009-07-29 20:46:47 +00:00
ret = g_dbus_register_interface(conn, OFONO_MANAGER_PATH,
OFONO_MANAGER_INTERFACE,
2009-05-06 04:13:14 +00:00
manager_methods, manager_signals,
NULL, NULL, NULL);
if (ret == FALSE)
return -1;
return 0;
}
2011-01-12 10:52:04 +00:00
void __ofono_manager_cleanup(void)
2009-05-06 04:13:14 +00:00
{
DBusConnection *conn = ofono_dbus_get_connection();
2009-05-06 04:13:14 +00:00
2009-07-29 20:46:47 +00:00
g_dbus_unregister_interface(conn, OFONO_MANAGER_PATH,
OFONO_MANAGER_INTERFACE);
2009-05-06 04:13:14 +00:00
}