summaryrefslogtreecommitdiff
path: root/modem/radio-settings.c
blob: 319eb5f3d27319686e84deac9e71c7e8a5e43c43 (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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
/*
 * modem/radio-settings.c - ModemRadioSettings class
 *
 * Copyright (C) 2011 Nokia Corporation
 *   @author Pekka Pessi <first.surname@nokia.com>
 *
 * This work is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This work 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this work; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include "config.h"

#define MODEM_DEBUG_FLAG MODEM_LOG_RADIO

#include "debug.h"

#include "modem/radio-settings.h"
#include "modem/request-private.h"
#include "modem/errors.h"
#include "modem/ofono.h"

#include <dbus/dbus-glib.h>

#include "signals-marshal.h"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <unistd.h>
#include <sys/types.h>
#include <signal.h>

/* ------------------------------------------------------------------------ */

G_DEFINE_TYPE (ModemRadioSettings, modem_radio_settings, MODEM_TYPE_OFACE);

/* Properties */
enum
{
  PROP_NONE,
  PROP_TECH_PREF,
  PROP_GSM_BAND,
  PROP_UMTS_BAND,
  PROP_FAST_DORMANCY,
  LAST_PROPERTY
};

/* private data */
struct _ModemRadioSettingsPrivate
{
  char *tech_pref;
  char *gsm_band;
  char *umts_band;
  gboolean fast_dormancy;

  unsigned dispose_has_run:1, connected:1, signals:1, disconnected:1;
  unsigned connection_error:1;
  unsigned :0;
};

/* ------------------------------------------------------------------------ */

static void
modem_radio_settings_init (ModemRadioSettings *self)
{
  DEBUG ("enter");

  self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
      MODEM_TYPE_RADIO_SETTINGS, ModemRadioSettingsPrivate);
}

static void
modem_radio_settings_get_property (GObject *object,
                                guint property_id,
                                GValue *value,
                                GParamSpec *pspec)
{
  ModemRadioSettings *self = MODEM_RADIO_SETTINGS (object);
  ModemRadioSettingsPrivate *priv = self->priv;

  switch (property_id)
    {
    case PROP_TECH_PREF:
      g_value_set_string (value, priv->tech_pref);
      break;

    case PROP_GSM_BAND:
      g_value_set_string (value, priv->gsm_band);
      break;

    case PROP_UMTS_BAND:
      g_value_set_string (value, priv->umts_band);
      break;

    case PROP_FAST_DORMANCY:
      g_value_set_boolean (value, priv->fast_dormancy);
      break;

    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
      break;
    }
}

static void
modem_radio_settings_set_property (GObject *object,
                                   guint property_id,
                                   const GValue *value,
                                   GParamSpec *pspec)
{
  ModemRadioSettings *self = MODEM_RADIO_SETTINGS (object);
  ModemRadioSettingsPrivate *priv = self->priv;

  switch (property_id)
    {
    case PROP_TECH_PREF:
      g_free (priv->tech_pref);
      priv->tech_pref = g_value_dup_string (value);
      break;

    case PROP_GSM_BAND:
      g_free (priv->gsm_band);
      priv->gsm_band = g_value_dup_string (value);
      break;

    case PROP_UMTS_BAND:
      g_free (priv->umts_band);
      priv->umts_band = g_value_dup_string (value);
      break;

    case PROP_FAST_DORMANCY:
      priv->fast_dormancy = g_value_get_boolean (value);
      break;

    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
      break;
    }
}

static void
modem_radio_settings_constructed (GObject *object)
{
  if (G_OBJECT_CLASS (modem_radio_settings_parent_class)->constructed)
    G_OBJECT_CLASS (modem_radio_settings_parent_class)->constructed (object);
}

static void
modem_radio_settings_dispose (GObject *object)
{
  if (G_OBJECT_CLASS (modem_radio_settings_parent_class)->dispose)
    G_OBJECT_CLASS (modem_radio_settings_parent_class)->dispose (object);
}

static void
modem_radio_settings_finalize (GObject *object)
{
  ModemRadioSettings *self = MODEM_RADIO_SETTINGS (object);
  ModemRadioSettingsPrivate *priv = self->priv;

  DEBUG ("enter");

  /* Free any data held directly by the object here */
  g_free (priv->tech_pref);
  g_free (priv->gsm_band);
  g_free (priv->umts_band);

  G_OBJECT_CLASS (modem_radio_settings_parent_class)->finalize (object);
}

