summaryrefslogtreecommitdiffstats
path: root/client.c
blob: 448d60d13556594b5fd02e683f03ccb881d771fc (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
/*
 * This file is part of Samsung-RIL.
 *
 * Copyright (C) 2011-2013 Paul Kocialkowski <contact@paulk.fr>
 *
 * Samsung-RIL is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Samsung-RIL 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Samsung-RIL.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <pthread.h>

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

#include "samsung-ril.h"

struct ril_client *ril_client_new(struct ril_client_funcs *client_funcs)
{
	struct ril_client *ril_client;
	int rc;

	ril_client = calloc(1, sizeof(struct ril_client));

	if (client_funcs != NULL) {
		ril_client->funcs.create = client_funcs->create;
		ril_client->funcs.destroy = client_funcs->destroy;
		ril_client->funcs.read_loop = client_funcs->read_loop;
	}

	pthread_mutex_init(&(ril_client->mutex), NULL);

	return ril_client;
}

int ril_client_free(struct ril_client *client)
{
	if (client == NULL)
		return -1;

	pthread_mutex_destroy(&(client->mutex));

	free(client);

	return 0;
}

int ril_client_create(struct ril_client *client)
{
	int rc;
	int c;

	if (client == NULL || client->funcs.create == NULL)
		return -1;

	for (c = RIL_CLIENT_MAX_TRIES ; c > 0 ; c--) {
		LOGD("Creating RIL client inners, try #%d", RIL_CLIENT_MAX_TRIES - c + 1);

		rc = client->funcs.create(client);
		if (rc < 0)
			LOGE("RIL client inners creation failed");
		else
			break;

		usleep(500000);
	}

	if (c == 0) {
		LOGE("RIL client inners creation failed too many times");
		client->state = RIL_CLIENT_ERROR;
		return -1;
	}

	client->state = RIL_CLIENT_CREATED;

	return 0;
}

int ril_client_destroy(struct ril_client *client)
{
	int rc;
	int c;

	if (client == NULL || client->funcs.destroy == NULL)
		return -1;

	for (c = RIL_CLIENT_MAX_TRIES ; c > 0 ; c--) {
		LOGD("Destroying RIL client inners, try #%d", RIL_CLIENT_MAX_TRIES - c + 1);

		rc = client->funcs.destroy(client);
		if (rc < 0)
			LOGE("RIL client inners destroying failed");
		else
			break;

		usleep(500000);
	}

	if (c == 0) {
		LOGE("RIL client inners destroying failed too many times");
		client->state = RIL_CLIENT_ERROR;
		return -1;
	}

	client->state = RIL_CLIENT_DESTROYED;

	return 0;
}

void *ril_client_thread(void *data)
{
	struct ril_client *client;
	int rc;
	int c;

	if (data == NULL)
		return NULL;

	client = (struct ril_client *) data;

	if (client->funcs.read_loop == NULL)
		return NULL;

	for (c = RIL_CLIENT_MAX_TRIES ; c > 0 ; c--) {
		client->state = RIL_CLIENT_READY;

		rc = client->funcs.read_loop(client);
		if (rc < 0) {
			client->state = RIL_CLIENT_ERROR;

			LOGE("RIL client read loop failed");

			ril_client_destroy(client);
			ril_client_create(client);

			continue;
		} else {
			client->state = RIL_CLIENT_CREATED;

			LOGD("RIL client read loop ended");
			break;
		}
	}

	if (c == 0) {
		LOGE("RIL client read loop failed too many times");
		client->state = RIL_CLIENT_ERROR;
	}

	// Destroy everything here

	rc = ril_client_destroy(client);
	if (rc < 0)
		LOGE("RIL client destroy failed");

	rc = ril_client_free(client);
	if (rc < 0)
		LOGE("RIL client free failed");

	return 0;
}

int ril_client_thread_start(struct ril_client *client)
{
	pthread_attr_t attr;
	int rc;

	pthread_attr_init(&attr);
	pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);

	rc = pthread_create(&(client->thread), &attr, ril_client_thread, (void *) client);

	if (rc != 0) {
		LOGE("RIL client thread creation failed");
		return -1;
	}

	return 0;
}