[PATCH 3/5] iface-modem-cdma: port mm_iface_modem_cdma_disable to use GTask
Aleksander Morgado
aleksander at aleksander.es
Fri Jun 30 09:05:25 UTC 2017
On 29/06/17 13:46, Ben Chan wrote:
> ---
> src/mm-iface-modem-cdma.c | 82 +++++++++++++++++++++++++----------------------
> 1 file changed, 44 insertions(+), 38 deletions(-)
>
Pushed to git master, thanks.
> diff --git a/src/mm-iface-modem-cdma.c b/src/mm-iface-modem-cdma.c
> index d7c6cf12..f35d6aa1 100644
> --- a/src/mm-iface-modem-cdma.c
> +++ b/src/mm-iface-modem-cdma.c
> @@ -1257,7 +1257,7 @@ mm_iface_modem_cdma_update_activation_state (MMIfaceModemCdma *self,
> /*****************************************************************************/
>
> typedef struct _DisablingContext DisablingContext;
> -static void interface_disabling_step (DisablingContext *ctx);
> +static void interface_disabling_step (GTask *task);
>
> typedef enum {
> DISABLING_STEP_FIRST,
> @@ -1268,18 +1268,13 @@ typedef enum {
> } DisablingStep;
>
> struct _DisablingContext {
> - MMIfaceModemCdma *self;
> DisablingStep step;
> - GSimpleAsyncResult *result;
> MmGdbusModemCdma *skeleton;
> };
>
> 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)
> g_object_unref (ctx->skeleton);
> g_free (ctx);
> @@ -1290,14 +1285,15 @@ mm_iface_modem_cdma_disable_finish (MMIfaceModemCdma *self,
> GAsyncResult *res,
> 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
> disable_unsolicited_events_ready (MMIfaceModemCdma *self,
> GAsyncResult *res,
> - DisablingContext *ctx)
> + GTask *task)
> {
> + DisablingContext *ctx;
> GError *error = NULL;
>
> MM_IFACE_MODEM_CDMA_GET_INTERFACE (self)->disable_unsolicited_events_finish (self, res, &error);
> @@ -1307,15 +1303,17 @@ disable_unsolicited_events_ready (MMIfaceModemCdma *self,
> }
>
> /* Go on to next step */
> + ctx = g_task_get_task_data (task);
> ctx->step++;
> - interface_disabling_step (ctx);
> + interface_disabling_step (task);
> }
>
> static void
> cleanup_unsolicited_events_ready (MMIfaceModemCdma *self,
> GAsyncResult *res,
> - DisablingContext *ctx)
> + GTask *task)
> {
> + DisablingContext *ctx;
> GError *error = NULL;
>
> MM_IFACE_MODEM_CDMA_GET_INTERFACE (self)->cleanup_unsolicited_events_finish (self, res, &error);
> @@ -1325,42 +1323,49 @@ cleanup_unsolicited_events_ready (MMIfaceModemCdma *self,
> }
>
> /* Go on to next step */
> + ctx = g_task_get_task_data (task);
> ctx->step++;
> - interface_disabling_step (ctx);
> + interface_disabling_step (task);
> }
>
> static void
> -interface_disabling_step (DisablingContext *ctx)
> +interface_disabling_step (GTask *task)
> {
> + MMIfaceModemCdma *self;
> + DisablingContext *ctx;
> +
> + self = g_task_get_source_object (task);
> + ctx = g_task_get_task_data (task);
> +
> switch (ctx->step) {
> case DISABLING_STEP_FIRST:
> /* Fall down to next step */
> ctx->step++;
>
> case DISABLING_STEP_PERIODIC_REGISTRATION_CHECKS:
> - periodic_registration_check_disable (ctx->self);
> + periodic_registration_check_disable (self);
> /* Fall down to next step */
> ctx->step++;
>
> case DISABLING_STEP_DISABLE_UNSOLICITED_EVENTS:
> - if (MM_IFACE_MODEM_CDMA_GET_INTERFACE (ctx->self)->disable_unsolicited_events &&
> - MM_IFACE_MODEM_CDMA_GET_INTERFACE (ctx->self)->disable_unsolicited_events_finish) {
> - MM_IFACE_MODEM_CDMA_GET_INTERFACE (ctx->self)->disable_unsolicited_events (
> - ctx->self,
> + if (MM_IFACE_MODEM_CDMA_GET_INTERFACE (self)->disable_unsolicited_events &&
> + MM_IFACE_MODEM_CDMA_GET_INTERFACE (self)->disable_unsolicited_events_finish) {
> + MM_IFACE_MODEM_CDMA_GET_INTERFACE (self)->disable_unsolicited_events (
> + self,
> (GAsyncReadyCallback)disable_unsolicited_events_ready,
> - ctx);
> + task);
> return;
> }
> /* Fall down to next step */
> ctx->step++;
>
> case DISABLING_STEP_CLEANUP_UNSOLICITED_EVENTS:
> - if (MM_IFACE_MODEM_CDMA_GET_INTERFACE (ctx->self)->cleanup_unsolicited_events &&
> - MM_IFACE_MODEM_CDMA_GET_INTERFACE (ctx->self)->cleanup_unsolicited_events_finish) {
> - MM_IFACE_MODEM_CDMA_GET_INTERFACE (ctx->self)->cleanup_unsolicited_events (
> - ctx->self,
> + if (MM_IFACE_MODEM_CDMA_GET_INTERFACE (self)->cleanup_unsolicited_events &&
> + MM_IFACE_MODEM_CDMA_GET_INTERFACE (self)->cleanup_unsolicited_events_finish) {
> + MM_IFACE_MODEM_CDMA_GET_INTERFACE (self)->cleanup_unsolicited_events (
> + self,
> (GAsyncReadyCallback)cleanup_unsolicited_events_ready,
> - ctx);
> + task);
> return;
> }
> /* Fall down to next step */
> @@ -1368,8 +1373,8 @@ interface_disabling_step (DisablingContext *ctx)
>
> case DISABLING_STEP_LAST:
> /* We are done without errors! */
> - g_simple_async_result_set_op_res_gboolean (ctx->result, TRUE);
> - disabling_context_complete_and_free (ctx);
> + g_task_return_boolean (task, TRUE);
> + g_object_unref (task);
> return;
> }
>
> @@ -1382,27 +1387,28 @@ mm_iface_modem_cdma_disable (MMIfaceModemCdma *self,
> gpointer user_data)
> {
> DisablingContext *ctx;
> + GTask *task;
>
> 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_cdma_disable);
> 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_CDMA_DBUS_SKELETON, &ctx->skeleton,
> NULL);
> if (!ctx->skeleton) {
> - g_simple_async_result_set_error (ctx->result,
> - MM_CORE_ERROR,
> - MM_CORE_ERROR_FAILED,
> - "Couldn't get interface skeleton");
> - disabling_context_complete_and_free (ctx);
> + g_task_return_new_error (task,
> + MM_CORE_ERROR,
> + MM_CORE_ERROR_FAILED,
> + "Couldn't get interface skeleton");
> + g_object_unref (task);
> return;
> }
>
> - interface_disabling_step (ctx);
> + interface_disabling_step (task);
> }
>
> /*****************************************************************************/
>
--
Aleksander
https://aleksander.es
More information about the ModemManager-devel
mailing list