aboutsummaryrefslogtreecommitdiff
path: root/u300-ril-oem-parser.cpp
blob: 0081dafb8e9642ee992bbb10e039900a87683223 (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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
/* ST-Ericsson U300 RIL
**
** Copyright (C) ST-Ericsson AB 2008-2010
** Copyright 2006, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
**
** Based on reference-ril by The Android Open Source Project.
**
** Heavily modified for ST-Ericsson U300 modems.
** Author: Dmitry Tarnyagin <dmitry.tarnyagin@stericsson.com>
*/

#include <cutils/jstring.h>

#define LOG_TAG "RILV"
#include <utils/Log.h>

#include "u300-ril-oem-parser.h"

namespace u300_ril
{

using android::NO_ERROR;
using android::NO_MEMORY;
using android::BAD_VALUE;
using android::BAD_TYPE;
using android::NOT_ENOUGH_DATA;
using android::NAME_NOT_FOUND;

OemRilParser::OemRilParser()
    : mParcel()
{}

OemRilParser::~OemRilParser()
{}

android::status_t
OemRilParser::parseHeader(uint32_t *msg_id)
{
    status_t status;
    struct u300_ril_oem_hdr hdr;

    if (!msg_id)
        return BAD_VALUE;

    hdr.sig = hdr.msg_id = 0;

    status = readInt32(&hdr.sig);
    if (status != NO_ERROR)
        return status;

    status = readInt32(&hdr.msg_id);
    if (status != NO_ERROR)
        return status;

    if (hdr.sig != U300_RIL_OEM_SIG)
        return BAD_TYPE;

    if (hdr.msg_id >= U300_RIL_OEM_MSG_LAST)
        return NAME_NOT_FOUND;

    *msg_id = hdr.msg_id;
    return NO_ERROR;
}

#ifdef U300_RIL_OEM_MSG_SELFTEST
android::status_t
OemRilParser::parsePing(struct u300_ril_oem_ping_request *request)
{
    status_t status;
    if (!request)
        return BAD_VALUE;

    /* Example: parseXXX shall verify that header was read properly */
    if (mParcel.dataPosition() != sizeof(struct u300_ril_oem_hdr))
        return BAD_VALUE;

    /* Example: deserialization of a string */
    status = readString(&request->val_string);
    if (status != NO_ERROR)
        return status;

    /* Example: deserialization of an int32 */
    status = readInt32(&request->val_i32);

    return status;
}
#endif /* U300_RIL_OEM_MSG_SELFTEST */

android::status_t
OemRilParser::parseUpdateFrequencySubscription(struct u300_ril_oem_frequency_subscription_request *request)
{
    if (!request)
        return BAD_VALUE;

    /* Example: parseXXX shall verify that header was read properly */
    if (mParcel.dataPosition() != sizeof(struct u300_ril_oem_hdr))
        return BAD_VALUE;

    return readInt32(&request->enabled);
}

android::status_t
OemRilParser::parseOpenLogicalChannelRequest(struct
                            u300_ril_oem_open_logical_channel_request *request)
{
    if (!request)
        return BAD_VALUE;
    if (mParcel.dataPosition() != sizeof(struct u300_ril_oem_hdr))
        return BAD_VALUE;
    return readString(&request->application_id_string);
}

android::status_t
OemRilParser::parseCloseLogicalChannelRequest( struct
                            u300_ril_oem_close_logical_channel_request *request)
{
    if (!request)
        return BAD_VALUE;
    if (mParcel.dataPosition() != sizeof(struct u300_ril_oem_hdr))
        return BAD_VALUE;
    return readInt32(&request->channel_session_id);
}

android::status_t
OemRilParser::parseUiccLogicalChannelAccessRequest( struct
                      u300_ril_oem_uicc_logical_channel_access_request *request)
{
    status_t status;
    if (!request)
        return BAD_VALUE;

    if (mParcel.dataPosition() != sizeof(struct u300_ril_oem_hdr))
        return BAD_VALUE;

    status = readInt32(&request->channel_session_id_val_i32);
    if (status != NO_ERROR)
        return status;

    return readString(&request->command_val_string);
}

android::status_t
OemRilParser::parseSimAccessRequest( struct
                            u300_ril_oem_sim_access_request *request)
{
    status_t status;
    if (!request)
        return BAD_VALUE;

    if (mParcel.dataPosition() != sizeof(struct u300_ril_oem_hdr))
        return BAD_VALUE;

    return readString(&request->command_val_string);
}
/* TODO: Implement new parseXXX methods here */

#ifdef U300_RIL_OEM_MSG_SELFTEST
android::status_t
OemRilParser::writePingResponse(const struct u300_ril_oem_ping_response *response)
{
    status_t status;

    status = mParcel.setDataSize(0);
    if (status != NO_ERROR) {
        return status;
    }

    status = writeHeader(U300_RIL_OEM_MSG_PING);
    if (status != NO_ERROR)
        return status;

    /* Example: serialization of a string */
    status = writeString(response->val_string);
    if (status != NO_ERROR)
        return status;

    /* Example: serialization of an int32 */
    status = writeInt32(response->val_i32);
    return status;
}
#endif /* U300_RIL_OEM_MSG_SELFTEST */

android::status_t
OemRilParser::writeNetworkSearchAndSetResponse()
{
    status_t status;

    status = mParcel.setDataSize(0);
    if (status != NO_ERROR)
        return status;

    status = writeHeader(U300_RIL_OEM_MSG_NETWORK_SEARCH_AND_SET);
    return status;
}

android::status_t
OemRilParser::writeFrequencyReportItem(const pairFrequencyReportItem_t &val)
{
    status_t status;
    status = writeInt32(val.frequency);
    if (status != NO_ERROR)
        return status;
    status = writeInt32(val.strength);
    return status;
}

android::status_t
OemRilParser::writeRequestFrequencyReportResponse(const pairFrequencyReportItem_t &pairCurrent,
                                                  const vecFrequencyReport_t &vecNeighbors)
{
    vecFrequencyReport_t::const_iterator it;
    vecFrequencyReport_t::const_iterator end = vecNeighbors.end();
    status_t status;

    status = mParcel.setDataSize(0);
    if (status != NO_ERROR)
        return status;

    status = writeHeader(U300_RIL_OEM_MSG_REQUEST_FREQUENCY_REPORT);
    if (status != NO_ERROR)
        return status;

    status = writeInt32(vecNeighbors.size() + 1);
    if (status != NO_ERROR)
        return status;

    status = writeFrequencyReportItem(pairCurrent);
    if (status != NO_ERROR)
        return status;

    for (it = vecNeighbors.begin(); it != end; ++it) {
        status = writeFrequencyReportItem(*it);
        if (status != NO_ERROR)
            return status;
    }

    return status;
}

android::status_t
OemRilParser::writeUpdateFrequencySubscriptionResponse()
{
    status_t status;

    status = mParcel.setDataSize(0);
    if (status != NO_ERROR)
        return status;

    status = writeHeader(U300_RIL_OEM_MSG_UPDATE_FREQUENCY_SUBSCRIPTION);
    return status;
}

android::status_t
OemRilParser::writeUnsolFrequencyNotification()
{
    status_t status;

    status = mParcel.setDataSize(0);
    if (status != NO_ERROR)
        return status;

    status = writeHeader(U300_RIL_OEM_MSG_UNSOL_FREQUENCY_REPORT);
    return status;
}

android::status_t
OemRilParser::writeOpenLogicalChannelResponse(const struct
                        u300_ril_oem_open_logical_channel_response *response)
{
    status_t status;
    status = mParcel.setDataSize(0);
    if (status != NO_ERROR)
        return status;

    status = writeHeader(U300_RIL_OEM_MSG_OPEN_LOGICAL_CHANNEL);
    if (status != NO_ERROR)
        return status;

    status = writeInt32(response->session_id);
    return status;
}

android::status_t
OemRilParser::writeCloseLogicalChannelResponse()
{
    status_t status;
    status = mParcel.setDataSize(0);
    if (status != NO_ERROR)
        return status;

    status = writeHeader(U300_RIL_OEM_MSG_CLOSE_LOGICAL_CHANNEL);
    return status;
}

android::status_t
OemRilParser::writeUiccLogicalChannelAccessResponse(const struct
                   u300_ril_oem_uicc_logical_channel_access_response *response)
{
    status_t status;
    status = mParcel.setDataSize(0);
    if (status != NO_ERROR)
        return status;

    status = writeHeader(U300_RIL_OEM_MSG_UICC_LOGICAL_CHANNEL_ACCESS);
    if (status != NO_ERROR)
        return status;

    if (response != NULL)
        status = writeString(response->response_val_string);
    return status;
}

android::status_t
OemRilParser::writeSimAccessResponse(const struct
                        u300_ril_oem_sim_access_response *response)
{
    status_t status;
    status = mParcel.setDataSize(0);
    if (status != NO_ERROR)
        return status;

    status = writeHeader(U300_RIL_OEM_MSG_SIM_ACCESS);
    if (status != NO_ERROR)
        return status;

    if (response != NULL)
        status = writeString(response->response_val_string);
    return status;
}

android::status_t
OemRilParser::writeFastDormancyResponse()
{
    status_t status;

    status = mParcel.setDataSize(0);
    if (status != NO_ERROR)
        return status;

    status = writeHeader(U300_RIL_OEM_MSG_FAST_DORMANCY);
    return status;
}

/* TODO: Implement new writeXXX methods here */




/* ***************************************************** */
/* Implementation: privates                              */

android::status_t
OemRilParser::writeHeader(/*in*/ uint32_t msg_id)
{
    status_t status;

    status = writeInt32(U300_RIL_OEM_SIG);
    if (status != NO_ERROR)
        return status;

    status = writeInt32(msg_id);
    return status;
}

android::status_t
OemRilParser::readString(/*out*/ android::String8 *val)
{
    size_t stringlen = 0;
    const char16_t *s16 = NULL;

    if (!val)
        return BAD_VALUE;

    s16 = mParcel.readString16Inplace(&stringlen);
    if (!s16) {
        return NOT_ENOUGH_DATA;
    }

    *val = android::String8(s16, stringlen);

    return NO_ERROR;
}

android::status_t
OemRilParser::writeString(/*in*/ const android::String8 &val)
{
    status_t status;
    char16_t *s16;
    size_t s16_len;

    s16 = strdup8to16(val.string(), &s16_len);
    if (s16) {
        status = mParcel.writeString16(s16, s16_len);
        free(s16);
        return status;
    } else {
        return NO_MEMORY;
    }
}

} /* namespace u300_ril */