aboutsummaryrefslogtreecommitdiff
path: root/src/mm-modem-simple.c
blob: 415fd44b48f23589a1d7800749f444b2da72a3ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * 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:
 *
 * Copyright (C) 2009 Novell, Inc.
 * Copyright (C) 2009 Red Hat, Inc.
 */

#include <dbus/dbus-glib.h>

#include "mm-modem-simple.h"
#include "mm-errors.h"
#include "mm-callback-info.h"

static void impl_modem_simple_connect (MMModemSimple *self, GHashTable *properties, DBusGMethodInvocation *context);
static void impl_modem_simple_get_status (MMModemSimple *self, DBusGMethodInvocation *context);

#include "mm-modem-simple-glue.h"

void
mm_modem_simple_connect (MMModemSimple *self,
                         GHashTable *properties,
                         MMModemFn callback,
                         gpointer user_data)
{
    g_return_if_fail (MM_IS_MODEM_SIMPLE (self));
    g_return_if_fail (properties != NULL);

    if (MM_MODEM_SIMPLE_GET_INTERFACE (self)->connect)
        MM_MODEM_SIMPLE_GET_INTERFACE (self)->connect (self, properties, callback, user_data);
    else {
        MMCallbackInfo *info;

        info = mm_callback_info_new (MM_MODEM (self), callback, user_data);
        info->error = g_error_new_literal (MM_MODEM_ERROR, MM_MODEM_ERROR_OPERATION_NOT_SUPPORTED,
                                           "Operation not supported");
        mm_callback_info_schedule (info);
    }
}

static void
simple_get_status_invoke (MMCallbackInfo *info)
{
    MMModemSimpleGetStatusFn callback = (MMModemSimpleGetStatusFn) info->callback;

    callback (MM_MODEM_SIMPLE (info->modem), NULL, info->error, info->user_data);
}

void
mm_modem_simple_get_status (MMModemSimple *self,
                            MMModemSimpleGetStatusFn callback,
                            gpointer user_data)
{
    g_return_if_fail (MM_IS_MODEM_SIMPLE (self));

    if (MM_MODEM_SIMPLE_GET_INTERFACE (self)->get_status)
        MM_MODEM_SIMPLE_GET_INTERFACE (self)->get_status (self, callback, user_data);
    else {
        MMCallbackInfo *info;

        info = mm_callback_info_new_full (MM_MODEM (self),
                                          simple_get_status_invoke,
                                          G_CALLBACK (callback),
                                          user_data);

        info->error = g_error_new_literal (MM_MODEM_ERROR, MM_MODEM_ERROR_OPERATION_NOT_SUPPORTED,
                                           "Operation not supported");
        mm_callback_info_schedule (info);
    }
}

/*****************************************************************************/

static void
async_call_done (MMModem *modem, GError *error, gpointer user_data)
{
    DBusGMethodInvocation *context = (DBusGMethodInvocation *) user_data;

    if (error)
        dbus_g_method_return_error (context, error);
    else
        dbus_g_method_return (context);
}

static void
impl_modem_simple_connect (MMModemSimple *self,
                           GHashTable *properties,
                           DBusGMethodInvocation *context)
{
    mm_modem_simple_connect (self, properties, async_call_done, context);
}

static void
get_status_done (MMModemSimple *modem,
                 GHashTable *properties,
                 GError *error,
                 gpointer user_data)
{
    DBusGMethodInvocation *context = (DBusGMethodInvocation *) user_data;

    if (error)
        dbus_g_method_return_error (context, error);
    else
        dbus_g_method_return (context, properties);
}

static void
impl_modem_simple_get_status (MMModemSimple *self,
                              DBusGMethodInvocation *context)
{
    mm_modem_simple_get_status (self, get_status_done, context);
}

/*****************************************************************************/

static void
mm_modem_simple_init (gpointer g_iface)
{
}

GType
mm_modem_simple_get_type (void)
{
    static GType modem_type = 0;

    if (!G_UNLIKELY (modem_type)) {
        const GTypeInfo modem_info = {
            sizeof (MMModemSimple), /* class_size */
            mm_modem_simple_init,   /* base_init */
            NULL,       /* base_finalize */
            NULL,
            NULL,       /* class_finalize */
            NULL,       /* class_data */
            0,
            0,              /* n_preallocs */
            NULL
        };

        modem_type = g_type_register_static (G_TYPE_INTERFACE,
                                             "MMModemSimple",
                                             &modem_info, 0);

        g_type_interface_add_prerequisite (modem_type, G_TYPE_OBJECT);
        dbus_g_object_type_install_info (modem_type, &dbus_glib_mm_modem_simple_object_info);
    }

    return modem_type;
}