/* ------------------------------------------------------------------------- */
/* ModemOface interface */

static char const *
modem_radio_settings_property_mapper (char const *name)
{
  if (!strcmp (name, "TechnologyPreference"))
    return "technology-preference";
  if (!strcmp(name, "GsmBand"))
      return "gsm-band";
  if (!strcmp (name, "UmtsBand"))
    return "umts-band";
  if (!strcmp (name, "FastDormancy"))
    return "fast-dormancy";
  return NULL;
}

static void
modem_radio_settings_connect (ModemOface *_self)
{
  DEBUG ("(%p): enter", _self);

  modem_oface_connect_properties (_self, TRUE);
}

static void
modem_radio_settings_connected (ModemOface *_self)
{
  DEBUG ("(%p): enter", _self);
}

static void
modem_radio_settings_disconnect (ModemOface *_self)
{
  DEBUG ("(%p): enter", _self);

  modem_oface_disconnect_properties (_self);
}

static void
modem_radio_settings_class_init (ModemRadioSettingsClass *klass)
{
  GObjectClass *object_class = G_OBJECT_CLASS (klass);
  ModemOfaceClass *oface_class = MODEM_OFACE_CLASS (klass);

  DEBUG ("enter");

  object_class->get_property = modem_radio_settings_get_property;
  object_class->set_property = modem_radio_settings_set_property;
  object_class->constructed = modem_radio_settings_constructed;
  object_class->dispose = modem_radio_settings_dispose;
  object_class->finalize = modem_radio_settings_finalize;

  oface_class->ofono_interface = MODEM_OFACE_RADIO_SETTINGS;
  oface_class->property_mapper = modem_radio_settings_property_mapper;
  oface_class->connect = modem_radio_settings_connect;
  oface_class->connected = modem_radio_settings_connected;
  oface_class->disconnect = modem_radio_settings_disconnect;

  /* Properties */
  g_object_class_install_property (object_class, PROP_TECH_PREF,
      g_param_spec_string ("technology-preference",
          "TechnologyPreference",
          "The current radio access selection mode, also known "
          "as network preference.",
          "", /* default value */
          G_PARAM_READWRITE | G_PARAM_CONSTRUCT |
          G_PARAM_STATIC_STRINGS));

  g_object_class_install_property (object_class, PROP_GSM_BAND,
      g_param_spec_string ("gsm-band",
          "GsmBand",
          "Frequency band in which the modem is allowed to "
          "operate when using \"gsm\" mode. Setting this property "
          "has an imediate effect on modem only if "
          "TechnologyPreference is set to \"gsm\" or \"any\". "
          "Otherwise the value is kept and applied whenever modem "
          "uses this mode.",
          "", /* default value */
          G_PARAM_READWRITE | G_PARAM_CONSTRUCT |
          G_PARAM_STATIC_STRINGS));

  g_object_class_install_property (object_class, PROP_UMTS_BAND,
      g_param_spec_string ("umts-band",
          "UmtsBand",
          "Frequency band in which the modem is allowed to "
          "operate when using \"umts\" mode. Setting this property "
          "has an imediate effect on modem only if "
          "TechnologyPreference is set to \"umts\" or \"any\". "
          "Otherwise the value is kept and applied whenever modem "
          "uses this mode.",
          "", /* default value */
          G_PARAM_READWRITE | G_PARAM_CONSTRUCT |
          G_PARAM_STATIC_STRINGS));

  g_object_class_install_property (object_class, PROP_FAST_DORMANCY,
      g_param_spec_boolean ("fast-dormancy",
          "FastDormancy",
          "This property will enable or disable the fast "
          "dormancy feature in the modem. Fast dormancy "
          "refers to a modem feature that allows the "
          "modem to quickly release radio resources after "
          "a burst of data transfer has ended. Normally, "
          "radio resources are released by the network "
          "after a timeout configured by the network. "
          "Fast dormancy allows the modem to release the "
          "radio resources more quickly.",
          FALSE, /* default value */
          G_PARAM_READWRITE | G_PARAM_CONSTRUCT |
          G_PARAM_STATIC_STRINGS));

  g_type_class_add_private (klass, sizeof (ModemRadioSettingsPrivate));

  modem_error_domain_prefix (0); /* Init errors */
}