summaryrefslogtreecommitdiff
path: root/modem/sms.h
blob: 182dba85f1f70cc9f17c9d65ab1fb4730a9a7b6c (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
/*
 * modem/sms.h - Client for Modem SMS Service
 *
 * Copyright (C) 2008 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_SMS_SERVICE_H_
#define _MODEM_SMS_SERVICE_H_

#include <glib-object.h>

#if nomore
#include <sms-glib/deliver.h>
#include <sms-glib/status-report.h>
#include <sms-glib/submit.h>
#endif

#include <modem/request.h>
#include <modem/oface.h>

G_BEGIN_DECLS

typedef struct _ModemSMSService ModemSMSService;
typedef struct _ModemSMSServiceClass ModemSMSServiceClass;
typedef struct _ModemSMSServicePrivate ModemSMSServicePrivate;

struct _ModemSMSServiceClass
{
  ModemOfaceClass parent_class;
};

struct _ModemSMSService
{
  ModemOface parent;
  ModemSMSServicePrivate *priv;
};

GType modem_sms_service_get_type (void);

/* TYPE MACROS */
#define MODEM_TYPE_SMS_SERVICE \
  (modem_sms_service_get_type ())
#define MODEM_SMS_SERVICE(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), MODEM_TYPE_SMS_SERVICE, ModemSMSService))
#define MODEM_SMS_SERVICE_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_CAST ((klass), MODEM_TYPE_SMS_SERVICE, ModemSMSServiceClass))
#define MODEM_IS_SMS_SERVICE(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MODEM_TYPE_SMS_SERVICE))
#define MODEM_IS_SMS_SERVICE_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE ((klass), MODEM_TYPE_SMS_SERVICE))
#define MODEM_SMS_SERVICE_GET_CLASS(obj) \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), MODEM_TYPE_SMS_SERVICE, ModemSMSServiceClass))

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

#define MODEM_OFACE_SMS "org.ofono.MessageManager"

#if nomore
typedef void ModemSMSConnectedHandler (ModemSMSService *, gpointer);
typedef void ModemSMSDeliverHandler (ModemSMSService *,
    SMSGDeliver *, gpointer);
#endif

typedef void ModemSMSMessageHandler (ModemSMSService *self,
    gchar const *message,
    GHashTable *info,
    gpointer user_data);

typedef void ModemSMSServiceReply (ModemSMSService *self,
  ModemRequest *request,
  GError const *error,
  gpointer user_data);

typedef void ModemSMSServiceSendReply (ModemSMSService *self,
  ModemRequest *request,
  char const *message_id,
  GError const *error,
  gpointer user_data);

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

#if nomore
char const *modem_sms_service_property_name_by_ofono_name (char const *);

gulong modem_sms_connect_to_connected (ModemSMSService *self,
  ModemSMSConnectedHandler *user_function,
  gpointer user_data);

gulong modem_sms_connect_to_deliver (ModemSMSService *self,
  ModemSMSDeliverHandler *user_function,
  gpointer user_data);
#endif

gulong modem_sms_connect_to_incoming_message (ModemSMSService *self,
    ModemSMSMessageHandler *handler,
    gpointer data);

gulong modem_sms_connect_to_immediate_message (ModemSMSService *self,
    ModemSMSMessageHandler *handler,
    gpointer data);

guint64 modem_sms_service_time_connected (ModemSMSService const *self);

gint64 modem_sms_parse_time (gchar const *);

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

ModemRequest *modem_sms_set_sc_address (ModemSMSService *self,
    char const *address,
    ModemSMSServiceReply *reply,
    gpointer user_data);

ModemRequest *modem_sms_set_srr (ModemSMSService *self,
    gboolean srr,
    ModemSMSServiceReply *reply,
    gpointer user_data);

ModemRequest *modem_sms_request_send (ModemSMSService *self,
  char const *to, char const *message,
  ModemSMSServiceSendReply *reply,
  gpointer user_data);

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

gboolean modem_sms_is_valid_address (gchar const *address);
gboolean modem_sms_validate_address (gchar const *address, GError **error);

G_END_DECLS

#endif /* #ifndef _MODEM_SMS_SERVICE_H_*/