iface-modem-voice: port mm_iface_modem_voice_disable to use GTask

This commit is contained in:
Ben Chan
2017-06-28 21:44:04 -07:00
committed by Aleksander Morgado
parent 121d43fcc6
commit d34cb65828

View File

@@ -514,7 +514,7 @@ call_deleted (MMCallList *list,
/*****************************************************************************/ /*****************************************************************************/
typedef struct _DisablingContext DisablingContext; typedef struct _DisablingContext DisablingContext;
static void interface_disabling_step (DisablingContext *ctx); static void interface_disabling_step (GTask *task);
typedef enum { typedef enum {
DISABLING_STEP_FIRST, DISABLING_STEP_FIRST,
@@ -524,18 +524,13 @@ typedef enum {
} DisablingStep; } DisablingStep;
struct _DisablingContext { struct _DisablingContext {
MMIfaceModemVoice *self;
DisablingStep step; DisablingStep step;
GSimpleAsyncResult *result;
MmGdbusModemVoice *skeleton; MmGdbusModemVoice *skeleton;
}; };
static void static void
disabling_context_complete_and_free (DisablingContext *ctx) disabling_context_free (DisablingContext *ctx)
{ {
g_simple_async_result_complete_in_idle (ctx->result);
g_object_unref (ctx->self);
g_object_unref (ctx->result);
if (ctx->skeleton) if (ctx->skeleton)
g_object_unref (ctx->skeleton); g_object_unref (ctx->skeleton);
g_free (ctx); g_free (ctx);
@@ -546,50 +541,60 @@ mm_iface_modem_voice_disable_finish (MMIfaceModemVoice *self,
GAsyncResult *res, GAsyncResult *res,
GError **error) GError **error)
{ {
return !g_simple_async_result_propagate_error (G_SIMPLE_ASYNC_RESULT (res), error); return g_task_propagate_boolean (G_TASK (res), error);
} }
static void static void
disable_unsolicited_events_ready (MMIfaceModemVoice *self, disable_unsolicited_events_ready (MMIfaceModemVoice *self,
GAsyncResult *res, GAsyncResult *res,
DisablingContext *ctx) GTask *task)
{ {
DisablingContext *ctx;
GError *error = NULL; GError *error = NULL;
MM_IFACE_MODEM_VOICE_GET_INTERFACE (self)->disable_unsolicited_events_finish (self, res, &error); MM_IFACE_MODEM_VOICE_GET_INTERFACE (self)->disable_unsolicited_events_finish (self, res, &error);
if (error) { if (error) {
g_simple_async_result_take_error (ctx->result, error); g_task_return_error (task, error);
disabling_context_complete_and_free (ctx); g_object_unref (task);
return; return;
} }
/* Go on to next step */ /* Go on to next step */
ctx = g_task_get_task_data (task);
ctx->step++; ctx->step++;
interface_disabling_step (ctx); interface_disabling_step (task);
} }
static void static void
cleanup_unsolicited_events_ready (MMIfaceModemVoice *self, cleanup_unsolicited_events_ready (MMIfaceModemVoice *self,
GAsyncResult *res, GAsyncResult *res,
DisablingContext *ctx) GTask *task)
{ {
DisablingContext *ctx;
GError *error = NULL; GError *error = NULL;
MM_IFACE_MODEM_VOICE_GET_INTERFACE (self)->cleanup_unsolicited_events_finish (self, res, &error); MM_IFACE_MODEM_VOICE_GET_INTERFACE (self)->cleanup_unsolicited_events_finish (self, res, &error);
if (error) { if (error) {
g_simple_async_result_take_error (ctx->result, error); g_task_return_error (task, error);
disabling_context_complete_and_free (ctx); g_object_unref (task);
return; return;
} }
/* Go on to next step */ /* Go on to next step */
ctx = g_task_get_task_data (task);
ctx->step++; ctx->step++;
interface_disabling_step (ctx); interface_disabling_step (task);
} }
static void static void
interface_disabling_step (DisablingContext *ctx) interface_disabling_step (GTask *task)
{ {
MMIfaceModemVoice *self;
DisablingContext *ctx;
self = g_task_get_source_object (task);
ctx = g_task_get_task_data (task);
switch (ctx->step) { switch (ctx->step) {
case DISABLING_STEP_FIRST: case DISABLING_STEP_FIRST:
/* Fall down to next step */ /* Fall down to next step */
@@ -597,12 +602,12 @@ interface_disabling_step (DisablingContext *ctx)
case DISABLING_STEP_DISABLE_UNSOLICITED_EVENTS: case DISABLING_STEP_DISABLE_UNSOLICITED_EVENTS:
/* Allow cleaning up unsolicited events */ /* Allow cleaning up unsolicited events */
if (MM_IFACE_MODEM_VOICE_GET_INTERFACE (ctx->self)->disable_unsolicited_events && if (MM_IFACE_MODEM_VOICE_GET_INTERFACE (self)->disable_unsolicited_events &&
MM_IFACE_MODEM_VOICE_GET_INTERFACE (ctx->self)->disable_unsolicited_events_finish) { MM_IFACE_MODEM_VOICE_GET_INTERFACE (self)->disable_unsolicited_events_finish) {
MM_IFACE_MODEM_VOICE_GET_INTERFACE (ctx->self)->disable_unsolicited_events ( MM_IFACE_MODEM_VOICE_GET_INTERFACE (self)->disable_unsolicited_events (
ctx->self, self,
(GAsyncReadyCallback)disable_unsolicited_events_ready, (GAsyncReadyCallback)disable_unsolicited_events_ready,
ctx); task);
return; return;
} }
/* Fall down to next step */ /* Fall down to next step */
@@ -610,12 +615,12 @@ interface_disabling_step (DisablingContext *ctx)
case DISABLING_STEP_CLEANUP_UNSOLICITED_EVENTS: case DISABLING_STEP_CLEANUP_UNSOLICITED_EVENTS:
/* Allow cleaning up unsolicited events */ /* Allow cleaning up unsolicited events */
if (MM_IFACE_MODEM_VOICE_GET_INTERFACE (ctx->self)->cleanup_unsolicited_events && if (MM_IFACE_MODEM_VOICE_GET_INTERFACE (self)->cleanup_unsolicited_events &&
MM_IFACE_MODEM_VOICE_GET_INTERFACE (ctx->self)->cleanup_unsolicited_events_finish) { MM_IFACE_MODEM_VOICE_GET_INTERFACE (self)->cleanup_unsolicited_events_finish) {
MM_IFACE_MODEM_VOICE_GET_INTERFACE (ctx->self)->cleanup_unsolicited_events ( MM_IFACE_MODEM_VOICE_GET_INTERFACE (self)->cleanup_unsolicited_events (
ctx->self, self,
(GAsyncReadyCallback)cleanup_unsolicited_events_ready, (GAsyncReadyCallback)cleanup_unsolicited_events_ready,
ctx); task);
return; return;
} }
/* Fall down to next step */ /* Fall down to next step */
@@ -623,13 +628,13 @@ interface_disabling_step (DisablingContext *ctx)
case DISABLING_STEP_LAST: case DISABLING_STEP_LAST:
/* Clear CALL list */ /* Clear CALL list */
g_object_set (ctx->self, g_object_set (self,
MM_IFACE_MODEM_VOICE_CALL_LIST, NULL, MM_IFACE_MODEM_VOICE_CALL_LIST, NULL,
NULL); NULL);
/* We are done without errors! */ /* We are done without errors! */
g_simple_async_result_set_op_res_gboolean (ctx->result, TRUE); g_task_return_boolean (task, TRUE);
disabling_context_complete_and_free (ctx); g_object_unref (task);
return; return;
} }
@@ -642,27 +647,27 @@ mm_iface_modem_voice_disable (MMIfaceModemVoice *self,
gpointer user_data) gpointer user_data)
{ {
DisablingContext *ctx; DisablingContext *ctx;
GTask *task;
ctx = g_new0 (DisablingContext, 1); ctx = g_new0 (DisablingContext, 1);
ctx->self = g_object_ref (self);
ctx->result = g_simple_async_result_new (G_OBJECT (self),
callback,
user_data,
mm_iface_modem_voice_disable);
ctx->step = DISABLING_STEP_FIRST; ctx->step = DISABLING_STEP_FIRST;
g_object_get (ctx->self,
task = g_task_new (self, NULL, callback, user_data);
g_task_set_task_data (task, ctx, (GDestroyNotify)disabling_context_free);
g_object_get (self,
MM_IFACE_MODEM_VOICE_DBUS_SKELETON, &ctx->skeleton, MM_IFACE_MODEM_VOICE_DBUS_SKELETON, &ctx->skeleton,
NULL); NULL);
if (!ctx->skeleton) { if (!ctx->skeleton) {
g_simple_async_result_set_error (ctx->result, g_task_return_new_error (task,
MM_CORE_ERROR, MM_CORE_ERROR,
MM_CORE_ERROR_FAILED, MM_CORE_ERROR_FAILED,
"Couldn't get interface skeleton"); "Couldn't get interface skeleton");
disabling_context_complete_and_free (ctx); g_object_unref (task);
return; return;
} }
interface_disabling_step (ctx); interface_disabling_step (task);
} }
/*****************************************************************************/ /*****************************************************************************/