summaryrefslogtreecommitdiff
path: root/modem/modem.h
blob: 8020524ceaf1d11b32518b944a050802621506f4 (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
/*
 * modem/modem.h - Interface towards oFono modem instance
 *
 * Copyright (C) 2009,2010 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
 */

#ifndef _MODEM_MODEM_H_
#define _MODEM_MODEM_H_

#include <glib-object.h>
#include <modem/request.h>
#include <modem/oface.h>

G_BEGIN_DECLS

typedef struct _Modem Modem;
typedef struct _ModemClass ModemClass;
typedef struct _ModemPrivate ModemPrivate;

struct _ModemClass {
  ModemOfaceClass parent_class;
};

struct _Modem {
  ModemOface parent;
  ModemPrivate *priv;
};

GType modem_get_type (void);

/* TYPE MACROS */
#define MODEM_TYPE_MODEM (modem_get_type ())
#define MODEM_MODEM(obj)                                               \
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), MODEM_TYPE_MODEM, Modem))
#define MODEM_CLASS_MODEM(klass)                                       \
  (G_TYPE_CHECK_CLASS_CAST ((klass), MODEM_TYPE_MODEM, ModemClass))
#define MODEM_IS_MODEM(obj)                                            \
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MODEM_TYPE_MODEM))
#define MODEM_IS_MODEM_CLASS(klass)                                    \
  (G_TYPE_CHECK_CLASS_TYPE ((klass), MODEM_TYPE_MODEM))
#define MODEM_GET_MODEM_CLASS(obj)                                     \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), MODEM_TYPE_MODEM, ModemClass))

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

#define MODEM_OFACE_MODEM "org.ofono.Modem"

char const *modem_get_modem_path (Modem const *self);

gboolean modem_is_powered (Modem const *self);
gboolean modem_is_online (Modem const *self);
gboolean modem_has_interface (Modem const *self, char const *interface);

ModemOface *modem_get_interface (Modem const *self, char const *interface);
ModemOface **modem_list_interfaces (Modem const *self);

gboolean modem_supports_sim (Modem const *self);
gboolean modem_supports_call (Modem const *self);
gboolean modem_supports_sms (Modem const *self);

gboolean modem_has_imsi (Modem const *self, gchar const *imsi);

gboolean modem_has_imei (Modem const *self, gchar const *imei);

G_END_DECLS

#endif /* #ifndef _MODEM_MODEM_H_*/