summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAki Niemi <aki.niemi@nokia.com>2010-02-03 21:55:55 +0200
committerAki Niemi <aki.niemi@nokia.com>2010-02-04 23:43:18 +0200
commit8d4004d1828eb69d606216711830b3d01f7e3015 (patch)
tree044c40a9734c9ef8932136cb957a3bbd4d84cd0a
parent7bab47f07b2fd1a2c176e5dab4f21a51271cf2eb (diff)
downloadofono-8d4004d1828eb69d606216711830b3d01f7e3015.tar.bz2
Add radio settings atom and driver API
This interface exposes a read-write property for radio access technology selection mode.
-rw-r--r--Makefile.am6
-rw-r--r--doc/radio-settings-api.txt43
-rw-r--r--include/radio-settings.h78
-rw-r--r--src/ofono.h2
-rw-r--r--src/radio-settings.c376
5 files changed, 503 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 33339df1..672ce0b2 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -11,7 +11,8 @@ include_HEADERS = include/log.h include/plugin.h include/history.h \
include/sms.h include/sim.h include/message-waiting.h \
include/netreg.h include/voicecall.h include/devinfo.h \
include/cbs.h include/call-volume.h \
- include/gprs.h include/gprs-context.h
+ include/gprs.h include/gprs-context.h \
+ include/radio-settings.h
nodist_include_HEADERS = include/version.h
@@ -224,7 +225,8 @@ src_ofonod_SOURCES = $(gdbus_sources) $(builtin_sources) \
src/phonebook.c src/history.c src/message-waiting.c \
src/simutil.h src/simutil.c src/storage.h \
src/storage.c src/cbs.c src/watch.c src/call-volume.c \
- src/gprs.c src/idmap.h src/idmap.c
+ src/gprs.c src/idmap.h src/idmap.c \
+ src/radio-settings.c
src_ofonod_LDADD = $(builtin_libadd) @GLIB_LIBS@ @DBUS_LIBS@ -ldl
diff --git a/doc/radio-settings-api.txt b/doc/radio-settings-api.txt
new file mode 100644
index 00000000..cd64ad64
--- /dev/null
+++ b/doc/radio-settings-api.txt
@@ -0,0 +1,43 @@
+Radio settings hierarchy
+========================
+
+Service org.ofono
+Interface org.ofono.RadioSettings
+Object path [variable prefix]/{modem0,modem1,...}
+
+Methods dict GetProperties()
+
+ Returns all radio access properties. See the
+ properties section for available properties.
+
+ Possible Errors: [service].Error.InvalidArguments
+
+ void SetProperty(string name, variant value)
+
+ Changes the value of the specified property. Only
+ properties that are listed as read-write are
+ changeable. On success a PropertyChanged signal
+ will be emitted.
+
+ Possible Errors: [service].Error.InvalidArguments
+ [service].Error.DoesNotExist
+ [service].Error.InProgress
+
+Signals PropertyChanged(string property, variant value)
+
+ This signal indicates a changed value of the given
+ property.
+
+Properties string TechnologyPreference [read-write]
+
+ The current radio access selection mode, also known
+ as network preference.
+
+ The possible values are:
+ "any" Radio access technology
+ selection is done automatically,
+ based on reception and
+ availability.
+ "2g" Only GSM used for radio access.
+ "3g" Only UMTS used for radio access.
+ "4g" Only LTE used for radio acccess.
diff --git a/include/radio-settings.h b/include/radio-settings.h
new file mode 100644
index 00000000..2575f9bb
--- /dev/null
+++ b/include/radio-settings.h
@@ -0,0 +1,78 @@
+/*
+ *
+ * oFono - Open Source Telephony
+ *
+ * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+ *
+ * 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
+ *
+ */
+
+#ifndef __OFONO_RADIO_SETTINGS_H
+#define __OFONO_RADIO_SETTINGS_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <ofono/types.h>
+
+enum ofono_radio_access_mode {
+ OFONO_RADIO_ACCESS_MODE_ANY = 0,
+ OFONO_RADIO_ACCESS_MODE_2G = 1,
+ OFONO_RADIO_ACCESS_MODE_3G = 2,
+ OFONO_RADIO_ACCESS_MODE_4G = 3,
+};
+
+struct ofono_radio_settings;
+
+typedef void (*ofono_radio_settings_rat_mode_set_cb_t)(const struct ofono_error *error,
+ void *data);
+typedef void (*ofono_radio_settings_rat_mode_query_cb_t)(const struct ofono_error *error,
+ enum ofono_radio_access_mode mode,
+ void *data);
+
+struct ofono_radio_settings_driver {
+ const char *name;
+ int (*probe)(struct ofono_radio_settings *rs, unsigned int vendor,
+ void *data);
+ void (*remove)(struct ofono_radio_settings *rs);
+ void (*query_rat_mode)(struct ofono_radio_settings *rs,
+ ofono_radio_settings_rat_mode_query_cb_t cb,
+ void *data);
+ void (*set_rat_mode)(struct ofono_radio_settings *rs,
+ enum ofono_radio_access_mode mode,
+ ofono_radio_settings_rat_mode_set_cb_t cb,
+ void *data);
+};
+
+int ofono_radio_settings_driver_register(const struct ofono_radio_settings_driver *d);
+void ofono_radio_settings_driver_unregister(const struct ofono_radio_settings_driver *d);
+
+struct ofono_radio_settings *ofono_radio_settings_create(struct ofono_modem *modem,
+ unsigned int vendor,
+ const char *driver,
+ void *data);
+
+void ofono_radio_settings_register(struct ofono_radio_settings *rs);
+void ofono_radio_settings_remove(struct ofono_radio_settings *rs);
+
+void ofono_radio_settings_set_data(struct ofono_radio_settings *rs, void *data);
+void *ofono_radio_settings_get_data(struct ofono_radio_settings *rs);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __OFONO_RADIO_SETTINGS_H */
diff --git a/src/ofono.h b/src/ofono.h
index 379f413d..ff67728a 100644
--- a/src/ofono.h
+++ b/src/ofono.h
@@ -113,6 +113,7 @@ enum ofono_atom_type {
OFONO_ATOM_TYPES_CALL_VOLUME = 15,
OFONO_ATOM_TYPE_GPRS = 16,
OFONO_ATOM_TYPE_GPRS_CONTEXT = 17,
+ OFONO_ATOM_TYPE_RADIO_SETTINGS = 18,
};
enum ofono_atom_watch_condition {
@@ -168,6 +169,7 @@ void __ofono_atom_free(struct ofono_atom *atom);
#include <ofono/voicecall.h>
#include <ofono/gprs.h>
#include <ofono/gprs-context.h>
+#include <ofono/radio-settings.h>
#include <ofono/sim.h>
diff --git a/src/radio-settings.c b/src/radio-settings.c
new file mode 100644
index 00000000..68fa2a49
--- /dev/null
+++ b/src/radio-settings.c
@@ -0,0 +1,376 @@
+/*
+ *
+ * oFono - Open Source Telephony
+ *
+ * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+ *
+ * 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 <stdio.h>
+#include <errno.h>
+
+#include <glib.h>
+#include <gdbus.h>
+
+#include "ofono.h"
+#include "common.h"
+
+#define RADIO_SETTINGS_INTERFACE "org.ofono.RadioSettings"
+
+#define RADIO_SETTINGS_MODE_CACHED 0x1
+
+static GSList *g_drivers = NULL;
+
+struct ofono_radio_settings {
+ DBusMessage *pending;
+ int flags;
+ int mode;
+ int pending_mode;
+ const struct ofono_radio_settings_driver *driver;
+ void *driver_data;
+ struct ofono_atom *atom;
+};
+
+static const char *radio_access_mode_to_string(enum ofono_radio_access_mode mode)
+{
+ switch (mode) {
+ case OFONO_RADIO_ACCESS_MODE_ANY:
+ return "any";
+ case OFONO_RADIO_ACCESS_MODE_2G:
+ return "2g";
+ case OFONO_RADIO_ACCESS_MODE_3G:
+ return "3g";
+ case OFONO_RADIO_ACCESS_MODE_4G:
+ return "4g";
+ default:
+ return "";
+ }
+}
+
+static int string_to_radio_access_mode(const char *mode)
+
+{
+ if (g_strcmp0(mode, "any") == 0)
+ return OFONO_RADIO_ACCESS_MODE_ANY;
+ if (g_strcmp0(mode, "2g") == 0)
+ return OFONO_RADIO_ACCESS_MODE_2G;
+ if (g_strcmp0(mode, "3g") == 0)
+ return OFONO_RADIO_ACCESS_MODE_3G;
+ if (g_strcmp0(mode, "4g") == 0)
+ return OFONO_RADIO_ACCESS_MODE_4G;
+ return -1;
+}
+
+static DBusMessage *radio_get_properties_reply(DBusMessage *msg,
+ struct ofono_radio_settings *rs)
+{
+ DBusMessage *reply;
+ DBusMessageIter iter;
+ DBusMessageIter dict;
+
+ const char *mode = radio_access_mode_to_string(rs->mode);
+
+ reply = dbus_message_new_method_return(msg);
+ if (!reply)
+ return NULL;
+
+ dbus_message_iter_init_append(reply, &iter);
+
+ dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
+ OFONO_PROPERTIES_ARRAY_SIGNATURE,
+ &dict);
+
+ ofono_dbus_dict_append(&dict, "TechnologyPreference", DBUS_TYPE_STRING,
+ &mode);
+
+ dbus_message_iter_close_container(&iter, &dict);
+
+ return reply;
+}
+
+static void radio_set_rat_mode(struct ofono_radio_settings *rs,
+ enum ofono_radio_access_mode mode)
+{
+ DBusConnection *conn = ofono_dbus_get_connection();
+ const char *path;
+ const char *str_mode;
+
+ if (rs->mode == (int)mode)
+ return;
+
+ rs->mode = mode;
+ rs->flags |= RADIO_SETTINGS_MODE_CACHED;
+
+ path = __ofono_atom_get_path(rs->atom);
+ str_mode = radio_access_mode_to_string(rs->mode);
+
+ ofono_dbus_signal_property_changed(conn, path,
+ RADIO_SETTINGS_INTERFACE,
+ "TechnologyPreference", DBUS_TYPE_STRING,
+ &str_mode);
+}
+
+static void radio_mode_set_callback(const struct ofono_error *error, void *data)
+{
+ struct ofono_radio_settings *rs = data;
+ DBusMessage *reply;
+
+ if (error->type != OFONO_ERROR_TYPE_NO_ERROR) {
+ ofono_debug("Error setting radio access mode");
+ rs->pending_mode = rs->mode;
+ reply = __ofono_error_failed(rs->pending);
+ __ofono_dbus_pending_reply(&rs->pending, reply);
+ return;
+ }
+
+ reply = dbus_message_new_method_return(rs->pending);
+ __ofono_dbus_pending_reply(&rs->pending, reply);
+
+ radio_set_rat_mode(rs, rs->pending_mode);
+}
+
+static void radio_rat_mode_query_callback(const struct ofono_error *error,
+ enum ofono_radio_access_mode mode,
+ void *data)
+{
+ struct ofono_radio_settings *rs = data;
+ DBusMessage *reply;
+
+ if (error->type != OFONO_ERROR_TYPE_NO_ERROR) {
+ ofono_debug("Error during radio access mode query");
+ reply = __ofono_error_failed(rs->pending);
+ __ofono_dbus_pending_reply(&rs->pending, reply);
+ return;
+ }
+
+ radio_set_rat_mode(rs, mode);
+
+ reply = radio_get_properties_reply(rs->pending, rs);
+ __ofono_dbus_pending_reply(&rs->pending, reply);
+}
+
+static DBusMessage *radio_get_properties(DBusConnection *conn, DBusMessage *msg,
+ void *data)
+{
+ struct ofono_radio_settings *rs = data;
+
+ if (rs->flags & RADIO_SETTINGS_MODE_CACHED)
+ return radio_get_properties_reply(msg, rs);
+
+ if (!rs->driver->query_rat_mode)
+ return __ofono_error_not_implemented(msg);
+
+ if (rs->pending)
+ return __ofono_error_busy(msg);
+
+ rs->pending = dbus_message_ref(msg);
+ rs->driver->query_rat_mode(rs, radio_rat_mode_query_callback, rs);
+
+ return NULL;
+}
+
+static DBusMessage *radio_set_property(DBusConnection *conn, DBusMessage *msg,
+ void *data)
+{
+ struct ofono_radio_settings *rs = data;
+ DBusMessageIter iter;
+ DBusMessageIter var;
+ const char *property;
+
+ if (rs->pending)
+ return __ofono_error_busy(msg);
+
+ if (!dbus_message_iter_init(msg, &iter))
+ return __ofono_error_invalid_args(msg);
+
+ if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
+ return __ofono_error_invalid_args(msg);
+
+ dbus_message_iter_get_basic(&iter, &property);
+ dbus_message_iter_next(&iter);
+
+ if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT)
+ return __ofono_error_invalid_args(msg);
+
+ dbus_message_iter_recurse(&iter, &var);
+
+ if (g_strcmp0(property, "TechnologyPreference") == 0) {
+ const char *value;
+ int mode = -1;
+
+ if (!rs->driver->set_rat_mode)
+ return __ofono_error_not_implemented(msg);
+
+ if (dbus_message_iter_get_arg_type(&var) != DBUS_TYPE_STRING)
+ return __ofono_error_invalid_args(msg);
+
+ dbus_message_iter_get_basic(&var, &value);
+ mode = string_to_radio_access_mode(value);
+
+ if (mode == -1)
+ return __ofono_error_invalid_args(msg);
+
+ if (rs->mode == mode)
+ return dbus_message_new_method_return(msg);
+
+ rs->pending = dbus_message_ref(msg);
+ rs->pending_mode = mode;
+
+ rs->driver->set_rat_mode(rs, mode, radio_mode_set_callback, rs);
+
+ return NULL;
+ }
+
+ return __ofono_error_invalid_args(msg);
+}
+
+static GDBusMethodTable radio_methods[] = {
+ { "GetProperties", "", "a{sv}", radio_get_properties,
+ G_DBUS_METHOD_FLAG_ASYNC },
+ { "SetProperty", "sv", "", radio_set_property,
+ G_DBUS_METHOD_FLAG_ASYNC },
+ { }
+};
+
+static GDBusSignalTable radio_signals[] = {
+ { "PropertyChanged", "sv" },
+ { }
+};
+
+int ofono_radio_settings_driver_register(const struct ofono_radio_settings_driver *d)
+{
+ DBG("driver: %p, name: %s", d, d->name);
+
+ if (!d || !d->probe)
+ return -EINVAL;
+
+ g_drivers = g_slist_prepend(g_drivers, (void *)d);
+
+ return 0;
+}
+
+void ofono_radio_settings_driver_unregister(const struct ofono_radio_settings_driver *d)
+{
+ DBG("driver: %p, name: %s", d, d->name);
+
+ if (!d)
+ return;
+
+ g_drivers = g_slist_remove(g_drivers, (void *)d);
+}
+
+static void radio_settings_unregister(struct ofono_atom *atom)
+{
+ struct ofono_radio_settings *rs = __ofono_atom_get_data(atom);
+ const char *path = __ofono_atom_get_path(rs->atom);
+ DBusConnection *conn = ofono_dbus_get_connection();
+ struct ofono_modem *modem = __ofono_atom_get_modem(rs->atom);
+
+ ofono_modem_remove_interface(modem, RADIO_SETTINGS_INTERFACE);
+ g_dbus_unregister_interface(conn, path, RADIO_SETTINGS_INTERFACE);
+}
+
+static void radio_settings_remove(struct ofono_atom *atom)
+{
+ struct ofono_radio_settings *rs = __ofono_atom_get_data(atom);
+
+ DBG("atom: %p", atom);
+
+ if (!rs)
+ return;
+
+ if (rs->driver && rs->driver->remove)
+ rs->driver->remove(rs);
+
+ g_free(rs);
+}
+
+struct ofono_radio_settings *ofono_radio_settings_create(struct ofono_modem *modem,
+ unsigned int vendor,
+ const char *driver,
+ void *data)
+{
+ struct ofono_radio_settings *rs;
+ GSList *l;
+
+ if (!driver)
+ return NULL;
+
+ rs = g_try_new0(struct ofono_radio_settings, 1);
+ if (!rs)
+ return NULL;
+
+ rs->mode = -1;
+
+ rs->atom = __ofono_modem_add_atom(modem, OFONO_ATOM_TYPE_RADIO_SETTINGS,
+ radio_settings_remove, rs);
+
+ for (l = g_drivers; l; l = l->next) {
+ const struct ofono_radio_settings_driver *drv = l->data;
+
+ if (g_strcmp0(drv->name, driver) != 0)
+ continue;
+
+ if (drv->probe(rs, vendor, data) < 0)
+ continue;
+
+ rs->driver = drv;
+ break;
+ }
+
+ return rs;
+}
+
+void ofono_radio_settings_register(struct ofono_radio_settings *rs)
+{
+ DBusConnection *conn = ofono_dbus_get_connection();
+ struct ofono_modem *modem = __ofono_atom_get_modem(rs->atom);
+ const char *path = __ofono_atom_get_path(rs->atom);
+
+ if (!g_dbus_register_interface(conn, path,
+ RADIO_SETTINGS_INTERFACE,
+ radio_methods, radio_signals,
+ NULL, rs, NULL)) {
+ ofono_error("Could not create %s interface",
+ RADIO_SETTINGS_INTERFACE);
+
+ return;
+ }
+
+ ofono_modem_add_interface(modem, RADIO_SETTINGS_INTERFACE);
+ __ofono_atom_register(rs->atom, radio_settings_unregister);
+}
+
+void ofono_radio_settings_remove(struct ofono_radio_settings *rs)
+{
+ __ofono_atom_free(rs->atom);
+}
+
+void ofono_radio_settings_set_data(struct ofono_radio_settings *rs,
+ void *data)
+{
+ rs->driver_data = data;
+}
+
+void *ofono_radio_settings_get_data(struct ofono_radio_settings *rs)
+{
+ return rs->driver_data;
+}