aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2013-03-30 12:43:25 +0100
committerAleksander Morgado <aleksander@lanedo.com>2013-04-02 09:53:46 +0200
commitbb4f4f4e9e91d79974d1bb4ce3d42c5b0bbc734d (patch)
tree58a8a2ef3077b1da27a432095e0e71e24b130be7
parenta066cc84cfb699056774c31d7025b83a26fc910c (diff)
pantech: fully skip the SIM storage in the messaging interface
Seems that trying to use the SIM storage hangs a UMW190 modem, so just fully ignore it for now. https://bugzilla.gnome.org/show_bug.cgi?id=696724
-rw-r--r--plugins/pantech/mm-broadband-modem-pantech.c61
1 files changed, 60 insertions, 1 deletions
diff --git a/plugins/pantech/mm-broadband-modem-pantech.c b/plugins/pantech/mm-broadband-modem-pantech.c
index 22b50083..12b3d550 100644
--- a/plugins/pantech/mm-broadband-modem-pantech.c
+++ b/plugins/pantech/mm-broadband-modem-pantech.c
@@ -23,15 +23,65 @@
#include "ModemManager.h"
#include "mm-iface-modem.h"
+#include "mm-iface-modem-messaging.h"
#include "mm-log.h"
#include "mm-errors-types.h"
#include "mm-broadband-modem-pantech.h"
#include "mm-sim-pantech.h"
static void iface_modem_init (MMIfaceModem *iface);
+static void iface_modem_messaging_init (MMIfaceModemMessaging *iface);
+
+static MMIfaceModemMessaging *iface_modem_messaging_parent;
G_DEFINE_TYPE_EXTENDED (MMBroadbandModemPantech, mm_broadband_modem_pantech, MM_TYPE_BROADBAND_MODEM, 0,
- G_IMPLEMENT_INTERFACE (MM_TYPE_IFACE_MODEM, iface_modem_init))
+ G_IMPLEMENT_INTERFACE (MM_TYPE_IFACE_MODEM, iface_modem_init)
+ G_IMPLEMENT_INTERFACE (MM_TYPE_IFACE_MODEM_MESSAGING, iface_modem_messaging_init))
+
+/*****************************************************************************/
+/* Load supported SMS storages (Messaging interface) */
+
+static void
+skip_sm_sr_storage (GArray *mem)
+{
+ guint i = mem->len;
+
+ if (!mem)
+ return;
+
+ /* Remove SM and SR from the list of supported storages */
+ while (i-- > 0) {
+ if (g_array_index (mem, MMSmsStorage, i) == MM_SMS_STORAGE_SR ||
+ g_array_index (mem, MMSmsStorage, i) == MM_SMS_STORAGE_SM)
+ g_array_remove_index (mem, i);
+ }
+}
+
+static gboolean
+load_supported_storages_finish (MMIfaceModemMessaging *self,
+ GAsyncResult *res,
+ GArray **mem1,
+ GArray **mem2,
+ GArray **mem3,
+ GError **error)
+{
+ if (!iface_modem_messaging_parent->load_supported_storages_finish (self, res, mem1, mem2, mem3, error))
+ return FALSE;
+
+ skip_sm_sr_storage (*mem1);
+ skip_sm_sr_storage (*mem2);
+ skip_sm_sr_storage (*mem3);
+ return TRUE;
+}
+
+static void
+load_supported_storages (MMIfaceModemMessaging *self,
+ GAsyncReadyCallback callback,
+ gpointer user_data)
+{
+ /* Chain up parent's loading */
+ iface_modem_messaging_parent->load_supported_storages (self, callback, user_data);
+}
/*****************************************************************************/
/* Create SIM (Modem interface) */
@@ -126,6 +176,15 @@ iface_modem_init (MMIfaceModem *iface)
}
static void
+iface_modem_messaging_init (MMIfaceModemMessaging *iface)
+{
+ iface_modem_messaging_parent = g_type_interface_peek_parent (iface);
+
+ iface->load_supported_storages = load_supported_storages;
+ iface->load_supported_storages_finish = load_supported_storages_finish;
+}
+
+static void
mm_broadband_modem_pantech_class_init (MMBroadbandModemPantechClass *klass)
{
}