summaryrefslogtreecommitdiff
path: root/test/bt_chat_client.c
blob: d6f7708978821a7fa04d792c32169f56b611eba7 (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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
/*
 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
 *
 * 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.
 */


#include <bluetooth.h>
#include <bluetooth_internal.h>
#include <dlog.h>
#include <glib.h>
#include <string.h>

#ifdef LOG_TAG
#undef LOG_TAG
#endif
#define LOG_TAG "BLUETOOTH_CHAT_CLIENT"

/**
 *   Variables
 **/
static GMainLoop *g_mainloop = NULL;
static bt_adapter_state_e bt_state = BT_ADAPTER_DISABLED;
static int socket_fd = -1;
static char *bt_address = NULL;
static char *server_name = "chat_server";
static char quit_command[5] = "Quit";
static int bonding_state = BT_ERROR_OPERATION_FAILED;


/**
 *   Callback functions
 **/
gboolean timeout_func(gpointer data)
{
	LOGE("[%s] Callback: Timeout.", __FUNCTION__);
	g_main_loop_quit((GMainLoop *)data);
	return FALSE;
}

void bt_state_changed_impl(int result,
	bt_adapter_state_e adapter_state, void *user_data)
{
	if (adapter_state == BT_ADAPTER_ENABLED) {
		if (result == BT_ERROR_NONE) {
			LOGI("[%s] Callback: BT was enabled successfully.",
				__FUNCTION__);
			bt_state = BT_ADAPTER_ENABLED;
		} else {
			LOGE("[%s] Callback: Failed to enable BT.",
				__FUNCTION__);
		}
	}

	if (g_mainloop)
		g_main_loop_quit(g_mainloop);
}

void bt_socket_connection_state_changed_impl(int result,
	bt_socket_connection_state_e connection_state,
	bt_socket_connection_s *connection,
	void *user_data)
{
	if (result == BT_ERROR_NONE) {
		LOGI("[%s] Callback: Result is BT_ERROR_NONE.",
			__FUNCTION__);
	} else {
		LOGI("[%s] Callback: Result is not BT_ERROR_NONE.",
			__FUNCTION__);
	}

	if (connection_state == BT_SOCKET_CONNECTED) {
		LOGI("[%s] Callback: Connected.",
			__FUNCTION__);
		if (result == BT_ERROR_NONE && connection != NULL) {
			socket_fd = connection->socket_fd;
			LOGI("[%s] Callback: Socket of connection - %d.",
				__FUNCTION__, socket_fd);
			LOGI("[%s] Callback: Role of connection - %d.",
				__FUNCTION__, connection->local_role);
			LOGI("[%s] Callback: Address of connection - %s.",
				__FUNCTION__, connection->remote_address);

			if (bt_socket_send_data(socket_fd,
				quit_command,
				strlen(quit_command)) == BT_ERROR_NONE) {
				LOGI("[%s] Callback: Send quit command.",
					__FUNCTION__);
			} else {
				LOGE("[%s] Callback: bt_socket_send_data() failed.",
					__FUNCTION__);
				if (g_mainloop)
					g_main_loop_quit(g_mainloop);
			}
		} else {
			LOGI("[%s] Callback: Failed to connect",
				__FUNCTION__);
			if (g_mainloop)
				g_main_loop_quit(g_mainloop);
		}
	} else {
		LOGI("[%s] Callback: Disconnected.",
			__FUNCTION__);
	}
}

void bt_socket_data_received_impl(bt_socket_received_data_s *data,
	void *user_data)
{
	if (socket_fd == data->socket_fd) {
		if (data->data_size > 0) {
			if (!strncmp(data->data,
					quit_command, data->data_size)) {
				LOGI("[%s] Callback: Quit command.",
					__FUNCTION__);
				if (g_mainloop)
					g_main_loop_quit(g_mainloop);
			}
		} else {
			LOGE("[%s] Callback: No data.",
				__FUNCTION__);
		}
	} else {
		LOGI("[%s] Callback: Another socket - %d.",
			__FUNCTION__, data->socket_fd);
	}
}

bool bt_adapter_bonded_device_impl(bt_device_info_s *device_info,
	void *user_data)
{
	int i = 0;
	if (device_info != NULL) {
		if (device_info->remote_name != NULL &&
			!strcmp(device_info->remote_name, (char *)user_data)) {
			LOGI("[%s] Callback: chat_server is found in bonded list.",
				__FUNCTION__);
			if (device_info->remote_address != NULL) {
				LOGI("[%s] Callback: Address of chat_server - %s.",
					__FUNCTION__, device_info->remote_address);
				bt_address = strdup(device_info->remote_address);
				LOGI("[%s] Callback: The number of service_count - %d.",
					__FUNCTION__, device_info->service_count);
				if (device_info->service_count <= 0) {
					bonding_state = BT_ERROR_SERVICE_SEARCH_FAILED;
				} else {
					bonding_state = BT_ERROR_NONE;
					for (i = 0; i < device_info->service_count; i++) {
						LOGI("[%s] Callback: service[%d] - %s",
							__FUNCTION__,
							i+1,
							device_info->service_uuid[i]);
					}
					LOGI("[%s] Callback: is_bonded - %d.",
						__FUNCTION__,
						device_info->is_bonded);
					LOGI("[%s] Callback: is_connected - %d.",
						__FUNCTION__,
						device_info->is_connected);
					LOGI("[%s] Callback: is_authorized - %d.",
						__FUNCTION__,
						device_info->is_authorized);
				}
			} else {
				LOGE("[%s] Callback: Address of chat_server is NULL.",
					__FUNCTION__);
			}

			return false;
		}
	}

	return true;
}

void bt_adapter_device_discovery_state_changed_impl(int result,
	bt_adapter_device_discovery_state_e discovery_state,
	bt_adapter_device_discovery_info_s *discovery_info,
	void *user_data)
{
	if (discovery_state == BT_ADAPTER_DEVICE_DISCOVERY_FOUND) {
		if (discovery_info->remote_address != NULL &&
			!strcmp(discovery_info->remote_name, server_name)) {
			LOGI("[%s] Callback: chat_server is found.", __FUNCTION__);
			LOGI("[%s] Callback: Address of chat_server - %s.",
				__FUNCTION__,
				discovery_info->remote_address);
			LOGI("[%s] Callback: Device major class - %d.",
				__FUNCTION__,
				discovery_info->bt_class.major_device_class);
			LOGI("[%s] Callback: Device minor class - %d.",
				__FUNCTION__,
				discovery_info->bt_class.minor_device_class);
			LOGI("[%s] Callback: Service major class - %d.",
				__FUNCTION__,
				discovery_info->bt_class.major_service_class_mask);
			bt_address = strdup(discovery_info->remote_address);
			LOGI("[%s] Callback: is_bonded - %d.",
				__FUNCTION__,
				discovery_info->is_bonded);
			bt_adapter_stop_device_discovery();
		} else {
			LOGE("[%s] Callback: Another device is found.",
				__FUNCTION__);
		}
	} else if (discovery_state == BT_ADAPTER_DEVICE_DISCOVERY_FINISHED) {
		LOGI("[%s] Callback: device discovery finished.",
			__FUNCTION__);
		if (g_mainloop)
			g_main_loop_quit(g_mainloop);
	}
}

void bt_device_bond_created_impl(int result,
	bt_device_info_s *device_info, void *user_data)
{
	if (device_info != NULL &&
		!strcmp(device_info->remote_address, bt_address)) {
		bonding_state = result;
		if (result == BT_ERROR_NONE) {
			LOGI("[%s] Callback: A bond with chat_server is created.",
				__FUNCTION__);
			LOGI("[%s] Callback: The number of service - %d.",
				__FUNCTION__, device_info->service_count);

			int i = 0;
			for (i = 0; i < device_info->service_count; i++) {
				LOGI("[%s] Callback: service[%d] - %s",
					__FUNCTION__, i+1,
					device_info->service_uuid[i]);
			}
			LOGI("[%s] Callback: is_bonded - %d.",
				__FUNCTION__, device_info->is_bonded);
			LOGI("[%s] Callback: is_connected - %d.",
				__FUNCTION__, device_info->is_connected);
		} else {
			LOGE("[%s] Callback: Creating a bond is failed.",
				__FUNCTION__);
		}
	} else {
		LOGE("[%s] Callback: A bond with another device is created.",
			__FUNCTION__);
	}

	if (g_mainloop)
		g_main_loop_quit(g_mainloop);
}

void bt_device_service_searched_impl(int result,
	bt_device_sdp_info_s *sdp_info, void *user_data)
{
	if (sdp_info != NULL &&
		!strcmp(sdp_info->remote_address, bt_address)) {
		bonding_state = result;
		if (result == BT_ERROR_NONE) {
			LOGI("[%s] Callback: Services of chat_service are found.",
				__FUNCTION__);
			LOGI("[%s] Callback: The number of service - %d.",
				__FUNCTION__, sdp_info->service_count);

			int i = 0;
			for (i = 0; i < sdp_info->service_count; i++) {
				LOGI("[%s] Callback: service[%d] - %s",
					__FUNCTION__, i+1,
					sdp_info->service_uuid[i]);
			}
		}
	} else {
		LOGE("[%s] Callback: Services of another device are found.",
			__FUNCTION__);
	}

	if (g_mainloop)
		g_main_loop_quit(g_mainloop);
}

int main()
{
	g_mainloop = g_main_loop_new(NULL, FALSE);
	const char *my_uuid = "11011101-0000-1000-8000-00805F9B34FB";
	int timeout_id = -1;

	LOGI("[%s] Client starts.", __FUNCTION__);

	if (bt_initialize() != BT_ERROR_NONE) {
		LOGE("[%s] bt_initialize() failed.",
			__FUNCTION__);
		return -1;
	}

	if (bt_adapter_get_state(&bt_state) != BT_ERROR_NONE) {
		LOGE("[%s] bt_adapter_get_state() failed.",
			__FUNCTION__);
		return -1;
	}

	/* Enable BT */
	if (bt_state == BT_ADAPTER_DISABLED) {
		if (bt_adapter_set_state_changed_cb(
			bt_state_changed_impl, NULL) != BT_ERROR_NONE) {
			LOGE("[%s] bt_adapter_set_state_changed_cb() failed.",
				__FUNCTION__);
			return -1;
		}

		if (bt_adapter_enable() == BT_ERROR_NONE) {
			LOGI("[%s] bt_adapter_state_changed_cb will be called.",
				__FUNCTION__);
			timeout_id = g_timeout_add(60000,
				timeout_func, g_mainloop);
			g_main_loop_run(g_mainloop);
			g_source_remove(timeout_id);
		} else {
			LOGE("[%s] bt_adapter_enable() failed.",
				__FUNCTION__);
			return -1;
		}
	} else {
		LOGI("[%s] BT was already enabled.",
			__FUNCTION__);
	}

	/* Device discovery */
	if (bt_state == BT_ADAPTER_ENABLED) {
		if (bt_adapter_foreach_bonded_device(
			bt_adapter_bonded_device_impl,
			server_name) != BT_ERROR_NONE) {
			LOGE("[%s] bt_adapter_foreach_bonded_device() failed.",
				__FUNCTION__);
			return -1;
		}

		if (bt_address == NULL) {
			if (bt_adapter_set_device_discovery_state_changed_cb(
				bt_adapter_device_discovery_state_changed_impl, NULL)
				!= BT_ERROR_NONE) {
				LOGE("[%s] bt_adapter_set_device_discovery_state_changed_cb() failed.",
					__FUNCTION__);
				return -1;
			}

			if (bt_adapter_start_device_discovery() == BT_ERROR_NONE) {
				LOGI("[%s] bt_adapter_device_discovery_state_changed_cb will be called.",
					__FUNCTION__);
				g_main_loop_run(g_mainloop);
			} else {
				LOGE("[%s] bt_adapter_start_device_discovery() failed.",
					__FUNCTION__);
				return -1;
			}
		} else {
			LOGI("[%s] chat_server is found in bonded device list.",
				__FUNCTION__);
		}
	} else {
		LOGE("[%s] BT is not enabled.",
			__FUNCTION__);
		return -1;
	}

	/* Create bond with a server */
	if (bonding_state == BT_ERROR_SERVICE_SEARCH_FAILED) {
		if (bt_device_set_service_searched_cb(
			bt_device_service_searched_impl, NULL) != BT_ERROR_NONE) {
			LOGE("[%s] bt_device_set_service_searched_cb() failed.",
				__FUNCTION__);
			return -1;
		}

		if (bt_device_start_service_search(bt_address) == BT_ERROR_NONE) {
			LOGI("[%s] bt_device_service_searched_cb will be called.",
				__FUNCTION__);
			g_main_loop_run(g_mainloop);
		} else {
			LOGE("[%s] bt_device_start_service_search() failed.",
				__FUNCTION__);
			return -1;
		}
	} else if (bonding_state != BT_ERROR_NONE) {
		if (bt_device_set_bond_created_cb(
			bt_device_bond_created_impl, NULL) != BT_ERROR_NONE) {
			LOGE("[%s] bt_device_set_bond_created_cb() failed.",
				__FUNCTION__);
			return -1;
		}

		if (bt_device_create_bond(bt_address) == BT_ERROR_NONE) {
			LOGI("[%s] bt_device_bond_created_cb will be called.",
				__FUNCTION__);
			g_main_loop_run(g_mainloop);
		} else {
			LOGE("[%s] bt_device_create_bond() failed.",
				__FUNCTION__);
			return -1;
		}
	}

	/* Connecting socket as a client */
	if (bonding_state == BT_ERROR_NONE) {
		if (bt_socket_set_connection_state_changed_cb(
			bt_socket_connection_state_changed_impl, NULL) != BT_ERROR_NONE) {
			LOGE("[%s] bt_socket_set_connection_state_changed_cb() failed.",
				__FUNCTION__);
			return -1;
		}

		if (bt_socket_set_data_received_cb(
			bt_socket_data_received_impl, NULL) != BT_ERROR_NONE) {
			LOGE("[%s] bt_socket_set_data_received_cb() failed.",
				__FUNCTION__);
			return -1;
		}

		if (bt_socket_connect_rfcomm(
			bt_address, my_uuid) == BT_ERROR_NONE) {
			LOGI("[%s] bt_socket_connection_state_changed_cb will be called.",
				__FUNCTION__);
			g_main_loop_run(g_mainloop);
		} else {
			LOGE("[%s] bt_socket_connect_rfcomm() failed.",
				__FUNCTION__);
			return -1;
		}

		if (bt_socket_disconnect_rfcomm(
			socket_fd) != BT_ERROR_NONE) {
			LOGE("[%s] bt_socket_disconnect_rfcomm() failed.",
				__FUNCTION__);
			return -1;
		}
	} else {
		LOGE("[%s] Bond is not created.",
			__FUNCTION__);
		return -1;
	}

	bt_deinitialize();

	LOGI("[%s] Client ends.", __FUNCTION__);
	return 0;
}