aboutsummaryrefslogtreecommitdiffstats
path: root/src/libqmi-glib/qmi-message.h
blob: d6b15f8d12480d67da3dfbb95a822c4107746a8b (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
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */

/*
 * Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/*
 * libqmi-glib -- GLib/GIO based library to control QMI devices
 *
 * This library 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 of the License, or (at your option) any later version.
 *
 * This library 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 library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301 USA.
 *
 * Copyright (C) 2012-2014 Aleksander Morgado <aleksander@aleksander.es>
 */

#ifndef _LIBQMI_GLIB_QMI_MESSAGE_H_
#define _LIBQMI_GLIB_QMI_MESSAGE_H_

#if !defined (__LIBQMI_GLIB_H_INSIDE__) && !defined (LIBQMI_GLIB_COMPILATION)
#error "Only <libqmi-glib.h> can be included directly."
#endif

#include <glib.h>

#include "qmi-utils.h"
#include "qmi-enums.h"
#include "qmi-errors.h"

G_BEGIN_DECLS

#define QMI_MESSAGE_QMUX_MARKER (guint8)0x01

/**
 * QmiMessage:
 *
 * An opaque type representing a QMI message.
 */
typedef GByteArray QmiMessage;

/*****************************************************************************/
/* QMI Message life cycle */

QmiMessage   *qmi_message_new          (QmiService service,
                                        guint8 client_id,
                                        guint16 transaction_id,
                                        guint16 message_id);
QmiMessage   *qmi_message_new_from_raw (GByteArray *raw,
                                        GError **error);
QmiMessage   *qmi_message_response_new (QmiMessage *request,
                                        QmiProtocolError error);
QmiMessage   *qmi_message_ref          (QmiMessage *self);
void          qmi_message_unref        (QmiMessage *self);

/*****************************************************************************/
/* QMI Message content getters */

gboolean      qmi_message_is_request            (QmiMessage *self);
gboolean      qmi_message_is_response           (QmiMessage *self);
gboolean      qmi_message_is_indication         (QmiMessage *self);
QmiService    qmi_message_get_service           (QmiMessage *self);
guint8        qmi_message_get_client_id         (QmiMessage *self);
guint16       qmi_message_get_transaction_id    (QmiMessage *self);
guint16       qmi_message_get_message_id        (QmiMessage *self);
gsize         qmi_message_get_length            (QmiMessage *self);
const guint8 *qmi_message_get_raw               (QmiMessage *self,
                                                 gsize *length,
                                                 GError **error);
gboolean     qmi_message_get_version_introduced (QmiMessage *self,
                                                 guint *major,
                                                 guint *minor);


/*****************************************************************************/
/* TLV builder & writer */

gsize    qmi_message_tlv_write_init        (QmiMessage   *self,
                                            guint8        type,
                                            GError      **error);
void     qmi_message_tlv_write_reset       (QmiMessage   *self,
                                            gsize         tlv_offset);
gboolean qmi_message_tlv_write_complete    (QmiMessage   *self,
                                            gsize         tlv_offset,
                                            GError      **error);
gboolean qmi_message_tlv_write_guint8      (QmiMessage   *self,
                                            guint8        in,
                                            GError      **error);
gboolean qmi_message_tlv_write_gint8       (QmiMessage   *self,
                                            gint8         in,
                                            GError      **error);
gboolean qmi_message_tlv_write_guint16     (QmiMessage   *self,
                                            QmiEndian     endian,
                                            guint16       in,
                                            GError      **error);
gboolean qmi_message_tlv_write_gint16      (QmiMessage   *self,
                                            QmiEndian     endian,
                                            gint16        in,
                                            GError      **error);
gboolean qmi_message_tlv_write_guint32     (QmiMessage   *self,
                                            QmiEndian     endian,
                                            guint32       in,
                                            GError      **error);
gboolean qmi_message_tlv_write_gint32      (QmiMessage   *self,
                                            QmiEndian     endian,
                                            gint32        in,
                                            GError      **error);
gboolean qmi_message_tlv_write_guint64     (QmiMessage   *self,
                                            QmiEndian     endian,
                                            guint64       in,
                                            GError      **error);
gboolean qmi_message_tlv_write_gint64      (QmiMessage   *self,
                                            QmiEndian     endian,
                                            gint64        in,
                                            GError      **error);
gboolean qmi_message_tlv_write_sized_guint (QmiMessage   *self,
                                            guint         n_bytes,
                                            QmiEndian     endian,
                                            guint64       in,
                                            GError      **error);
gboolean qmi_message_tlv_write_string      (QmiMessage   *self,
                                            guint8        n_size_prefix_bytes,
                                            const gchar  *in,
                                            gssize        in_length,
                                            GError      **error);

/*****************************************************************************/
/* Raw TLV handling */

typedef void (* QmiMessageForeachRawTlvFn) (guint8 type,
                                            const guint8 *value,
                                            gsize length,
                                            gpointer user_data);
void          qmi_message_foreach_raw_tlv  (QmiMessage *self,
                                            QmiMessageForeachRawTlvFn func,
                                            gpointer user_data);
const guint8 *qmi_message_get_raw_tlv      (QmiMessage *self,
                                            guint8 type,
                                            guint16 *length);
gboolean      qmi_message_add_raw_tlv      (QmiMessage *self,
                                            guint8 type,
                                            const guint8 *raw,
                                            gsize length,
                                            GError **error);

/*****************************************************************************/
/* Other helpers */

void qmi_message_set_transaction_id (QmiMessage *self,
                                     guint16 transaction_id);

/*****************************************************************************/
/* Printable helpers */

gchar *qmi_message_get_printable (QmiMessage *self,
                                  const gchar *line_prefix);

gchar *qmi_message_get_tlv_printable (QmiMessage *self,
                                      const gchar *line_prefix,
                                      guint8 type,
                                      const guint8 *raw,
                                      gsize raw_length);

G_END_DECLS

#endif /* _LIBQMI_GLIB_QMI_MESSAGE_H_ */