30c9b463e3877ab01916e1d51c1d6bf6ac952d72
[platform/core/connectivity/bluetooth-frwk.git] / bt-service-adaptation / services / audio / avrcp / bt-service-avrcp-ctrl.c
1 /*
2  * Bluetooth-frwk
3  *
4  * Copyright (c) 2015 - 2016 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact:  Nilesh Trimbake <t.shripati@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *              http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 #include <sys/socket.h>
23 #include <sys/errno.h>
24 #include <sys/stat.h>
25 #include <fcntl.h>
26 #include <vconf.h>
27
28 #include "oal-hardware.h"
29 #include "oal-device-mgr.h"
30 #include <oal-manager.h>
31 #include <oal-avrcp-ct.h>
32
33 #include <bt-service-avrcp-ctrl.h>
34 #include <bluetooth-media-control.h>
35 #include <bt-service-event.h>
36
37 static int __media_prop_to_oal_type(int type)
38 {
39         int oal_type;
40
41         switch (type) {
42         case EQUALIZER:
43                 oal_type = OAL_EQUALIZER;
44                 break;
45         case SHUFFLE:
46                 oal_type = OAL_SHUFFLE;
47                 break;
48         case REPEAT:
49                 oal_type = OAL_REPEAT;
50                 break;
51         case SCAN:
52                 oal_type = OAL_SCAN;
53                 break;
54         case POSITION:
55                 oal_type = OAL_PLAY_POSITION;
56                 break;
57         case STATUS:
58                 oal_type = OAL_PLAY_STATUS;
59                 break;
60         default:
61                 BT_ERR("Unknown type: %d", type);
62                 oal_type = -1;
63         }
64
65         return oal_type;
66 }
67
68 static int __oal_type_to_media_prop(int oal_type)
69 {
70         int type;
71
72         switch (oal_type) {
73         case OAL_EQUALIZER:
74                 type = EQUALIZER;
75                 break;
76         case OAL_SHUFFLE:
77                 type = SHUFFLE;
78                 break;
79         case OAL_REPEAT:
80                 type = REPEAT;
81                 break;
82         case OAL_SCAN:
83                 type = SCAN;
84                 break;
85         case OAL_PLAY_POSITION:
86                 type = POSITION;
87                 break;
88         case OAL_PLAY_STATUS:
89                 type = STATUS;
90                 break;
91         default:
92                 BT_ERR("Unknown type: %d", oal_type);
93                 type = -1;
94         }
95
96         return type;
97 }
98
99 int _bt_avrcp_connect_remote_target(bluetooth_device_address_t *device_address)
100 {
101         oal_status_t status = OAL_STATUS_SUCCESS;
102         int result = BLUETOOTH_ERROR_NONE;
103         BT_INFO("+");
104
105         status = avrcp_ct_connect((bt_address_t*)device_address);
106         if (status != OAL_STATUS_SUCCESS) {
107                 BT_ERR("Connection could not be established, err: [%d]", status);
108                 result = BLUETOOTH_ERROR_INTERNAL;
109         }
110         return result;
111 }
112
113 int _bt_avrcp_disconnect_remote_target(bluetooth_device_address_t *device_address)
114 {
115         oal_status_t status = OAL_STATUS_SUCCESS;
116         int result = BLUETOOTH_ERROR_NONE;
117         BT_INFO("+");
118
119         status = avrcp_ct_disconnect((bt_address_t*)device_address);
120         if (status != OAL_STATUS_SUCCESS) {
121                 BT_ERR("DisConnection err: [%d]", status);
122                 result = BLUETOOTH_ERROR_INTERNAL;
123         }
124         return result;
125 }
126
127 int _bt_avrcp_control_cmd(int type)
128 {
129         char connected_address[BT_ADDRESS_STRING_SIZE + 1];
130         gboolean connected;
131         bluetooth_device_address_t device_address;
132         oal_status_t status = OAL_STATUS_SUCCESS;
133         int result = BLUETOOTH_ERROR_NONE;
134         BT_INFO("+");
135
136         connected = _bt_is_headset_type_connected(BT_AVRCP, connected_address);
137
138         if (!connected) {
139                 BT_ERR("Device is not connected:");
140                 return BLUETOOTH_ERROR_NOT_CONNECTED;
141         }
142
143         _bt_convert_addr_string_to_type(device_address.addr,
144                         connected_address);
145         switch (type) {
146         case RC_PASS_CMD_PLAY:
147                 status = avrcp_ct_play((bt_address_t*)&device_address);
148                 break;
149         case RC_PASS_CMD_PAUSE:
150                 status = avrcp_ct_pause((bt_address_t*)&device_address);
151                 break;
152         case RC_PASS_CMD_STOP:
153                 status = avrcp_ct_stop((bt_address_t*)&device_address);
154                 break;
155         case RC_PASS_CMD_NEXT:
156                 status = avrcp_ct_next_track((bt_address_t*)&device_address);
157                 break;
158         case RC_PASS_CMD_PREVIOUS:
159                 status = avrcp_ct_prev_track((bt_address_t*)&device_address);
160                 break;
161         case RC_PASS_CMD_PRESS_FAST_FORWARD:
162                 status = avrcp_ct_fforward((bt_address_t*)&device_address, PRESS_STATE);
163                 break;
164         case RC_PASS_CMD_RELEASE_FAST_FORWARD:
165                 status = avrcp_ct_fforward((bt_address_t*)&device_address, RELEASE_STATE);
166                 break;
167         case RC_PASS_CMD_PRESS_REWIND:
168                 status = avrcp_ct_rewind((bt_address_t*)&device_address, PRESS_STATE);
169                 break;
170         case RC_PASS_CMD_RELEASE_REWIND:
171                 status = avrcp_ct_rewind((bt_address_t*)&device_address, RELEASE_STATE);
172                 break;
173         case RC_PASS_CMD_VOLUME_UP:
174                 status = avrcp_ct_volume_up((bt_address_t*)&device_address);
175                 break;
176         case RC_PASS_CMD_VOLUME_DOWN:
177                 status = avrcp_ct_volume_down((bt_address_t*)&device_address);
178                 break;
179         default:
180                 break;
181         }
182
183         if (status != OAL_STATUS_SUCCESS) {
184                 BT_ERR("Send pass through command err: [%d]", status);
185                 result = BLUETOOTH_ERROR_INTERNAL;
186         }
187
188         return result;
189 }
190
191 int _bt_avrcp_control_cmd_to_dest(int type, bluetooth_device_address_t *device_address)
192 {
193         char connected_address[BT_ADDRESS_STRING_SIZE + 1];
194         gboolean connected;
195         oal_status_t status = OAL_STATUS_SUCCESS;
196         int result = BLUETOOTH_ERROR_NONE;
197         BT_INFO("+");
198
199         _bt_convert_addr_type_to_string(connected_address, device_address->addr);
200
201         connected = _bt_is_headset_address_type_connected(BT_AVRCP,
202                                                                 (const char *)connected_address);
203
204         if (!connected) {
205                 BT_ERR("Device is not connected:");
206                 return BLUETOOTH_ERROR_NOT_CONNECTED;
207         }
208
209         switch (type) {
210         case RC_PASS_CMD_PLAY:
211                 status = avrcp_ct_play((bt_address_t*)device_address);
212                 break;
213         case RC_PASS_CMD_PAUSE:
214                 status = avrcp_ct_pause((bt_address_t*)device_address);
215                 break;
216         case RC_PASS_CMD_STOP:
217                 status = avrcp_ct_stop((bt_address_t*)device_address);
218                 break;
219         case RC_PASS_CMD_NEXT:
220                 status = avrcp_ct_next_track((bt_address_t*)device_address);
221                 break;
222         case RC_PASS_CMD_PREVIOUS:
223                 status = avrcp_ct_prev_track((bt_address_t*)device_address);
224                 break;
225         case RC_PASS_CMD_PRESS_FAST_FORWARD:
226                 status = avrcp_ct_fforward((bt_address_t*)device_address, PRESS_STATE);
227                 break;
228         case RC_PASS_CMD_RELEASE_FAST_FORWARD:
229                 status = avrcp_ct_fforward((bt_address_t*)device_address, RELEASE_STATE);
230                 break;
231         case RC_PASS_CMD_PRESS_REWIND:
232                 status = avrcp_ct_rewind((bt_address_t*)device_address, PRESS_STATE);
233                 break;
234         case RC_PASS_CMD_RELEASE_REWIND:
235                 status = avrcp_ct_rewind((bt_address_t*)device_address, RELEASE_STATE);
236                 break;
237         case RC_PASS_CMD_VOLUME_UP:
238                 status = avrcp_ct_volume_up((bt_address_t*)device_address);
239                 break;
240         case RC_PASS_CMD_VOLUME_DOWN:
241                 status = avrcp_ct_volume_down((bt_address_t*)device_address);
242                 break;
243         default:
244                 break;
245         }
246
247         if (status != OAL_STATUS_SUCCESS) {
248                 BT_ERR("Send pass through command err: [%d]", status);
249                 result = BLUETOOTH_ERROR_INTERNAL;
250         }
251
252         return result;
253 }
254
255 int _bt_avrcp_control_set_property(int type, unsigned int value)
256 {
257         char connected_address[BT_ADDRESS_STRING_SIZE + 1];
258         gboolean connected;
259         bluetooth_device_address_t device_address;
260         oal_status_t status = OAL_STATUS_SUCCESS;
261         int result = BLUETOOTH_ERROR_NONE;
262         BT_INFO("+");
263         connected = _bt_is_headset_type_connected(BT_AVRCP, connected_address);
264
265         if (connected) {
266                 int oal_type;
267
268                 oal_type = __media_prop_to_oal_type(type);
269                 retv_if(0 > oal_type, BLUETOOTH_ERROR_INVALID_PARAM);
270
271                 _bt_convert_addr_string_to_type(device_address.addr,
272                                 connected_address);
273                 status = avrcp_ct_set_property((bt_address_t*)&device_address,
274                                 oal_type, value);
275                 if (status != OAL_STATUS_SUCCESS) {
276                         BT_ERR("Set peoperty err: [%d]", status);
277                         result = BLUETOOTH_ERROR_INTERNAL;
278                 }
279         } else {
280                 BT_ERR("Device is not connected:");
281                 return BLUETOOTH_ERROR_NOT_CONNECTED;
282         }
283         return result;
284 }
285
286 int _bt_avrcp_transport_set_property(int type, unsigned int value)
287 {
288         char connected_address[BT_ADDRESS_STRING_SIZE + 1];
289         gboolean connected;
290         bluetooth_device_address_t device_address;
291         oal_status_t status = OAL_STATUS_SUCCESS;
292         int result = BLUETOOTH_ERROR_NONE;
293         BT_INFO("+");
294         connected = _bt_is_headset_type_connected(BT_AVRCP, connected_address);
295
296         if (connected) {
297                 _bt_convert_addr_string_to_type(device_address.addr,
298                                 connected_address);
299                 status = avrcp_transport_set_property((bt_address_t*)&device_address,
300                                 type, value);
301                 if (status != OAL_STATUS_SUCCESS) {
302                         BT_ERR("Set peoperty err: [%d]", status);
303                         result = BLUETOOTH_ERROR_INTERNAL;
304                 }
305         } else {
306                 BT_ERR("Device is not connected:");
307                 return BLUETOOTH_ERROR_NOT_CONNECTED;
308         }
309         return result;
310 }
311
312 int _bt_avrcp_control_get_property(int type)
313 {
314         char connected_address[BT_ADDRESS_STRING_SIZE + 1];
315         gboolean connected;
316         bt_address_t device_address;
317         oal_status_t status = OAL_STATUS_SUCCESS;
318         int result = BLUETOOTH_ERROR_NONE;
319         BT_INFO("+");
320         connected = _bt_is_headset_type_connected(BT_AVRCP, connected_address);
321
322         if (connected) {
323                 avrcp_ct_player_property_type_t oal_type;
324
325                 _bt_convert_addr_string_to_type(
326                                 device_address.addr,
327                                 connected_address);
328                 if (type == STATUS) {
329                         status = avrcp_ct_get_play_status(&device_address);
330                         if (status != OAL_STATUS_SUCCESS) {
331                                 BT_ERR("Get play status err: [%d]", status);
332                                 result = BLUETOOTH_ERROR_INTERNAL;
333                         }
334                 } else {
335                         oal_type = __media_prop_to_oal_type(type);
336                         retv_if(0 > oal_type, BLUETOOTH_ERROR_INVALID_PARAM);
337
338                         status = avrcp_ct_get_property(&device_address, oal_type);
339                         if (status != OAL_STATUS_SUCCESS) {
340                                 BT_ERR("Get peoperty err: [%d]", status);
341                                 result = BLUETOOTH_ERROR_INTERNAL;
342                         }
343                 }
344         } else {
345                 BT_ERR("Device is not connected:");
346                 return BLUETOOTH_ERROR_NOT_CONNECTED;
347         }
348         return result;
349 }
350
351 int _bt_avrcp_control_get_track_info(void)
352 {
353         char connected_address[BT_ADDRESS_STRING_SIZE + 1];
354         gboolean connected;
355         bluetooth_device_address_t device_address;
356         oal_status_t status = OAL_STATUS_SUCCESS;
357         int result = BLUETOOTH_ERROR_NONE;
358         BT_INFO("+");
359         connected = _bt_is_headset_type_connected(BT_AVRCP, connected_address);
360
361         if (connected) {
362                 _bt_convert_addr_string_to_type(
363                                 device_address.addr,
364                                 connected_address);
365
366                 status = avrcp_ct_get_media_attribute((bt_address_t*)&device_address);
367                 if (status != OAL_STATUS_SUCCESS) {
368                         BT_ERR("Get track info err: [%d]", status);
369                         result = BLUETOOTH_ERROR_INTERNAL;
370                 }
371         } else {
372                 BT_ERR("Device is not connected:");
373                 return BLUETOOTH_ERROR_NOT_CONNECTED;
374         }
375         return result;
376 }
377
378 static void __bt_reply_avrcp_ct_connection_pending_request(bluetooth_device_address_t *address)
379 {
380         BT_DBG("+");
381         char addr[BT_ADDRESS_STRING_SIZE] = { 0 };
382         int result = BLUETOOTH_ERROR_NONE;
383         bluetooth_device_address_t device_address;
384         GArray *out_param;
385         invocation_info_t *req_info;
386         memcpy(device_address.addr, address->addr, BLUETOOTH_ADDRESS_LENGTH);
387         _bt_convert_addr_type_to_string(addr, address->addr);
388
389         req_info = _bt_get_request_info_data(BT_AVRCP_CONTROL_CONNECT, addr);
390         if (NULL == req_info) {
391                 BT_INFO("AVRCP CT Connect request not found or possibly already replied");
392                 return;
393         } else {
394                 BT_INFO("AVRCP CT Connect request found for [%s]", addr);
395         }
396
397         out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
398         g_array_append_vals(out_param, addr, BT_ADDRESS_STRING_SIZE);
399         _bt_service_method_return(req_info->context,
400                         out_param, result);
401         g_array_free(out_param, TRUE);
402         g_free(req_info->user_data);
403         _bt_free_info_from_invocation_list(req_info);
404 }
405
406 static void __bt_handle_avrcp_target_connected_state(bluetooth_device_address_t *address)
407 {
408         char addr[BT_ADDRESS_STRING_SIZE] = { 0 };
409         GVariant *param;
410         int result = BLUETOOTH_ERROR_NONE;
411         ret_if(NULL == address);
412         BT_INFO("+");
413
414         _bt_convert_addr_type_to_string(addr, address->addr);
415         BT_INFO("Address of connected device [%s]", addr);
416
417         /* Add data from the connected list */
418         _bt_add_headset_to_list(BT_AVRCP, BT_STATE_CONNECTED, addr);
419
420         /* Replay to avrcp cotroller connect */
421         __bt_reply_avrcp_ct_connection_pending_request(address);
422
423         /* Send AVRCP(TARGET Role) connected event to Application */
424         param = g_variant_new("(is)", result, addr);
425         _bt_send_event(BT_AVRCP_CONTROL_EVENT, BLUETOOTH_EVENT_AVRCP_CONNECTED, param);
426
427         BT_INFO("-");
428 }
429
430 static void __bt_reply_avrcp_ct_disconnection_pending_request(bluetooth_device_address_t *address)
431 {
432         char addr[BT_ADDRESS_STRING_SIZE] = { 0 };
433         int result = BLUETOOTH_ERROR_NONE;
434         GArray *out_param;
435         invocation_info_t *req_info;
436
437         BT_DBG("+");
438         _bt_convert_addr_type_to_string(addr, address->addr);
439
440         req_info = _bt_get_request_info_data(BT_AVRCP_CONTROL_DISCONNECT, addr);
441         if (NULL == req_info) {
442                 BT_INFO("AVRCP CT Disconnect request not found or possibly already replied");
443                 return;
444         } else {
445                 BT_INFO("AVRCP CT Disconnect request found for [%s]", addr);
446         }
447
448         out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
449         g_array_append_vals(out_param, addr, BT_ADDRESS_STRING_SIZE);
450         _bt_service_method_return(req_info->context,
451                         out_param, result);
452         g_array_free(out_param, TRUE);
453         g_free(req_info->user_data);
454         _bt_free_info_from_invocation_list(req_info);
455 }
456
457 static void __bt_avrcp_ct_reply_pending_requests(void)
458 {
459         BT_INFO("+");
460         int result = BLUETOOTH_ERROR_INTERNAL;
461         GArray *out_param;
462         invocation_info_t *req_info;
463         GSList *l;
464
465         for (l = _bt_get_invocation_list(); l != NULL;) {
466                 req_info = l->data;
467                 l = g_slist_next(l);
468
469                 if (req_info == NULL)
470                         continue;
471
472                 /* Create out param */
473                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
474
475                 BT_INFO("service_function: [0x%X]", req_info->service_function);
476                 switch (req_info->service_function) {
477                 case BT_AVRCP_GET_TRACK_INFO:
478                 case BT_AVRCP_CONTROL_GET_PROPERTY: {
479                         _bt_service_method_return(req_info->context, out_param, result);
480                         break;
481                 }
482                 default:
483                         break;
484                 }
485                 _bt_free_info_from_invocation_list(req_info);
486                 g_array_free(out_param, TRUE);
487         }
488         BT_INFO("-");
489 }
490
491 static void __bt_handle_avrcp_target_disconnected_state(bluetooth_device_address_t *address)
492 {
493         char addr[BT_ADDRESS_STRING_SIZE] = { 0 };
494         GVariant *param;
495         int result = BLUETOOTH_ERROR_NONE;
496         ret_if(NULL == address);
497         BT_INFO("+");
498
499         _bt_convert_addr_type_to_string(addr, address->addr);
500         BT_INFO("Address of disconnected device [%s]", addr);
501
502         /* Remove data from the connected list */
503         _bt_remove_headset_from_list(BT_AVRCP, addr);
504
505         /* Reply to avrcp cotroller connect */
506         __bt_reply_avrcp_ct_disconnection_pending_request(address);
507
508         /* Reply AVRCP CT pending requests */
509         __bt_avrcp_ct_reply_pending_requests();
510
511         /* Send AVRCP(TARGET Role) disconnected event to Application */
512         param = g_variant_new("(is)", result, addr);
513         _bt_send_event(BT_AVRCP_CONTROL_EVENT, BLUETOOTH_EVENT_AVRCP_DISCONNECTED, param);
514
515         BT_INFO("-");
516 }
517
518 static int __bt_oal_to_bt_event(int oal_event)
519 {
520         int ret = 0;
521
522         switch (oal_event) {
523         case OAL_EVENT_AVRCP_CT_EQUALIZER_STATUS:
524                 ret = BLUETOOTH_EVENT_AVRCP_CONTROL_EQUALIZER_STATUS;
525                 break;
526         case OAL_EVENT_AVRCP_CT_REPEAT_STATUS:
527                 ret = BLUETOOTH_EVENT_AVRCP_CONTROL_REPEAT_STATUS;
528                 break;
529         case OAL_EVENT_AVRCP_CT_SHUFFLE_STATUS:
530                 ret = BLUETOOTH_EVENT_AVRCP_CONTROL_SHUFFLE_STATUS;
531                 break;
532         case OAL_EVENT_AVRCP_CT_SCAN_STATUS:
533                 ret = BLUETOOTH_EVENT_AVRCP_CONTROL_SCAN_STATUS;
534                 break;
535         case OAL_EVENT_AVRCP_CT_NOTIF_PLAY_POS_CHANGED:
536                 ret = BLUETOOTH_EVENT_AVRCP_SONG_POSITION_STATUS;
537                 break;
538         case OAL_EVENT_AVRCP_CT_NOTIF_PLAY_STATUS_CHANGED:
539                 ret = BLUETOOTH_EVENT_AVRCP_PLAY_STATUS_CHANGED;
540                 break;
541         default:
542                 break;
543         }
544         return ret;
545 }
546
547 static void __bt_handle_avrcp_target_player_property(unsigned int property_value, int oal_event)
548 {
549         GVariant *param;
550         BT_INFO("+");
551         /* Send AVRCP Target player property event to Application */
552         param = g_variant_new("(u)", property_value);
553         _bt_send_event(BT_AVRCP_CONTROL_EVENT,
554                         __bt_oal_to_bt_event(oal_event), param);
555 }
556
557 static void __bt_handle_avrcp_track_info_changed(event_avrcp_ct_media_info_t* metadata)
558 {
559         GVariant *param;
560         unsigned int total_track = 0;
561         unsigned int track_number = 0;
562         unsigned int playing_time = 0;
563         GVariant *title;
564         GVariant *artist;
565         GVariant *album;
566         GVariant *genre;
567
568         BT_INFO("+");
569
570         total_track = (unsigned int)(metadata->total_track);
571         track_number = (unsigned int)(metadata->track_number);
572         playing_time = (unsigned int)(metadata->playing_time);
573
574         title = g_variant_new_from_data((const GVariantType *)"ay",
575                         metadata->title_info, MEDIA_ATTIRBUTE_STRING_LENGTH,
576                         TRUE, NULL, NULL);
577         artist = g_variant_new_from_data((const GVariantType *)"ay",
578                         metadata->artist_info, MEDIA_ATTIRBUTE_STRING_LENGTH,
579                         TRUE, NULL, NULL);
580         album = g_variant_new_from_data((const GVariantType *)"ay",
581                         metadata->album_info, MEDIA_ATTIRBUTE_STRING_LENGTH,
582                         TRUE, NULL, NULL);
583         genre = g_variant_new_from_data((const GVariantType *)"ay",
584                         metadata->genre_info, MEDIA_ATTIRBUTE_STRING_LENGTH,
585                         TRUE, NULL, NULL);
586
587         /* Send AVRCP Target player track info changed event to application*/
588         param = g_variant_new("(@ay@ay@ay@ayuuu)",
589                         title, artist, album, genre,
590                         total_track, track_number, playing_time);
591
592         BT_INFO("Total_track: %u, track_number: %u, playing_time: %u",
593                         total_track, track_number, playing_time);
594         _bt_send_event(BT_AVRCP_CONTROL_EVENT,
595                         BLUETOOTH_EVENT_AVRCP_TRACK_CHANGED, param);
596 }
597
598 static invocation_info_t* __bt_get_request_info(int service_function)
599 {
600         GSList *l;
601         invocation_info_t *req_info = NULL;
602
603         BT_DBG("+");
604         /* Get method invocation context */
605         for (l = _bt_get_invocation_list(); l != NULL; l = g_slist_next(l)) {
606                 req_info = l->data;
607                 if (req_info == NULL || req_info->service_function != service_function)
608                         continue;
609                 return req_info;
610         }
611         return NULL;
612 }
613
614 static void __bt_handle_avrcp_track_info(event_avrcp_ct_media_info_t* metadata)
615 {
616         media_metadata_t meta_data;
617         invocation_info_t *req_info = NULL;
618         GArray *out_param = NULL;
619         int result = BLUETOOTH_ERROR_NONE;
620
621         req_info = __bt_get_request_info(BT_AVRCP_GET_TRACK_INFO);
622         ret_if(NULL == req_info);
623
624         memset(&meta_data, 0x00, sizeof(media_metadata_t));
625
626         memcpy(&meta_data.title, &metadata->title_info,
627                         strlen((char *)metadata->title_info));
628         meta_data.title[strlen((char *)metadata->title_info)] = '\0';
629
630         memcpy(&meta_data.artist, &metadata->artist_info,
631                         strlen((char *)metadata->artist_info));
632         meta_data.artist[strlen((char *)metadata->artist_info)] = '\0';
633
634         memcpy(&meta_data.album, &metadata->album_info,
635                         strlen((char *)metadata->album_info));
636         meta_data.album[strlen((char *)metadata->album_info)] = '\0';
637
638         memcpy(&meta_data.genre, &metadata->genre_info,
639                         strlen((char *)metadata->genre_info));
640         meta_data.genre[strlen((char *)metadata->genre_info)] = '\0';
641
642         meta_data.total_tracks = metadata->total_track;
643         meta_data.number = metadata->track_number;
644         meta_data.duration = metadata->playing_time;
645
646         out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
647         g_array_append_vals(out_param, &meta_data, sizeof(media_metadata_t));
648
649         _bt_service_method_return(req_info->context, out_param, result);
650         g_array_free(out_param, TRUE);
651         _bt_free_info_from_invocation_list(req_info);
652 }
653
654 static void __bt_handle_avrcp_pass_cmd_res(avrcp_ct_pass_cmd_t *pass_cmd)
655 {
656         BT_INFO(" Send Command Response [%d]", pass_cmd->key_code);
657 }
658
659 static void __bt_handle_avrcp_player_setting_res(avrcp_ct_playersetting_t *player_setting_res)
660 {
661         BT_INFO("Set Property Response [%d]", player_setting_res->accepted);
662 }
663
664 static void __bt_handle_avrcp_get_property_res_event(avrcp_ct_player_property_type_t oal_type, int value)
665 {
666         invocation_info_t *req_info = NULL;
667         GArray *out_param = NULL;
668         int result = BLUETOOTH_ERROR_NONE;
669         int prop_type;
670         int type;
671         GSList *l;
672
673         BT_DBG("+");
674
675         prop_type = __oal_type_to_media_prop(oal_type);
676         ret_if(0 > prop_type);
677
678         out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
679         g_array_append_vals(out_param, &value, sizeof(value));
680
681         /* Find and reply to all get requests for prop_type */
682         for (l = _bt_get_invocation_list(); l != NULL;) {
683                 req_info = l->data;
684                 l = g_slist_next(l);
685
686                 if (req_info == NULL)
687                         continue;
688
689                 type = *((int *)req_info->user_data);
690                 if (req_info->service_function != BT_AVRCP_CONTROL_GET_PROPERTY
691                                 || type != prop_type)
692                         continue;
693
694                 BT_INFO("Request found");
695                 _bt_service_method_return(req_info->context, out_param, result);
696                 g_free(req_info->user_data);
697                 _bt_free_info_from_invocation_list(req_info);
698         }
699
700         g_array_free(out_param, TRUE);
701         BT_DBG("-");
702 }
703
704 void _bt_avrcp_ctrl_event_handler(int oal_event, gpointer event_data)
705 {
706         BT_INFO("+");
707         bluetooth_device_address_t* bd_addr;
708
709         switch (oal_event) {
710         case OAL_EVENT_AVRCP_CT_CONNECTED: {
711                 BT_INFO("AVRCP Controller Profile connected..");
712                 bd_addr = (bluetooth_device_address_t*)event_data;
713                 __bt_handle_avrcp_target_connected_state(bd_addr);
714                 break;
715         }
716         case OAL_EVENT_AVRCP_CT_DISCONNECTED: {
717                 BT_INFO("AVRCP Controller Profile dissconnected..");
718                 bd_addr = (bluetooth_device_address_t*)event_data;
719                 __bt_handle_avrcp_target_disconnected_state(bd_addr);
720                 break;
721         }
722         case OAL_EVENT_AVRCP_CT_EQUALIZER_STATUS:
723         case OAL_EVENT_AVRCP_CT_REPEAT_STATUS:
724         case OAL_EVENT_AVRCP_CT_SHUFFLE_STATUS:
725         case OAL_EVENT_AVRCP_CT_SCAN_STATUS: {
726                 avrcp_ct_property_value_t* property_val;
727                 property_val = (avrcp_ct_property_value_t*)event_data;
728                 __bt_handle_avrcp_target_player_property(property_val->value, oal_event);
729                 break;
730         }
731         case OAL_EVENT_AVRCP_CT_NOTIF_PLAY_STATUS_CHANGED:{
732                 event_notif_avrcp_ct_notif_info_t* play_status_val;
733                 play_status_val = (event_notif_avrcp_ct_notif_info_t*)event_data;
734                 __bt_handle_avrcp_target_player_property(play_status_val->play_status, oal_event);
735                 break;
736         }
737         case OAL_EVENT_AVRCP_CT_NOTIF_PLAY_POS_CHANGED: {
738                 event_notif_avrcp_ct_notif_info_t* play_position;
739                 play_position = (event_notif_avrcp_ct_notif_info_t*)event_data;
740                 __bt_handle_avrcp_target_player_property(play_position->song_pos, oal_event);
741                 break;
742         }
743         case OAL_EVENT_AVRCP_CT_NOTIF_TRACK_CHANGE: {
744                 BT_INFO("AVRCP Controller Track Changed event..");
745                 event_avrcp_ct_media_info_t* metadata = event_data;
746
747                 __bt_handle_avrcp_track_info_changed(metadata);
748                 break;
749         }
750         case OAL_EVENT_AVRCP_CT_MEDIA_INFO: {
751                 BT_INFO("AVRCP Controller Track Info event..");
752                 event_avrcp_ct_media_info_t* metadata;
753
754                 metadata = (event_avrcp_ct_media_info_t*)event_data;
755                 __bt_handle_avrcp_track_info(metadata);
756                 break;
757         }
758         case OAL_EVENT_AVRCP_CT_GET_PROPERTY_RES: {
759                 BT_INFO("AVRCP Controller Get Property response event..");
760                 avrcp_ct_property_value_t *property = (avrcp_ct_property_value_t *)event_data;
761                 __bt_handle_avrcp_get_property_res_event(property->type, property->value);
762                 break;
763         }
764         case OAL_EVENT_AVRCP_CT_PLAY_STATUS: {
765                 BT_INFO("AVRCP Controller Get Play status response event..");
766                 event_avrcp_ct_play_status_t *play_status_info = (event_avrcp_ct_play_status_t *)event_data;
767                 __bt_handle_avrcp_get_property_res_event(OAL_PLAY_STATUS, play_status_info->play_status);
768                 break;
769         }
770         case OAL_EVENT_AVRCP_CT_PASS_CMD_RES: {
771                 BT_INFO("AVRCP Controller Pass Command Res");
772                 avrcp_ct_pass_cmd_t *pass_cmd;
773
774                 pass_cmd = (avrcp_ct_pass_cmd_t *)event_data;
775                 __bt_handle_avrcp_pass_cmd_res(pass_cmd);
776                 break;
777         }
778         case OAL_EVENT_AVRCP_CT_PLAYER_SETTING_RES: {
779                 BT_INFO("AVRCP Player setting response");
780                 avrcp_ct_playersetting_t *player_setting_res;
781
782                 player_setting_res = (avrcp_ct_playersetting_t *)event_data;
783                 __bt_handle_avrcp_player_setting_res(player_setting_res);
784                 break;
785         }
786         default:
787                 BT_INFO("Invalid Event = %d", oal_event);
788                 break;
789         }
790
791         BT_INFO("-");
792 }