From: Xavier Claessens <xclaesse@gmail.com>
To: ofono@ofono.org
Subject: Re: Add/Remove phonesim on the fly
Date: Thu, 17 Dec 2015 12:44:32 -0500 [thread overview]
Message-ID: <1450374272.16798.0.camel@gmail.com> (raw)
In-Reply-To: <1450373047.2408.1.camel@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 297 bytes --]
Sorry, I didn't properly fixed merge conflict. Here is updated patch.
Le jeudi 17 décembre 2015 à 12:24 -0500, Xavier Claessens a écrit :
> Ubuntu's ofono has a useful DBus interface to add/remove modems.
> Would
> make sense to upstream that patch.
>
> Regards,
> Xavier Claessens.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Added-dbus-control-channel-to-phonesim-plugin.patch --]
[-- Type: text/x-patch, Size: 6356 bytes --]
From 924a3d383f2e6a03ddf34c44ebc7847535fbf0fb Mon Sep 17 00:00:00 2001
From: Jussi Pakkanen <jussi.pakkanen@canonical.com>
Date: Tue, 8 Apr 2014 10:57:41 +0300
Subject: [PATCH] Added dbus control channel to phonesim plugin.
---
doc/phonesim-control-api.txt | 34 ++++++++++
plugins/phonesim.c | 144 +++++++++++++++++++++++++++++++++++++++----
2 files changed, 165 insertions(+), 13 deletions(-)
create mode 100644 doc/phonesim-control-api.txt
diff --git a/doc/phonesim-control-api.txt b/doc/phonesim-control-api.txt
new file mode 100644
index 0000000..39d7036
--- /dev/null
+++ b/doc/phonesim-control-api.txt
@@ -0,0 +1,34 @@
+Phonesim control hierarchy
+
+==========================
+
+Service org.ofono
+Interface org.ofono.phonesim.Manager
+Object path /
+
+Methods Add(string name, string address, string port)
+
+ Instantiates a new modem in phonesim with the given
+ specifications.
+
+ RemoveAll()
+
+ Removes all modems from phonesim.
+
+ Reset()
+
+ Removes all modems and instantiates all those modems listed
+ in the configuration file. Equivalent to stopping and
+ restarting the daemon.
+
+Examples
+
+To add a new phonesim modem on the fly do the following:
+
+- Start new phonesim instance
+ * ./phonesim -p 12346 your_very_own.xml
+- Call the [interface].Add("myname", "127.0.0.1", "12346")
+ * dbus-send --system --print-reply --dest=org.ofono / \
+ org.ofono.phonesim.Manager.Add string:myname string:127.0.0.1 string:12346
+ * dbus-send --system --print-reply --dest=org.ofono \
+ /myname org.ofono.Modem.SetProperty string:Powered variant:boolean:true
diff --git a/plugins/phonesim.c b/plugins/phonesim.c
index 16bccd5..016f86f 100644
--- a/plugins/phonesim.c
+++ b/plugins/phonesim.c
@@ -35,6 +35,7 @@
#include <glib.h>
#include <gatmux.h>
#include <gatchat.h>
+#include <gdbus.h>
#define OFONO_API_SUBJECT_TO_CHANGE
#include <ofono/plugin.h>
@@ -73,6 +74,8 @@ static const char *none_prefix[] = { NULL };
static const char *ptty_prefix[] = { "+PTTY:", NULL };
static const char *simstate_prefix[] = { "+SIMSTATE:", NULL };
static int next_iface = 0;
+static const char CONTROL_PATH[] = "/";
+static const char CONTROL_INTERFACE[] = "org.ofono.phonesim.Manager";
struct phonesim_data {
GAtMux *mux;
@@ -1098,12 +1101,19 @@ error:
static GSList *modem_list = NULL;
-static void parse_config(const char *filename)
+static void parse_config(void)
{
GKeyFile *keyfile;
GError *err = NULL;
char **modems;
int i;
+ const char *filename;
+
+ char *conf_override = getenv("OFONO_PHONESIM_CONFIG");
+ if (conf_override)
+ filename = conf_override;
+ else
+ filename = CONFIGDIR "/phonesim.conf";
DBG("filename %s", filename);
@@ -1137,10 +1147,122 @@ done:
g_key_file_free(keyfile);
}
+static void release_modems(void)
+{
+ GSList *list;
+
+ for (list = modem_list; list; list = list->next) {
+ struct ofono_modem *modem = list->data;
+
+ ofono_modem_remove(modem);
+ }
+
+ g_slist_free(modem_list);
+ modem_list = NULL;
+}
+
+static DBusMessage *control_add(DBusConnection *conn,
+ DBusMessage *msg, void *data)
+{
+ const char *driver = "phonesim";
+ struct ofono_modem *modem;
+ DBusMessageIter iter;
+ char *name;
+ char *address;
+ char *port;
+
+ 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, &name);
+ dbus_message_iter_next(&iter);
+
+ if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
+ return __ofono_error_invalid_args(msg);
+
+ dbus_message_iter_get_basic(&iter, &address);
+ dbus_message_iter_next(&iter);
+
+ if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
+ return __ofono_error_invalid_args(msg);
+
+ dbus_message_iter_get_basic(&iter, &port);
+
+ modem = ofono_modem_create(name, driver);
+ if (modem == NULL)
+ return NULL;
+
+ ofono_modem_set_string(modem, "Address", address);
+ ofono_modem_set_integer(modem, "Port", atoi(port));
+ if (ofono_modem_register(modem) != 0) {
+ ofono_modem_remove(modem);
+ return __ofono_error_invalid_args(msg);
+ }
+ modem_list = g_slist_prepend(modem_list, modem);
+
+ return dbus_message_new_method_return(msg);
+}
+
+static DBusMessage *control_remove_all(DBusConnection *conn,
+ DBusMessage *msg, void *data)
+{
+ release_modems();
+
+ return dbus_message_new_method_return(msg);
+}
+
+static DBusMessage *control_reset(DBusConnection *conn,
+ DBusMessage *msg, void *data)
+{
+ release_modems();
+ parse_config();
+
+ return dbus_message_new_method_return(msg);
+}
+
+static const GDBusMethodTable control_methods[] = {
+ { GDBUS_METHOD("Add",
+ GDBUS_ARGS({ "name", "s" }, {"address", "s"}, {"port", "s"}),
+ NULL,
+ control_add) },
+ { GDBUS_METHOD("RemoveAll",
+ GDBUS_ARGS({ }),
+ NULL,
+ control_remove_all) },
+ { GDBUS_METHOD("Reset",
+ GDBUS_ARGS({ }),
+ NULL,
+ control_reset) },
+ {}
+};
+
+static int setup_control_channel(void)
+{
+ int err = 0;
+ DBusConnection *conn = ofono_dbus_get_connection();
+ void *user_data = NULL;
+ g_dbus_register_interface(conn,
+ CONTROL_PATH, CONTROL_INTERFACE,
+ control_methods,
+ NULL,
+ NULL,
+ user_data,
+ NULL);
+ return err;
+}
+
+static void shutdown_control_channel(void)
+{
+ g_dbus_unregister_interface(ofono_dbus_get_connection(),
+ CONTROL_PATH, CONTROL_INTERFACE);
+}
+
static int phonesim_init(void)
{
int err;
- char *conf_override = getenv("OFONO_PHONESIM_CONFIG");
err = ofono_modem_driver_register(&phonesim_driver);
if (err < 0)
@@ -1152,25 +1274,21 @@ static int phonesim_init(void)
ofono_ctm_driver_register(&ctm_driver);
ofono_radio_settings_driver_register(&radio_settings_driver);
- if (conf_override)
- parse_config(conf_override);
- else
- parse_config(CONFIGDIR "/phonesim.conf");
+ parse_config();
+
+ err = setup_control_channel();
+ if (err < 0)
+ return err;
return 0;
}
static void phonesim_exit(void)
{
- GSList *list;
-
- for (list = modem_list; list; list = list->next) {
- struct ofono_modem *modem = list->data;
+ shutdown_control_channel();
- ofono_modem_remove(modem);
- }
+ release_modems();
- g_slist_free(modem_list);
modem_list = NULL;
ofono_radio_settings_driver_unregister(&radio_settings_driver);
--
2.5.0
prev parent reply other threads:[~2015-12-17 17:44 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-17 17:24 Add/Remove phonesim on the fly Xavier Claessens
2015-12-17 17:42 ` Xavier Claessens
2015-12-17 17:44 ` Xavier Claessens [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1450374272.16798.0.camel@gmail.com \
--to=xclaesse@gmail.com \
--cc=ofono@ofono.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.